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 {} \;