
Linux下nginx重启:
#重启:先Kill 再启动
kill -9 $(ps -A | grep nginx | cut -d "?" -f 1 ) &>/dev/null
/usr/local/nginx/sbin/nginx
#判断Nginx配置是否正确:修改配置文件后先检查一下是否正确,以免重启后Nginx出现错误影响服务器稳定运行
nginx -t -c /usr/nginx/conf/nginx.conf
#或者
/usr/nginx/sbin/nginx -t
#平滑重启
/usr/nginx/sbin/nginx -s reload
#查看进程
ps -ef | grep nginx
#Kill进程
kill -9 9999
扩展资料
linux下关闭nginx:
查询nginx主进程号
ps -ef | grep nginx
从容停止kill -QUIT主进程号
快速停止kill -TERM主进程号
强制停止kill -9 nginx
若nginx.conf配置了pid文件路径,如果没有,则在logs目录下
kill-信号类型'/usr/local/nginx/logs/nginx.pid'
参考资料来源:百度百科—linux
具体方法如下:
1、在/usr/local/nginx/conf/nginx.conf文件末尾加入虚拟主机配置,实例如下:
server{
listen 80
server_name http://www.hebaodans.com
index index.html index.htm index.php
root /wwwroot/www.hebaodans.com
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock
fastcgi_pass 127.0.0.1:9000
fastcgi_index index.php
include fcgi.conf
}
#include rewite rule file or you can directly write here
include rewrite.conf
log_format hebaodanscom ‘$remote_addr – $remote_user [$time_local] “$request” ‘
‘$status $body_bytes_sent “$http_referer” ‘
‘”$http_user_agent” $http_x_forwarded_for’
access_log /logs/hebaodanscom.log hebaodanscom
}
2、vi /usr/local/nginx/conf/rewrite.conf 输入以下规则:
location / {
if (!-e $request_filename)
{
#————START —————WORLDPRESS————
rewrite ^ /index.php last
#————END —————WORLDPRESS————
#————————zen-cart start——————
# From Ultimate SEO URLs
rewrite "^(.*)-p-(.*).html" /index.php?main_page=product_info&products_id=$2&% last
rewrite "^(.*)-c-(.*).html" /index.php?main_page=index&cPath=$2&% last
rewrite "^(.*)-m-([0-9]+).html" /index.php?main_page=index&manufacturers_id=$2&% last
rewrite "^(.*)-pi-([0-9]+).html" /index.php?main_page=popup_image&pID=$2&% last
rewrite "^(.*)-pr-([0-9]+).html" /index.php?main_page=product_reviews&products_id=$2&% last
rewrite "^(.*)-pri-([0-9]+).html" /index.php?main_page=product_reviews_info&products_id=$2&% last
# For Open Operations Info Manager
rewrite "^(.*)-i-([0-9]+).html" /index.php?main_page=info_manager&pages_id=$2&% last
# For dreamscape’s News & Articles Manager
rewrite "^news/?" /index.php?main_page=news&% last
rewrite "^news/rss.xml" /index.php?main_page=news_rss&% last
rewrite "^news/archive/?" /index.php?main_page=news_archive&% last
rewrite "^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html" /index.php?main_page=news&date=$1-$2-$3&% last
rewrite "^news/archive/([0-9]{4})-([0-9]{2}).html" /index.php?main_page=news_archive&date=$1-$2&% last
rewrite "^news/(.*)-a-([0-9]+)-comments.html" /index.php?main_page=news_comments&article_id=$2&% last
rewrite "^news/(.*)-a-([0-9]+).html" /index.php?main_page=news_article&article_id=$2&% last
# All other pages
# Don’t rewrite real files or directories
#RewriteCond %{REQUEST_FILENAME} !-f [NC]
#RewriteCond %{REQUEST_FILENAME} !-d
rewrite "^(.*).html" /index.php?main_page=$1&% last
#—————————-zen-cart end—————–
}
}
保存后,运行 kill -HUP `cat /usr/local/nginx/nginx.pid` 平滑重启即可生效。
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)