原文链接:
http://www.netroby.com/article-1367.html
文章自己写的,只存在于自己的javaeye博客和自己的独立博客。欢迎转载,多谢注明出处。
ubuntu 8.04 LTS 64位系统nginx + mysql + php5-fpm +
wordpress详细配置,最后更新于2010年04月26日。
网上找一圈,也没找到一个非常全的快速配置nginx,mysql,php-fpm的资料,大多文章都是转载别人,且不论对错,不求证,直接搬过来。
绕了许多弯路,终于顺利的把配置工作做到位了。现在把配置流程文档整理出来,跟大家分享,如果大家发现有不对的地方,请指证出来。我会实时加以完善和修
正,做出更好的更订和修改。
安装教程是用root权限执行的。
vps服务器的环境如下:
128M内存
XEN vps
交换分区是256M
硬盘空间是3G
操作系统我选用的是ubuntu 8.04 LTS 的64位版本
1. 安装PHP5-fpm
64 位ubuntu 安装 32位兼容包
apt-get install ia32-libs
ubuntu 需要安装依赖包
wget http://us.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb53_1.6.dfsg.4~beta1-5ubuntu2_i386.deb
wget http://us.archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu38_3.8-6ubuntu0.2_i386.deb
dpkg -i *.deb
添加第三方源,来自于dotdeb组织的php5-fpm的deb包,编辑 /etc/apt/sources.list
deb http://packages.dotdeb.org stable all
deb-src http://packages.dotdeb.org stable all
deb http://php53.dotdeb.org stable all
更新源
apt-get update
安装php环境
apt-get install php5-cli php5-common php5-suhosin php5-fpm php5-cgi php5-mysql php5-gd
我的wordpress目前只用到这些php组件,所以我就只装这些
2. 安装nginx
echo "deb http://ppa.launchpad.net/jdub/devel/ubuntu hardy main" >> /etc/apt/sources.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E9EEF4A1
apt-get update
apt-get install nginx
更多关于nginx的安装配置请参考:
http://wiki.nginx.org/NginxInstall
http://articles.slicehost.com/nginx
3. 开始配置nginx
编
辑配置
vim /etc/nginx/wordpress.conf
输入以下内容
location / {
index index.html index.php;
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ {
expires max;
break;
}
location ~ .*\.php$ {
fastcgi_pass 127.0.0.1:9000;
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
}
location ~ .*\.(gif|jpg|png|swf|flv)$ {
valid_referers none blocked *.xgyl.net *.netroby.com *.google.com;
if ($invalid_referer) {
return 403;
}
}
编
辑配置
vim /etc/nginx/nginx.conf
用下面的内容替换原来的所有内容
user www-data;
worker_processes 1;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
worker_rlimit_nofile 1024;
events {
use epoll;
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
optimize_server_names off;
server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
sendfile on;
tcp_nopush on;
keepalive_timeout 60;
tcp_nodelay on;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 128k;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 7;
gzip_types text/plain application/x-javascript text/css application/xml;
include /etc/nginx/sites-enabled/*;
}
编
辑配置
vim /etc/nginx/sites-availale/default
输入以下内容,自行修改为自己的域名
server {
listen 80;
server_name www.netroby.com;
root /vhosts/www.netroby.com;
include /etc/nginx/wordpress.conf;
}
server
{
listen 80;
server_name www.xgyl.net;
root /vhosts/www.xgyl.net;
include /etc/nginx/wordpress.conf;
}
编
辑配置
vim /etc/nginx/fastcgi_params
输入以下内容替换原来内容
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param REDIRECT_STATUS 200;
4.配置 php5-fpm
编
辑配置
vim /etc/php5/fpm/php5-fpm.conf
用下面的配置替换原来的内容
<?xml version="1.0" ?>
<configuration>
All relative paths in this config are relative to php's install prefix
<section name="global_options">
Pid file
<value name="pid_file">/var/run/php5-fpm.pid</value>
Error log file
<value name="error_log">/var/log/php5-fpm.log</value>
Log level
<value name="log_level">notice</value>
When this amount of php processes exited with SIGSEGV or SIGBUS ...
<value name="emergency_restart_threshold">10</value>
... in a less than this interval of time, a graceful restart will be initiated.
Useful to work around accidental curruptions in accelerator's shared memory.
<value name="emergency_restart_interval">1m</value>
Time limit on waiting child's reaction on signals from master
<value name="process_control_timeout">5s</value>
Set to 'no' to debug fpm
<value name="daemonize">yes</value>
</section>
<workers>
<section name="pool">
Name of pool. Used in logs and stats.
<value name="name">default</value>
Address to accept fastcgi requests on.
Valid syntax is 'ip.ad.re.ss:port' or just 'port' or '/path/to/unix/socket'
<value name="listen_address">127.0.0.1:9000</value>
<value name="listen_options">
Set listen(2) backlog
<value name="backlog">-1</value>
Set permissions for unix socket, if one used.
In Linux read/write permissions must be set in order to allow connections from web server.
Many BSD-derrived systems allow connections regardless of permissions.
<value name="owner">www-data</value>
<value name="group">www-data</value>
<value name="mode">0666</value>
</value>
Additional php.ini defines, specific to this pool of workers.
These settings overwrite the values previously defined in the php.ini.
<value name="php_defines">
<!-- <value name="sendmail_path">/usr/sbin/sendmail -t -i</value> -->
<!-- <value name="display_errors">0</value> -->
<!-- <value name="error_log">/var/log/php-error.log</value> -->
<!-- <value name="log_errors">true</value> -->
</value>
Unix user of processes
<value name="user">www-data</value>
Unix group of processes
<value name="group">www-data</value>
Process manager settings
<value name="pm">
Sets style of controling worker process count.
Valid values are 'static' and 'apache-like'
<value name="style">static</value>
Sets the limit on the number of simultaneous requests that will be served.
Equivalent to Apache MaxClients directive.
Equivalent to PHP_FCGI_CHILDREN environment in original php.fcgi
Used with any pm_style.
<value name="max_children">3</value>
Settings group for 'apache-like' pm style
<value name="apache_like">
Sets the number of server processes created on startup.
Used only when 'apache-like' pm_style is selected
<value name="StartServers">20</value>
Sets the desired minimum number of idle server processes.
Used only when 'apache-like' pm_style is selected
<value name="MinSpareServers">5</value>
Sets the desired maximum number of idle server processes.
Used only when 'apache-like' pm_style is selected
<value name="MaxSpareServers">35</value>
</value>
</value>
The timeout (in seconds) for serving a single request after which the worker process will be terminated
Should be used when 'max_execution_time' ini option does not stop script execution for some reason
'0s' means 'off'
<value name="request_terminate_timeout">30s</value>
The timeout (in seconds) for serving of single request after which a php backtrace will be dumped to slow.log file
'0s' means 'off'
<value name="request_slowlog_timeout">0s</value>
The log file for slow requests
<value name="slowlog">/var/log/php5-fpm.log.slow</value>
Set open file desc rlimit
<value name="rlimit_files">1024</value>
Set max core size rlimit
<value name="rlimit_core">0</value>
Chroot to this directory at the start, absolute path
<value name="chroot"></value>
Chdir to this directory at the start, absolute path
<value name="chdir"></value>
Redirect workers' stdout and stderr into main error log.
If not set, they will be redirected to /dev/null, according to FastCGI specs
<value name="catch_workers_output">yes</value>
How much requests each process should execute before respawn.
Useful to work around memory leaks in 3rd party libraries.
For endless request processing please specify 0
Equivalent to PHP_FCGI_MAX_REQUESTS
<value name="max_requests">500</value>
Comma separated list of ipv4 addresses of FastCGI clients that allowed to connect.
Equivalent to FCGI_WEB_SERVER_ADDRS environment in original php.fcgi (5.2.2+)
Makes sense only with AF_INET listening socket.
<value name="allowed_clients">127.0.0.1</value>
Pass environment variables like LD_LIBRARY_PATH
All $VARIABLEs are taken from current environment
<value name="environment">
<value name="HOSTNAME">$HOSTNAME</value>
<value name="PATH">/usr/local/bin:/usr/bin:/bin</value>
<value name="TMP">/tmp</value>
<value name="TMPDIR">/tmp</value>
<value name="TEMP">/tmp</value>
<value name="OSTYPE">$OSTYPE</value>
<value name="MACHTYPE">$MACHTYPE</value>
<value name="MALLOC_CHECK_">2</value>
</value>
</section>
</workers>
</configuration>
5. 保存配置,并运行nginx和php-fpm
/etc/init.d/nginx restart
/etc/init.d/php5-fpm restart
6. 安装mysql-server
apt-get install mysql-server libtcmalloc-minimal0
编辑mysql启动文件 vim /etc/init.d/mysql
在export Home下边加上下面一句,并保存
export LD_PRELOAD="/usr/lib/libtcmalloc_minimal.so.0"
编辑Mysql的配置文件
vim /etc/mysql/my.cnf
用下面的配置覆盖原来的配置
[client]
port = 3306
socket = /var/run/mysqld/mysqld.sock
[mysqld_safe]
socket = /var/run/mysqld/mysqld.sock
nice = 0
[mysqld]
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
language = /usr/share/mysql/english
skip-external-locking
bind-address = 127.0.0.1
key_buffer = 16K
max_allowed_packet = 1M
table_cache = 4
sort_buffer_size = 64K
read_buffer_size = 256K
read_rnd_buffer_size = 256K
thread_stack = 64K
thread_cache_size = 8
myisam-recover = BACKUP
query_cache_limit = 64K
query_cache_size = 256K
expire_logs_days = 10
max_binlog_size = 10M
[mysqldump]
quick
quote-names
max_allowed_packet = 16M
[mysql]
[isamchk]
key_buffer = 16M
!includedir /etc/mysql/conf.d/
更多关于mysql的内容,请参考:
http://articles.slicehost.com/mysql
7. 测试
编
辑文件
vim /vhosts/www.netroby.com/index.php
<?php
phpinfo();
如果看到正确的php信息,则可以开始安装wordpress了。
如果你用的ubuntu的版本不是8.04,那么,就要修改/etc/nginx/nginx.conf中的
optimize_server_names为server_name_in_redirect
本配置,在多台vps下面均完美通过测试。
如果在配置过程中遇到什么问题,可以记录下来。然后去google上找一下问题答案,也可以给我email.
因为我己经测试过,所以可以保证提供的配置是完全正确的。出现问题,请检查是不是正确的输入了配置文字。
更新记录:
2010年04月26日
增加mysql的最新可用源,并优化和调整mysql的配置, 更新了nginx最新的源
2010年04月21日
增加了Expires缓存控制,把图片,css,js等不动的东西,最大可能缓存。
2010年04月18日
减少mysql查询缓存大小,减少mysql的内存占用
优化php-fpm的配置,提升性能,降低负载
2010年04月17日
增加mysql的配置
修改fcgi为tcp协议,据观察这种方式比较稳定。
设置fpm的最大可执行时间,减轻大量并发负载下面服务器的压力。
2010年04月16日
第一版完稿
分享到:
相关推荐
在本文中,我们将详细探讨如何在Ubuntu 12.04上安装和配置一个基于Nginx、PHP5(通过PHP-FPM)和MySQL的Web服务器环境。这个组合常被称为LEMP堆栈(Linux, Nginx, MySQL, PHP)。下面是每个组件的安装和配置步骤。 ...
在本文中,我们将详细介绍如何在Ubuntu 12.04服务器上安装Nginx、PHP5(通过PHP-FPM)和MySQL,构建一个完整的Web服务器环境。这是一个适合初学者和有经验的系统管理员的指南,旨在提供详细的步骤来完成这个常见的...
在Ubuntu Linux系统中,搭建基于Nginx的Web服务器是一个高效的选择,因为它以其高性能和低内存占用而闻名,尤其在处理静态内容和反向代理方面表现突出。与Apache相比,Nginx通常更适合高并发场景。以下是搭建Nginx+...
它为 WordPress 安装和配置所需的操作系统包和 Percona MySQL/Nginx/PHP-FPM/Postfix 部署堆栈。 所有软件包都通过 aptitude 安装,以便将来轻松升级。 注意:该脚本禁用 SSH root 登录,设置 sudo 用户,并可选择...
它为WordPress安装和配置所需的OS软件包以及MySQL / MySQL / Nginx / PHP-FPM / Postfix部署堆栈。 所有软件包都通过智能安装,以方便将来升级。 注意:该脚本禁用SSH根登录,设置sudo用户,并可以选择更改SSH端口...
LNMP云安装Ubuntu Debian(NGINX/PHP/MYSQL)快速配置工具经测试,整个过程约2-5分钟完成。各种组件均使用最新稳定版。加入php host功能限制每个网站的访问目录,防止跨目录,更安全!解决nginx 0day漏洞! ...
LNMP(Linux、Nginx、MySQL、PHP)是一种常见的Web服务器环境,用于运行动态网站,如WordPress。在这个环境中,Linux作为操作系统,Nginx作为Web服务器,MySQL用于数据库存储,而PHP则处理服务器端的脚本语言。下面...
LNMP(Linux、Nginx、MySQL、PHP)是一个常见的Web服务器环境,常用于搭建动态网站,例如WordPress。WordPress是一款开源的内容管理系统(CMS),广泛应用于博客、企业网站、电子商务平台等。下面将详细介绍如何利用...
5. **配置Nginx虚拟主机**:编写WordPress的Nginx配置文件,确保正确指向WordPress安装目录。 6. **启动服务**:启动Nginx、MySQL/MariaDB并设置开机自启。 **三、WordPress安装** 1. **访问WordPress安装页面**:...
5. **配置FPM(FastCGI Process Manager)**:PHP-FPM提供了更高效的PHP进程管理方式。配置php-fpm,将生成的`php-fpm.conf`和`php-fpm.pid`移到适当位置。 6. **启动服务**:根据你的系统,启动php-fpm服务。例如...
LNMP(Linux, Nginx, MySQL, PHP)是一种常见的Web服务器组合,广泛用于搭建高性能、高并发的网站环境,尤其是对于PHP应用如WordPress这样的内容管理系统。本教程将详细介绍如何在Linux系统上构建LNMP环境并安装...
LNMP(Linux、Nginx、MySQL、PHP)是一套常用的Web服务器组合,尤其适合运行动态网站,如WordPress。在本教程中,我们将探讨如何在一台服务器上为初学者部署LNMP环境,并安装WordPress。 首先,我们需要理解LNMP各...
LNMP(Linux + Nginx + MariaDB/MySQL + PHP)是常见的Web服务器环境,用于部署和运行WordPress这种基于PHP的开源博客平台。这个“lnmp+wordpress软件包”包含了搭建WordPress所需的所有组件,旨在简化安装过程,让...
VirtualBox + Vagrant + Landrush,运行Ubuntu 16.04 LTS(Xenial Xersus),并选择Nginx或Apache + MariaDB(MySQL),PHP(选择PHP 7.1,PHP 7.0,PHP 5.6,PHP 5.5)和WordPress。 安装说明 1.)满足软件要求 您...
以下是一份详细的指南,涵盖了从选择操作系统到安装必要的软件,再到配置PHP-FPM和WordPress的全过程。 首先,Ubuntu 14.04是一个长期支持(LTS)版本,它提供了长达五年的安全更新和支持,因此是服务器部署的首选...
在Ubuntu 20.04上搭建LNMP(Linux、Nginx、MySQL/MariaDB、PHP)环境是一项常见的任务,对于开发人员来说至关重要。以下将详细介绍如何在Ubuntu 20.04上逐步完成这一过程。 首先,我们需要了解LNMP架构。LNMP是一个...
这个角色利用Docker Compose工具来实现WordPress与相关服务(如MySQL、Nginx等)的集成运行。同时,通过Let's Encrypt提供免费且自动化的HTTPS证书,确保了网站的安全通信。 【描述】再次强调了该Ansible角色的主要...
这是一个示例WordPress网站,配置为在上运行,同时包含PHP和NGINX的配置。 服务器要求 Ubuntu 18.04.5 LTS nginx / 1.19.7 headers-更多-nginx-模块 ngx_brotli ngx_devel_kit set-misc-nginx-module PHP 7.4....
本实践主要涉及的是在云计算环境中使用ZStack部署LNMP(Linux, Nginx, MySQL, PHP)架构,以搭建WordPress个人网站。 首先,我们了解LNMP的基本组成部分: 1. Linux:作为基础操作系统,Linux提供了稳定且高效的...