系統環境centos6.x 64位 1.配置web環境 web環境選擇LNMP1.4 下載LNMP安裝腳本wget -c http://soft.vpser.net/lnmp/lnmp1.4.tar.gz && tar zxf lnmp1.4.tar.gz && cd lnmp1.4 && ./in ...
系統環境centos6.x 64位
1.配置web環境
web環境選擇LNMP1.4
下載LNMP安裝腳本wget -c http://soft.vpser.net/lnmp/lnmp1.4.tar.gz && tar zxf lnmp1.4.tar.gz && cd lnmp1.4 && ./install.sh
運行命令安裝,至於命令後如何選擇請詳細參考官方
https://lnmp.org/install.html
靜靜的等待安裝完成,這個安裝速度是根據自己所選的機器而定。機器差,網速不好估計要等待7-8個小時才能夠完成。
2.安裝php組件ionCube(這個一定要安裝,否則無法安裝whmcs)
cd lnmp1.4
./addons.sh install ionCube
3.添加網站
lnmp vhost add
詳細安裝教程https://lnmp.org/faq/lnmp-vhost-add-howto.html
4.上傳網站程式
建議使用winscp上傳。上傳whmcs壓縮包
到你所建立的目錄,home/wwwroot/yousite(第三步你填寫的功能變數名稱)
cd /home/wwwroot/yoursite
然後解壓 whmcs 文件包
unzip whmcs.zip
解壓後 cd whmcs
--> mv * ../
--> cd ../
修改網站目錄許可權:chown www:www -R /path/to/dir 對網站目錄進行許可權設置,/path/to/dir替換為你網站目錄。
5.安裝程式
cd /home/wwwroot/yoursite
cp configuration.php.new configuration.php
chmod 777 configuration.php
chmod 777 templates_c
chmod 777 attachments
chmod 777 downloads
在瀏覽器中輸入你的功能變數名稱訪問
點 I gree
填寫資料庫信息,下一步下一步。即可安裝完成
6.刪除安裝目錄install(必須,不然無法訪問後臺)
cd /home/wwwroot/yoursite
web 目錄下 : rm -rf install
大功告成了,訪問 http:// 你的功能變數名稱 / admin / 就可以登錄後臺了