Saved Bookmarks
| 1. |
How To Ensure Web Server Is Getting Started After Server Reboot? |
|
Answer» If running Linux, then you can put a script in /etc/init.d/ and enable to start on boot using chkconfig command Let’s say you create a FILE CALLED apache and put under /etc/init.d chkconfig --ADD apache chkconfig apache on if on Windows, then ensure startup TYPE is selected “AUTOMATIC” If running Linux, then you can put a script in /etc/init.d/ and enable to start on boot using chkconfig command Let’s say you create a file called apache and put under /etc/init.d chkconfig --add apache chkconfig apache on if on Windows, then ensure startup type is selected “Automatic” |
|