Mysql

LNMP 安裝程序包

  • July 15, 2012

我正在嘗試找到一個可以一次完成所有操作的 LNMP 安裝程序。大家知道嗎?我還希望 PHP 能夠以快速 CGI 執行。這將在我的帶有 centOS 的機架空間伺服器上執行。

你為什麼不喜歡安裝 via yum?如果您通過“一鍵式”安裝程序進行安裝,您將錯過 CentOS 工作人員提供的所有正常安全和版本更新。真的,通過 yum 安裝東西非常容易。

由於預設 CentOS 儲存庫無法使用 nginx,因此您需要添加 EPEL 儲存庫:

$ su -c 'rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm'
$ yum update

然後:

yum install nginx php-cli php make automake gcc gcc-c++ spawn-fcgi wget mysql-server
chkconfig --add nginx
chkconfig --level 35 nginx on
service nginx start

(來源:Linode 圖書館,那裡有更多資訊)

引用自:https://serverfault.com/questions/240977