I want to set Oracle weblogic server 10.3.6 to start automatically when my Ubuntu machine starts. At this moment, I start it from this sh file manually
Oracle > MiddleWare > user_domains > base_domain > bin > startWebLogic.sh
I want to set Oracle weblogic server 10.3.6 to start automatically when my Ubuntu machine starts. At this moment, I start it from this sh file manually
Oracle > MiddleWare > user_domains > base_domain > bin > startWebLogic.sh
There are many ways to start a process like this... you can use cron
or you can use a service in /etc/init.d
... not sure which one you are looking for.
For a super simple /etc/init.d
example:
/etc/init.d/weblogic_start
su – user -c "/path/to/script/startWebLogic.sh &"
This will start Weblogic every time the machine boots. See other questions like: Start JBoss 7 as a service on Linux