10g R2 standart yada RAc üzerine install etmemiz mümkündür. İki account yaratacaz bunlar Database Vault Owner ve Database Vault Account Manager. database vault owner mevburi install ederken belirtiyoruz. Account manager ise opsiyonel.
Dv_owner rolunde olan database vault owner accountudur.DV_ACCTMGR ise account manager userımızdır.
1gb memory 500mb bos alan ise gerekli minumum şartlar diyebiliriz.operating sistem sartları ise 10g R2 ile aynıdır.enterprise edition Oracle Database 10g release 2 (10.2.0.4) gerekli diyebiliriz. Ayrıca instance parametrelerinden
REMOTE_LOGIN_PASSWORDFILE
mutlaka EXCLUSIVE
or SHARED olmamlıdır.
enterprise manager,database,isqlplus,listener stop olmalıdır.
:/runInstaler ile instalasyona basladığımızda bize dv_owner userını soracaktır.installasyonun sonunda DVCA ile bitiriyoruz.
Database vault bağlanmak içinBöylece database vault yönetim ekranına ulaşmış oluruz.
http://host_name:(port genelde 1158 olur)/dva
Daha sonra
-
In the Administration sayfasında Database Vault Feature Administration, seçelim Realms.
-
In the Realms sayfasında, select Oracle Data Dictionary from the list and then click Edit.
-
In the Edit Realm: Oracle Data Dictionary page, altında Realm Authorizations, click Create.
-
In the Create Realm Authorization Page, from the Grantee list, select SYSTEM [USER].
-
For Authorization Type, select Owner.
-
Çıkalım Authorization Rule Set at şeçmeden
Click OK.
In the Edit Realm: Oracle Data Dictionary page,
SYSTEM
should be listed as an owner under the Realm Authorizations.-
Click OK to return to the Realms page.
-
To return to the Administration page, click the Database Instance instance_name link over Realms.
sistem accountu ile bağlanıp Hr schemasına ulaşalım
sqlplus systemSQL> Enter password: password
SQL> SELECT FIRST_NAME, LAST_NAME, SALARY FROM HR.EMPLOYEES WHERE ROWNUM < 10;
FIRST_NAME LAST_NAME SALARY
-------------------- ------------------------- ----------
Donald OConnell 2600
Douglas Grant 2600
Jennifer Whalen 4400
Michael Hartstein 13000
Pat Fay 6000
Susan Mavris 6500
Hermann Baer 10000
Shelley Higgins 12000
William Gietz 8300
9 rows selected.
şimdi realm create edelim
Realms schemayı schema objelerini korumak için tasarlanmıştır.
-
In the Realms page of Oracle Database Vault Administrator, click Create.
-
In the Create Realm page, General, enter
HR Realm
after Name. -
status kısmında , Enabled is selected seçili olsun
-
Audit Options, Audit On Failure is seçelim
-
OK.
Şimsi Hr. employees tablosunun güvenliğini sağlayalım
In the Realms sayfasında, select HR Realm from the list and then click Edit.
-
In the Edit Realm: HR Realm page, scroll to Realm Secured Objects and then click Create.
-
In the Create Realm Secured Object sayfasında aşağıdaki ayarlar gelir.
-
Object Owner: Select
HR
from the list. -
Object Type: Select
%
. -
Object Name:
EMPLOYEES
.
-
-
Click OK.
-
In the Edit Realm: HR Realm page, click OK.
Şimdide authorized işlemlerini gerçekleştirelim.
Yeni bir user yaratalım
SQL> CONNECT dbvacctmgr
Enter password: password
SQL> CREATE USER zekeriya IDENTIFIED BY password;Connect as
SYSTEM
privilege, and then grantzekeriya
aşağıdaki hakları verelim.SQL> CONNECT SYSTEM
Enter password: password
SQL> GRANT CREATE SESSION, SELECT ANY TABLE TO zekeriya;
- In the Realms page of Database Vault Administrator, select the HR Realm in the list of realms, and then click Edit.
-
In the Edit Realm: HR Realm page, scroll down to Realm Authorizations and then click Create.
-
In the Create Realm Authorization page, under Grantee, select zekeriya[USER] from the list.
Under Authorization Type, select Owner.
Owner olarak şeçmek
artık zekeriya userınıda bu yetkileri hr.employees tablosundaki yetkili olması ve görmesi demektir.
-
Under Authorization Rule Set, select
, because rule sets are not needed to govern this realm. -
Click OK.
System userı ile bağlanıyoruz ve select etmeye kaltığımızda görmezken
sqlplus system
Enter password: password
SQL> SELECT FIRST_NAME, LAST_NAME, SALARY FROM HR.EMPLOYEES WHERE ROWNUM <10;
Error at line 1:
ORA-01031: insufficient privileges
SQL> CONNECT zekeriya
Enter password: password
SQL> SELECT FIRST_NAME, LAST_NAME, SALARY FROM HR.EMPLOYEES WHERE ROWNUM <10;
FIRST_NAME LAST_NAME SALARY
-------------------- ------------------------- ----------
Donald OConnell 2600
Douglas Grant 2600
Jennifer Whalen 4400
Michael Hartstein 13000
Pat Fay 6000
Susan Mavris 6500
Hermann Baer 10000
Shelley Higgins 12000
William Gietz 8300
9 rows selected.
Ve tabiki bütün bu işlerin raporunu almakta mümkündür
Yetkili DV userı bağlanıp
- In the Database Vault Reports page, scroll down to Database Vault Auditing Reports and select Realm Audit.
-
Click Run Report.
Demesi kimlerin başarılı kimlerin başarısız olduklarını listeleyecektir.
Hiç yorum yok:
Yorum Gönder