centos7.3搭建lamp實現使用wordpress
“`
環境說明:
在同一臺主機上實現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
相關文章
- CentOS7.3 編譯搭建 lamp 環境CentOS編譯LAMP
- LAMP(CentOS 7.2)環境下搭建WordPressLAMPCentOS
- 基於 LAMP 的 WordPress 快速建站LAMP
- 使用tomcat搭建Jenkins環境(centos7.3)TomcatJenkinsCentOS
- LAMP搭建示例LAMP
- 使用 Docker 和 Traefik 搭建 WordPressDocker
- Centos下搭建LAMP+PHPCentOSLAMPPHP
- 搭建PowerDNS+LAP+NFS+MySQL主從半節點同步實現LAMP架構DNSNFSMySqlLAMP架構
- CentOS7.3搭建FastDFS V5.11(一)CentOSAST
- CentOS7.3搭建FastDFS V5.11(二)CentOSAST
- CentOS7.3搭建FastDFS V5.11(三)CentOSAST
- 阿里雲體驗實驗室教程《快速搭建LAMP環境》阿里LAMP
- centos 下搭建wordpressCentOS
- 如何在CentOS 7上搭建LAMP環境(使用YUM或編譯)CentOSLAMP編譯
- 阿里雲國際版使用ROS搭建WordPress教程阿里ROS
- LAMP-CentOS7搭建Web伺服器LAMPCentOSWeb伺服器
- 使用WordPress搭建一個專屬自己的部落格
- CentOS7.3怎麼安裝?使用DVD ISO映象安裝CentOS7.3的方法CentOS
- 個人部落格搭建( wordpress )
- 2021年Wordpress部落格搭建
- LAMPLAMP
- Ubuntu22.04 LAMP快速實戰UbuntuLAMP
- CentOS7.3下載,CentOS7.3 iso下載CentOS
- 基於LNMP的WordPress搭建與速度最佳化實踐LNMP
- 初學者使用1Panel皮膚快速搭建WordPress網站網站
- wordpress如何使用tmpfs
- WordPress 搭建個人部落格/站點
- 冬季實戰營動手實戰-上雲必備環境準備,動手實操快速搭建LAMP環境LAMP
- lamp和lnmpLAMPLNMP
- WordPress搭建過的知名網站有哪些?網站
- 爬蟲管理平臺以及wordpress本地搭建爬蟲
- 利用WordPress搭建屬於自己的網站網站
- wordpress wp-postviews使用View
- 如何使用阿里雲搭建wordpress網站(圖文教程+小白專用+Linux版)?阿里網站Linux
- (13) SpringCloud-使用Eureka叢集搭建實現高可用SpringGCCloud
- (15) SpringCloud-使用Eureka叢集搭建實現高可用SpringGCCloud
- 實現會員制功能的WordPress外掛-Simple Membership
- centos7.3安裝redisCentOSRedis
- 詳解CentOS5.5 下搭建 PHP 環境(最佳的LAMP環境)CentOSPHPLAMP