外观
LAMP is short for Linux, Apache, MySQL, PHP. Of course, you already have a Linux OS (CentOS), so this article mainly introduces installation of Apache, MySQL and PHP. I need this environment because I use WordPress program which should run on basis of this environment.
# update software
yum update
# install Apache
yum install httpd
# start Apache
systemctl start httpd.service
# set apache to start on server boot
systemctl enable httpd.serviceTo verify the installation of Apache, open "http://your server's IP address", and if Apache was successfully installed, you should see an Apache Text Page.
# install MariaDB, which is a community-developed fork of MySQL:
yum install mariadb-server mariadb
# start the service
systemctl start mariadb
# set MySQL to start on server boot
systemctl enable mariadb.service
# run this command to finish setting up the installation
mysql_secure_installationYou will be asked for the root password, because you didn't set it earlier. Press Enter to set a password now. Set root password and confirm the new password (this password is the password for your MySQL root account). You will then be asked a series of questions as part of the security configuration. It's a best practice to respond "Y" to these system prompts.
# install PHP
yum install php php-mysql
# restart Apache
systemctl restart httpd.serviceInstall PHP modules If your applications requires any PHP modules, you can install them now.
# view available PHP modules
yum search php-
# to view the description of a specific package, use the following command:
yum info "the name of the package you want to use"(quotes not required)
# install the package you desire
yum install "the name of the package you desire"(quotes not required)Test PHP processing on Apache Firstly, create a new PHP file under the /var/www/html directory:
vi /var/www/html/info.phpThen, type in the following code to info.php:
<?php
phpinfo();
?>Then, save and close the file:
:wq!Lastly, open the url in your browser: "http://your server's IP address/info.php". You should see a page displaying information such as the PHP version, extensions, build date and etc., if PHP is successfully installed.