在 Google Cloud Platform 建立 lnmp Server 和 WordPress

除了用來建立 Shadowsocks 科學上網工具之外,另外一個常見的應用就是用 GCP 來建一個 WordPress 自有網站。

1. 為了成功建立 lnmp Servers, 所以選擇 CentOS 7,實測 lnmp 安裝包在 Ubuntu 會失敗,原因不明,所以用 CentOS 是安全的方法。

2. 登入 SSH

3. screen -S lnmp

4. 安裝 lnmp 穩定版

wget -c http://soft.vpser.net/lnmp/lnmp1.4.tar.gz && tar zxf lnmp1.4.tar.gz && cd lnmp1.4 && ./install.sh lnmp

5.選擇 lnmp 各模組的版本後,提示 “Press any key to install…or Press Ctrl+c to cancel” 確認後開始安裝。LNMP腳本就會自動安裝編譯Nginx、MySQL、PHP、phpMyAdmin、Zend Optimizer。安裝時間可能會幾十分鐘到幾個小時不等,跟機器配置和網速有關。


6. 安裝 WordPress

================================================

unzip latest.zip

mv -f /wordpress  /home/wwwroot/domain.com 把 wordpress 目錄下資料移至 web 目錄

chown www -R /home/wwwroot/domain.com 

http://xxx.xxx.xxx.xxx/phpmyadmin 利用 phpAdmin 建立 wordpress 資料庫

http://domain.com 安裝 wordpress

username : name password : xxxx

ready to config. login.

—————————————————–

// 新增 virtual host for domain2.com

lnmp vhost add %%lnmp

/home/wwwroot/domain2.com

unzip latest.zip

mv -f /wordpress  /home/wwwroot/domain2.com 把 wordpress 目錄下資料移至 web 目錄

chown www -R /home/wwwroot/domain2.com

http://xxx.xxx.xxx.xxx/phpadmin 利用 phpAdmin 建立資料庫

http://domain.com 安裝 wordpress

7.修改安裝默認主機的域名

修改方法:編輯

/usr/local/nginx/conf/nginx.conf 查找server_name,修改為你想設置的域名保存。

執行

/usr/local/nginx/sbin/nginx -s reload 重啟即可

Leave a Reply

Your email address will not be published. Required fields are marked *