centos7.3搭建lamp實現使用wordpress

楊老闆發表於2017-09-28

“`
環境說明:

在同一臺主機上實現LAMP(Linux + Apache + MariaDB + PHP)
CentOS 7.3、Apache 2.4.6、MariaDB 5.5.52、PHP 5.4.16
1.安裝LAMP

採用yum方式進行安裝httpd、MariaDB、php、php-mysql,php-mysql用來進行php和MariaDB資料庫的連線。

[root@CentOS7 ~]# yum install httpd mariadb-server php php-mysql -y
2.建立新的虛擬主機

(1)新增虛擬主機配置檔案

[root@CentOS7 ~]# vim /etc/httpd/conf.d/vhost.conf

[root@CentOS7 ~]# mkdir /var/www/wordpress
3.在虛擬主機主目錄/var/www/wordpress下新建index.php檔案

[root@CentOS7 ~]# vim /var/www/wordpress/index.php

4.檢查語法並啟動httpd服務

(1)檢查語法

[root@CentOS7 ~]# httpd -t
Syntax OK
(2)啟動httpd服務

[root@CentOS7 ~]# systemctl start httpd.service
5.測試

在瀏覽器中輸入www.mywordpress.com

可以看到PHP預設頁面已經成功顯示,說明測試成功

6.下載wordpress壓縮包,wordpress-4.7.4-zh_CN.tar.gz

(1)解壓縮

[root@CentOS7 ~]# tar -xf wordpress-4.7.4-zh_CN.tar.gz
(2)把解壓縮後得到的檔案(wordpress)複製到DocumentRoot(/var/www/wordpress/)下

[root@CentOS7 ~]# cp -a wordpress /var/www/wordpress/
7.啟動MariaDB服務

[root@CentOS7 ~]# systemctl start mariadb
8.通過瀏覽器訪問wordpress

在瀏覽器中輸入http://www.mywordpress.com/wordpress

注意:配置DNS伺服器解析www.test.com 為192.168.29.100
或者 修改windows 下的C:WindowsSysteme32driversetchosts檔案
192.168.29.100 www.test.com

可以看到已經出了wordpress 頁面,可以點選“現在就開始”就行配置,也可以手動修改配置檔案

9.修改wordpress配置檔案

(1)進入WordPress目錄(/var/www/wordpress/wordpress/)

[root@CentOS7 ~]# cd /var/www/wordpress/wordpress/
(2)複製cp wp-config-sample.php模板檔案為 wp-config.php,然後編輯

[root@CentOS7 ~]# vim /var/www/wordpress/wordpress/wp-config.php
// ** MySQL 設定 – 具體資訊來自您正在使用的主機 ** //
/** WordPress資料庫的名稱 */
define(`DB_NAME`, `wordpress`);
/** MySQL資料庫使用者名稱 */
define(`DB_USER`, `test1`);
/** MySQL資料庫密碼 */
define(`DB_PASSWORD`, `123456`);
/** MySQL主機 */
define(`DB_HOST`, `localhost`);
10.在資料庫中建立資料庫和使用者

(1)建立資料庫

MariaDB [(none)]> create database wordpress;
Query OK, 1 row affected (0.00 sec)
(2)建立使用者

MariaDB [(none)]> create user `test1`@`localhost` identified by `123456`;
Query OK, 0 rows affected (0.00 sec)
(3)給使用者授權

MariaDB [(none)]> grant all on wordpress.* to `test1`@`localhost`;
Query OK, 0 rows affected (0.01 sec)
11.再次訪問WordPress

http://www.mywordpress.com/wordpress

填入相關資訊,就可以正常訪問部落格了。

願力量與你同在_YC


相關文章