In Linux, Apache + MySQL is automatically enabled after the source code is installed.

Source: Internet
Author: User

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.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.