Tuesday 25 June 2013

What are the Default Directory Permissions in Weblogic 11G Enviroment

Most of the Development environment day to day issues with Directory Permissions?
Below are the default permissions suggested by Oracle:
  • Directories Permissions in default Weblogic enviroment:
find $DOMAIN_HOME -type d -exec chmod 750 {} \;
  • Files Permissions in default Weblogic enviroment:
find $DOMAIN_HOME -type f -exec chmod 640 {} \;
  • .sh Files permissions in default Weblogic enviroment:
          find $DOMAIN_HOME -name  *.sh -exec chmod 750 {} \;

 

 


 

What are the Default Directory Permissions in Weblogic 11G Enviroment

Most of the Development environment day to day issues with Directory Permissions? Below are the default permissions suggested by Oracl...