运行问题2在Nginx(LEMP)在Debian Squeeze / Ubuntu 12.10
本教程将介绍如何在Debian Squeeze或Ubuntu 12.10系统上安装并运行Question2Answer网站,该系统已安装nginx而不是Apache(LEMP = L inux + nginx(发音为“ e ngine x”)+ M ySQL + P HP) 。 nginx是一个HTTP服务器,比Apache使用的资源少得多,并且提供了更快的网页,特别是静态文件。 Question2Answer是一个用于问答网站的免费开源平台。
我不会保证这将为您工作!
1初步说明
我想在一个名为www.example.com
/ example.com
的vhost中安装Question2Answer,其中包含文档根/var/www/www.example.com/web
。
您应该有一个工作的LEMP安装,如这些教程所示:
Ubuntu用户注意事项:
因为我们必须使用root权限运行本教程的所有步骤,所以我们可以使用字符串sudo
在本教程中添加所有命令,也可以通过键入来成为root
sudo su
2安装APC
APC是一个免费开放的PHP操作码cacher,用于缓存和优化PHP中间代码。 它类似于其他PHP操作码cacher,如eAccelerator和XCache。 强烈建议您安装其中一个以加快您的PHP页面。
APC可以安装如下:
apt-get install php-apc
如果您使用PHP-FPM作为FastCGI守护进程(例如在Ubuntu 12.10中安装使用PHP5(和PHP-FPM)和MySQL支持的Nginx中 ),请重新启动它,如下所示:
/etc/init.d/php5-fpm restart
如果您使用lighttpd的spawn-fcgi程序作为FastCGI守护进程(例如在使用Debian Squeeze安装Nginx with PHP5和MySQL支持 )中,我们必须终止当前的spawn-fcgi进程(在端口9000
上运行),并创建一个新的。 跑
netstat -tap
找出当前的spawn-fcgi进程的PID:
root@server1:~# netstat -tap
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 *:sunrpc *:* LISTEN 734/portmap
tcp 0 0 *:www *:* LISTEN 2987/nginx
tcp 0 0 *:ssh *:* LISTEN 1531/sshd
tcp 0 0 *:57174 *:* LISTEN 748/rpc.statd
tcp 0 0 localhost.localdom:smtp *:* LISTEN 1507/exim4
tcp 0 0 localhost.localdom:9000 *:* LISTEN 1542/php5-cgi
tcp 0 0 localhost.localdo:mysql *:* LISTEN 1168/mysqld
tcp 0 52 server1.example.com:ssh 192.168.0.198:2462 ESTABLISHED 1557/0
tcp6 0 0 [::]:www [::]:* LISTEN 2987/nginx
tcp6 0 0 [::]:ssh [::]:* LISTEN 1531/sshd
tcp6 0 0 ip6-localhost:smtp [::]:* LISTEN 1507/exim4
root@server1:~#
在上面的输出中,PID是1542
,所以我们可以杀死当前的进程如下:
kill -9 1542
之后我们创建一个新的spawn-fcgi进程:
/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u www-data -g www-data -f /usr/bin/php5-cgi -P /var/run/fastcgi-php.pid
3安装Question2Answer
我的www.example.com
网站的文档根目录是/var/www/www.example.com/web
- 如果不存在,创建如下:
mkdir -p /var/www/www.example.com/web
因为Question2Answer是一个.zip文件,我们需要安装解压缩
:
apt-get install unzip
接下来我们下载Question2Answer( http://www.question2answer.org/question2answer-latest.zip )并将其放在我们的文档根目录中:
cd /tmp
mkdir q2a
cd q2a
wget http://www.question2answer.org/question2answer-latest.zip
unzip question2answer-latest.zip
rm -f question2answer-latest.zip
cd question2answer/
mv * .htaccess /var/www/www.example.com/web/
建议使用作为用户www-data
和组www-data
运行的nginx守护进程将文档根目录和Question2Answer文件写入:
chown -R www-data:www-data /var/www/www.example.com/web
如果您还没有为Question2Answer(包括MySQL Question2Answer用户)创建了MySQL数据库,则可以按照以下方式进行操作(本例中命名数据库q2a
,用户称为q2a_admin
,密码为q2a_admin_password
):
mysqladmin -u root -p create q2a
mysql -u root -p
GRANT ALL PRIVILEGES ON q2a.* TO 'q2a_admin'@'localhost' IDENTIFIED BY 'q2a_admin_password';
GRANT ALL PRIVILEGES ON q2a.* TO 'q2a_admin'@'localhost.localdomain' IDENTIFIED BY 'q2a_admin_password';
FLUSH PRIVILEGES;
quit;
接下来,我们在/ etc / nginx / sites-available /
目录中为www.example.com
vhost创建一个nginx vhost配置,如下所示:
vi /etc/nginx/sites-available/www.example.com.vhost
server { listen 80; server_name www.example.com example.com; root /var/www/www.example.com/web; if ($http_host != "www.example.com") { rewrite ^ http://www.example.com$request_uri permanent; } index index.php index.html index.htm default.html default.htm; location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { allow all; log_not_found off; access_log off; } # Deny all attempts to access hidden files such as .htaccess, .htpasswd, .DS_Store (Mac). location ~ /\. { deny all; access_log off; log_not_found off; } location / { try_files $uri $uri/ /index.php?qa-rewrite=$uri&$args; } location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; # use this if PHP-FPM is running on Unix socket /var/run/php5-fpm.sock (Ubuntu 12.10 default) #fastcgi_pass 127.0.0.1:9000; # use this if PHP-FPM is running on TCP port 9000 (Debian Squeeze default) include /etc/nginx/fastcgi_params; fastcgi_index index.php; } } |
要启用该vhost,我们从/ etc / nginx / sites-enabled /
目录创建一个符号链接:
cd /etc/nginx/sites-enabled/
ln -s /etc/nginx/sites-available/www.example.com.vhost www.example.com.vhost
重新加载nginx以使更改生效:
/etc/init.d/nginx reload
接下来将qa-config-example.php
重命名为qa-config.php
...
cd /var/www/www.example.com/web/
mv qa-config-example.php qa-config.php
...并打开文件:
vi qa-config.php
填写正确的数据库详细信息:
[...] define('QA_MYSQL_HOSTNAME', 'localhost'); // try '127.0.0.1' or 'localhost' if MySQL on same server define('QA_MYSQL_USERNAME', 'q2a_admin'); define('QA_MYSQL_PASSWORD', 'q2a_admin_password'); define('QA_MYSQL_DATABASE', 'q2a'); [...] |