Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Build lamp environment on CentOS 7

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Install httpd, php, MariaDB, ServerIP 192.168.199.157 on CentOS 7

1. Install the relevant packages first

~]# yum install -y httpd php php-mysql mariadb-server

2. Start httpd and mariadb

~]# systemctl start httpd.service mariadb.service

3. Check whether ports 80 and 3306 are listening:

4. Test whether PHP works properly.

(1) Edit the/etc/httpd/conf/httpd.conf file, fill in index.php after DirectoryIndex, and define the default homepage as index.php.

(2) Check the configuration file for syntax errors:

~]#httpd -t

(3) Overload httpd configuration file

~]# systemctl reload httpd.service

(4) Make the default home page/var/www/html/index.php and write the following content.

Welcome

(5) Open browser test

5. Test PHP connection with MariaDB

(1) Create database testdb in MariaDB, create user testuser, and authorize the user:

~]# mysql

MariaDB[(none)]>CREATEDATABASE testdb;

MariaDB[(none)]>CREATEUSER 'testuser'@'127.0.0.1' IDENTIFIED BY 'testpasswd';

MariaDB[(none)]>GRANTALL ON testdb.* TO 'testuser'@'127.0.0.1';

MariaDB[(none)]>FLUSHPRIVILEGES;

(2) Edit the default homepage file/var/www/html/index.php and write the following script for testing:

(3) Test on browser, if OK appears, it means successful connection to database

6. Renaming/etc/httpd/conf.d/welcome.conf and creating two FQDN-based virtual hosts www1.magedu.com and www2.magedu.com, and creating a directory of data related data.

~]# mv/etc/httpd/conf.d/welcome.conf{,.bak}

~]# vim /etc/httpd/conf.d/www1.conf

ServerNamewww1.magedu.com

DocumentRoot/data/www1

CustomLoglogs/www1-access_log combined

~]# vim /etc/httpd/conf.d/www2.conf

ServerNamewww2.magedu.com

DocumentRoot/data/www2

CustomLoglogs/www1-access_log combined

~]# mkdir -pv /data/www{1,2}

7. Set up webhosting www1.magedu.com to provide wordpress.

(1)Download wordpress and extract it, copy all files in the extracted directory to/data/www1 directory.

~]# unzipwordpress_4.3.1_zh_CN.zip

~]# mv -rwordpress/* /data/www1

(2)Change the name of wp-config-sample.php in/data/www1/to wp-config.php.

~]# mv/data/www1/wp-config-sample.php /data/www1/wp-config.php

(3)Edit wp-config.php, modify database name, database username, database password, host IP and other information.

(4)Test wordpress, set the site name and login account, password, email and other information can be used.

8. Set up webhosting www2.magedu.com to provide phpMyAdmin.

(1) Install php-mbstring and import it into the/etc/php.ini file

~]# yum install php-mbstring

~]# echo "extension=mbstring.so" >>/etc/php.ini

(2) Download and extract phpMyAdmin, copy the files in phpMyAdmin directory to/data/www2 directory.

~]# cp -rphpMyAdmin-4.4.15.7-all-languages/* /data/www2/

(3) Change config.sample.inc.php to config.inc.php

~]# mvconfig.sample.inc.php config.inc.php

Edit the config.inc.php file to fill the blowfish_secret field with random codes generated by openssl.

(5) Edit the config.inc.php file and change the IP address of the ['Servers'][$i]['host'] field to 127.0.0.1.

(6) Test whether www2.magedu.com can be opened in the browser.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report