Because of the differences in Linux versions: the locations and names of automatically started shell scripts are also different. in linux versions such as RedHat and red flag, the startup scripts are placed in/etc/rc. in the d directory, the name is rc. local. In SUSE, the linux boot script is stored in the/etc/init. d directory named boot. local.
For example, apache and mysql are automatically started.
In linux such as Hongqi and radhat
# Cd/etc/rc. d
# Vi rc. local
Add rc. local:
/Usr/local/apache/bin/apachectl start
/Usr/local/mysql/bin/mysqld_safe -- user = mysql &
In suse
# Cd/etc/init. d
# Vi boot. local
Add rc. local:
/Usr/local/apache/bin/apachectl start
/Usr/local/mysql/bin/mysqld_safe -- user = mysql &
Method 2:
In Linux, I usually use the source code compilation method to install Apache. www.bkjia.com has two ways to enable Apache to automatically start when the system starts.
1. Add the command to start apache in/etc/rc. d/rc. local, for example,/usr/local/httpd/bin/apachectl start.
2. Register apache as a system service
First, copy the apachectl command to the/etc/rc. d/init. d directory and change it to httpd.
Open the httpd file in the editor and go to the first line #! Add the following two lines of text under/bin/sh:
# Chkconfig: 35 70 30
# Description: Apache
Register the service
Chkconfig -- add httpd
Everything is okay. Start the service.
Service httpd start
The first three numbers in the second row indicate that apache is started under runtime Level 3 and 5, and the second and third indicate the priority configuration of startup and stop, which is irrelevant.