我司之前用的是lamp的环境,现在要改成lnmp,也就是把apache替换成nginx,其中php是之前安装好的,不用重新安装,下边记录一下
一、去负载均衡服务器上把涉及到该台服务器的服务先注释掉,单台服务器的话就跳过这一步
二、查看apache的安装路径 find / -name httpd ,我这里是为了把nginx也安装到相同的目录下
三、停掉apache,输入命令service httpd stop (保险起见apache没有卸载和删除,只是不让它运行就可以了)
四、停掉Apache开启自启,输入命令chkconfig httpd off (防止以前设置过开机自启)
五、安装nginx,有两种安装方式
1、直接yum安装,不指定安装目录,输入命令: yum install nginx 。yum安装的nginx默认目录是/usr/local/nginx
2、手动安装nginx到自己指定的目录
六、启动nginx,进入到你刚安装的nginx目录下并执行./bin/nginx 在浏览器中输入你的服务器ip就能看到nginx启动的页面了,下边是Nginx常用命令进入到nginx的安装目录后执行
测试配置文件:./sbin/nginx -t
启动命令:./sbin/nginx
停止命令:./sbin/nginx -s stop/quit
重启命令:./sbin/nginx -s reload
查看进程命令:ps -ef | grep nginx
将nginx添加到服务实现效果是在服务器的任何地方都能进行nginx操作,而非进入nginx的安装目录才能进行,如执行命令 service nginx restart
一、新增文件,输入如下命令:vim /etc/init.d/nginx
二、粘贴如下代码
#!/bin/sh
#
#nginx - this script starts and stops the nginx daemon
#
# chkconfig: - 85 15
# description: NGINX is an HTTP(S) server, HTTP(S) reverse
# proxy and IMAP/POP3 proxy server
# processname: nginx
# config: /etc/nginx/nginx.conf
# config: /etc/sysconfig/nginx
# pidfile: /var/run/nginx.pid
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
#nginx="/mnt/nginx/sbin/nginx"
nginx="/home/wwwroot/nginx/sbin/nginx"
prog=$(basename $nginx)
NGINX_CONF_FILE="/home/wwwroot/nginx/conf/nginx.conf"
[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
lockfile=/var/lock/subsys/nginx
make_dirs() {
# make required directories
user=`$nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
if [ -z "`grep $user /etc/passwd`" ]; then
useradd -M -s /bin/nologin $user
fi
options=`$nginx -V 2>&1 | grep 'configure arguments:'`
for opt in $options; do
if [ `echo $opt | grep '.*-temp-path'` ]; then
value=`echo $opt | cut -d "=" -f 2`
if [ ! -d "$value" ]; then
# echo "creating" $value
mkdir -p $value && chown -R $user $value
fi
fi
done
}
start() {
[ -x $nginx ] || exit 5
[ -f $NGINX_CONF_FILE ] || exit 6
make_dirs
echo -n $"Starting $prog: "
daemon $nginx -c $NGINX_CONF_FILE
retval=$?
echo
[ $retval -eq 0 ] && touch $lockfile
return $retval
}
stop() {
echo -n $"Stopping $prog: "
killproc $prog -QUIT
retval=$?
echo
[ $retval -eq 0 ] && rm -f $lockfile
return $retval
}
restart() {
configtest || return $?
stop
sleep 1
start
}
reload() {
configtest || return $?
echo -n $"Reloading $prog: "
killproc $nginx -HUP
RETVAL=$?
echo
}
force_reload() {
restart
}
configtest() {
$nginx -t -c $NGINX_CONF_FILE
}
rh_status() {
status $prog
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart|configtest)
$1
;;
reload)
rh_status_q || exit 7
$1
;;
force-reload)
force_reload
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
exit 2
esac
有两个地方需要注意19行和21行改成你自己的nginx的安装目录
三、chmod a+x /etc/init.d/nginx (设置可执行权限)
四、使用chkconfig进行管理 chkconfig --add /etc/init.d/nginx 加完这个之后,就可以使用service对nginx进行启动,重启等操作了。
service nginx start
service nginx stop
service nginx restart
五、设置终端模式开机启动 chkconfig nginx on (开机和重启都会自动启动nginx了)
现在有多个php项目,如何通过让nginx监听不同的端口进入不同的项目呢,下边以监听8070端口到wms项目下为例
一、修改nginx的配置文件nginx.conf
在http的大括号中最后一行加入一句话include vhost/*.conf;意思是引入vhost下所有.conf结尾的文件的内容
二、创建wms的配置文件 vim vhost/wms.conf
三、粘贴下边内容
server {
listen 8070;
server_name localhost;
root /home/www/wms/;
index index.html index.htm index.php;
error_page 404 /404.html;
location = /404.html {
return 404 'Sorry, File not Found!';
}
error_page 500 502 503 504 /50x.html;
location / {
try_files $uri @rewrite;
}
location @rewrite {
set $static 0;
if ($uri ~ \.(css|js|jpg|jpeg|png|gif|ico|woff|eot|svg|css\.map|min\.map)$) {
set $static 1;
}
if ($static = 0) {
rewrite ^/(.*)$ /index.php?s=/$1;
}
}
location ~ /Uploads/.*\.php$ {
deny all;
}
location ~ \.php/ {
if ($request_uri ~ ^(.+\.php)(/.+?)($|\?)) { }
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_param SCRIPT_NAME $1;
fastcgi_param PATH_INFO $2;
fastcgi_param SCRIPT_FILENAME $document_root$1;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
上边文件中有三个地方需要注意
第2行 listen 8070; 配置为你要监听的端口
第3行 server_name localhost; 配置你监听的域名,有域名的话就改成你的域名,如www.baidu.com
第4行 root /home/www/wms/; 项目的根目录
四、重启nginx服务service nginx restart 浏览器中输入你的ip+端口就可以访问到你的网站了