Ubuntu Server 10.04+Nginx+MySQL+PHP+Zend网站架设

把我架设LNMP网站的过程写出来,希望对想架设网站的朋友有所帮助,如有更好的办法请提出来。

之所以用Nginx没用Apache,是因为Nginx的效率更高一些,尤其是对一些低配置的服务器,比如我在单位256内存的机器上架设的服务器。

1、 安装Ubuntu Server 10.04,其中安装语言选的en,时区chongqing,服务只安装ssh,其他全部用默认就行。
提示:以上安装过程完成后,建议用其他计算机登录服务器,Windows系统可以用putty,Linux系统直接在终端用命令就可以:

代码:
ssh 登录名@服务器ip

因 为以下过程得输入大量命令和代码,在客户机上直接粘贴即可。
2、添加源:

代码:
sudo vi /etc/apt/sources.list

添加如下:

代码:
deb lucid main restricted universe multiverse
deb lucid-security main restricted universe multiverse
deb lucid-updates main restricted universe multiverse
deb lucid-backports main restricted universe multiverse
deb-src lucid main restricted universe multiverse
deb-src lucid-security main restricted universe multiverse
deb-src lucid-updates main restricted universe multiverse
deb-src lucid-backports main restricted universe multiverse

3、更新

代码:
sudo apt-get update

4、安装网站系统

代码:
sudo apt-get install MySQL-server mysql-client nginx php5-cgi php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-mhash php5-ming php5-pspell php5-recode php5-snmp php5-tidy php5-xmlrpc php5-sqlite php5-xsl

5、安装lighttpd,并移除服务

代码:
sudo apt-get install lighttpd
sudo update-rc.d -f lighttpd remove

6、启动 fastcgi进程

代码:
sudo /usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u www-data -g www-data -f /usr/bin/php5-cgi -C 4 -P /var/run/fastcgi-php.pid

7、设置开机启动fastcgi进程

代码:
sudo vi /etc/rc.local

添加下一行

代码:
/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u www-data -g www-data -f /usr/bin/php5-cgi -C 4 -P /var/run/fastcgi-php.pid

8、创建网站、日志目录(我的网站个人目录是ubuntu,以下命令用你的个人目 录替换其中的ubuntu即可)

代码:
mkdir /home/ubuntu/www
mkdir /home/ubuntu/log

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wydxsx.html