1. 程式人生 > >centos6.0安裝wordpress

centos6.0安裝wordpress

首先需要安裝LNMP環境,即linux(centos6)  nginx mysql php
1.安裝nginx
使用yum工具安裝
yum install nginx -y
修改 /etc/nginx/conf.d/default.conf,去除對 IPv6 地址的監聽(CentOS 6 不支援 IPv6,需要取消對 IPv6 地址的監聽,否則 Nginx 不能成功啟動。)
示例:
server {
    listen       80 default_server;
    # listen       [::]:80 default_server;
    server_name  _;
    root         /usr/share/nginx/html;
    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;
    location / {
    }
    error_page 404 /404.html;
        location = /40x.html {
    }
   error_page 500 502 503 504 /50x.html;
        location = /50x.html {
    }
}

輸入命令啟動nginx伺服器
nginx
設定nginx開機啟動:

chkconfig nginx on


2.安裝mysql資料庫
1.yum install mysql-server -y
安裝完成後,啟動 MySQL 服務:
service mysqld restart
設定 MySQL 賬戶 root 密碼:
/usr/bin/mysqladmin -u root password '1212'
設定開機啟動:
chkconfig mysqld on
3.安裝 PHP
使用 yum 安裝 PHP:
yum install php-fpm php-mysql -y
安裝之後,啟動 PHP-FPM 程序:
service php-fpm start
啟動之後,可以使用下面的命令檢視 PHP-FPM 程序監聽哪個埠 
netstat -nlpt | grep php-fpm
把 PHP-FPM 也設定成開機自動啟動:
chkconfig php-fpm on

4.安裝 WordPress
配置好 LNMP 環境後,繼續使用 yum 來安裝 WordPress:
yum install wordpress -y

配置資料庫
進入 MySQL:
mysql -uroot --password='1212'
為 WordPress 建立一個數據庫:
CREATE DATABASE wordpress;
MySQL 部分設定完了,退出 MySQL 環境:
exit
同步上一步資料庫配置資訊到wp-config.php檔案
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'root');
/** MySQL database password */
define('DB_PASSWORD', '1212');

5.配置 Nginx
WordPress 已經安裝完畢,我們配置 Nginx 把請求轉發給 PHP-FPM 來處理
首先,重新命名預設的配置檔案:
cd /etc/nginx/conf.d/
mv default.conf defaut.conf.bak
在 /etc/nginx/conf.d 建立 wordpress.conf 配置,參考下面的內容:
server {
    listen 80;
    root /usr/share/wordpress;
    location / {
        index index.php index.html index.htm;
        try_files $uri $uri/ /index.php index.php;
    }
    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    location ~ .php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}
配置後,通知 Nginx 程序重新載入:
nginx -s reload
準備域名和解析
域名註冊

如果您還沒有域名,可以到阿里雲或者騰訊雲申請域名