实战任:通过LAMP平台搭建一个 WordPress网站系统,后台使用MySQL数据库,并且使用phpMyAdmin管理数据库。
[root@Linux tool]# wget https://github.com/hmsjy2017/Download-WordPress/blob/master/wordpress-4.9.4-zh_CN.tar.gz
[root@Linux tool]# cp wordpress-4.9.4-zh_CN.tar.gz /usr/local/apache2/htdocs/
[root@Linux htdocs]# tar zxvf wordpress-4.9.4-zh_CN.tar.gz
[root@Linux htdocs]# cd wordpress
[root@Linux htdocs]# ll
总用量 19628
-rw-r--r--. 1 root root 62 2月 4 11:46 index.html
-rw-r--r--. 1 root root 20 2月 4 14:23 index.php
-rw-r--r--. 1 root root 249 2月 4 10:35 mysqli.php
-rw-r--r--. 1 root root 249 2月 4 10:35 pdomysql.php
-rw-r--r--. 1 root root 20 2月 4 14:24 phpinfot.php
drwxr-xr-x. 12 root root 4096 2月 5 10:04 phpmyadmin
-rw-r--r--. 1 root root 11496288 2月 5 10:01 phpMyAdmin-4.7.9-all-languages.zip
drwxr-xr-x. 5 nobody 65534 4096 2月 6 2018 wordpress
-rw-r--r--. 1 root root 8565525 2月 5 10:36 wordpress-4.9.4.tar.gz
[root@Linux htdocs]# chown -R www:www wordpress
[root@Linux htdocs]# ll
总用量 19628
-rw-r--r--. 1 root root 62 2月 4 11:46 index.html
-rw-r--r--. 1 root root 20 2月 4 14:23 index.php
-rw-r--r--. 1 root root 249 2月 4 10:35 mysqli.php
-rw-r--r--. 1 root root 249 2月 4 10:35 pdomysql.php
-rw-r--r--. 1 root root 20 2月 4 14:24 phpinfot.php
drwxr-xr-x. 12 root root 4096 2月 5 10:04 phpmyadmin
-rw-r--r--. 1 root root 11496288 2月 5 10:01 phpMyAdmin-4.7.9-all-languages.zip
drwxr-xr-x. 5 www www 4096 2月 6 2018 wordpress
-rw-r--r--. 1 root root 9082696 2月 5 10:52 wordpress-4.9.4-zh_CN.tar.gz
User daemon
Group daemon
User www
Group www
[root@Linux htdocs]# mysql -uroot -p
mysql> create database cmsdb;
Query OK, 1 row affected (0.00 sec)
mysql> grant all on cmsdb.* to 'wpuser' identified by 'wppassword';
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
http://172.16.100.60:8080/wordpress/
操作技巧:数据库主机: localhost 修改成127.0.0.1