-1

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

1 Answers1

0

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:

  • Create /etc/init.d/weblogic_start
    • Add the following: 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

Community
  • 1
  • 1
Display Name is missing
  • 6,197
  • 3
  • 34
  • 46