1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | $ srvctl config database -d orcl Database unique name : orcl Database name : orcl Oracle home: /u01/app/oracle/product/db_19 Oracle user : oracle Spfile: +DATA/ORCL/PARAMETERFILE/spfile.270.1010270597 Password file: Domain: Start options: open Stop options: immediate Database role: PRIMARY Management policy: AUTOMATIC Disk Groups: DATA,FRA Services: OSDBA group : OSOPER group : Database instance: orcl |
1 2 3 4 5 | # JRE Executable and Class File Variables JRE=${JREDIR}/bin/java ..skip.. # Run srvctl ${JRE} ${JRE_OPTIONS} -DORACLE_HOME=${ORACLE_HOME} -classpath ${CLASSPATH} ${SRVM_PROPERTY_DEFS} oracle.ops.opsctl.OPSCTLDriver "$@" |
CLASSPATH=${NETCFGJAR}:${LDAPJAR}:${JREJAR}:${SRVMJAR}:${SRVMHASJAR}:${SRVMASMJAR}:\ ${EONSJAR}:${SRVCTLJAR}:${GNSJAR}:${ANTLRJAR}:${CLSCEJAR}:${CHACONFIGJAR}:${JDBCJAR}:\ ${MAILJAR}:${ACTIVATIONJAR}:${JWCCREDJAR}Those jar-variables are set in the script so it's trivial to find out all classes that are used there.
I used to use JAD to decompile them but it appears to be not in vogue and not developed anymore.
Thankfully, there are a bunch of free sites that can be used as a replacement. I personally have used this one.
It is usually advised to identify the entry jar first by looking into the jar files so as to figure out where exactly OPSCTLDriver is coming from.
Not surprisingly, it is coming from ${SRVCTLJAR} which is set to ${ORACLE_HOME}/srvm/jlib/srvctl.jar.
OPSCTLDriver calls oracle.ops.opsctl.ConfigAction that does the following:
1 2 3 4 5 6 7 | for ( Database db : dblist) { ..skip.. if ((isUnixSystem) && (!isMgmtDB)) { groups = db.getGroups(); dbaGrp = groups.get( "OSDBA" ) == null ? "" : (String)groups.get( "OSDBA" ); operGrp = groups.get( "OSOPER" ) == null ? "" : (String)groups.get( "OSOPER" ); } |
That's just an interface from srvm.jar:
1 2 3 | public abstract interface Database extends SoftwareModule { |
Here are how those groups are determined:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | String oracleBin = getOracleHome() + File.separator + "bin" ; Trace. out ( "Creating OSDBAGRPUtil with path: " + oracleBin); OSDBAGRPUtil grpUtil = new OSDBAGRPUtil(oracleBin); Map<String, String> groups = grpUtil.getAdminGroups(version()); ResourcePermissionsImpl perm = (ResourcePermissionsImpl)m_crsResource.getPermissions(); String acl = perm.getAclString(); Map<String, List<string>> aclMap = splitACL(acl); List<String> acl_groups = (List)aclMap.get(ResourceType.ACL. GROUP .toString()); String dba = (String)groups.get( "SYSDBA" ); String oper = (String)groups.get( "SYSOPER" ); if ((!dba.isEmpty()) && (acl_groups. contains (dba.toLowerCase()))) { groupMap.put( "OSDBA" , dba); } if ((!oper.isEmpty()) && (acl_groups. contains (oper.toLowerCase()))) { groupMap.put( "OSOPER" , oper); } return groupMap; |
In my case, those commands returned dba and oper for OSDBA and OSOPER respectively:
1 2 3 4 | $ osdbagrp -d dba $ osdbagrp -o oper |
So that is something related to ACLs which is coming from "ResourcePermissionsImpl perm = (ResourcePermissionsImpl)m_crsResource.getPermissions();".
Let's use the crsctl getperm command passing the database resource to it:
1 2 3 | $ crsctl getperm resource ora.orcl.db Name : ora.orcl.db owner:oracle:rwx,pgrp:asmdba:r-x,other::r --,group:oinstall:r-x,user:oracle:rwx |
1 2 3 | $ crsctl setperm resource ora.orcl.db -u group :dba:r-x CRS-4995: The command 'Setperm resource' is invalid in crsctl. Use srvctl for this command. $ crsctl setperm resource ora.orcl.db -u group :dba:r-x -unsupported |
Once it was done, the OSDBA group was properly coming back:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | $ srvctl config database -d orcl Database unique name : orcl Database name : orcl Oracle home: /u01/app/oracle/product/db_19 Oracle user : oracle Spfile: +DATA/ORCL/PARAMETERFILE/spfile.270.1010270597 Password file: Domain: Start options: open Stop options: immediate Database role: PRIMARY Management policy: AUTOMATIC Disk Groups: DATA,FRA Services: OSDBA group : dba OSOPER group : Database instance: orcl |