码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx 服务器搭建

时间:2019-12-22 00:31:54      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:源安装   load   --   yum   install   move   sha   测试   源码   

yum源安装nginx (使用源码安装就进行源码的操作,不可混淆)

  • 安装命令
yum install -y nginx
  • 查看关于nginx的所有地址
whereis nginx
  • nginx配制文件(root指向的HTML,user---)
cd /etc/nginx/nginx.conf
  • nginx 页面
cd /usr/share/nginx/html/index.html
  • 查看进程号(默认80,表示已启动)
netstat -tpl
  • 配制文件修改后,重新加载
nginx -s reload
  • 测试文件是否正确
nginx -t
  • 启动nginx
nginx

nginx 卸载

  • 停止nginx
service nginx stop
  • 删除nginx的自动启动
chkconfig nginx off
  • 删除nginx本地文件(根据自己的目录清除)
whereis nginx

rm -rf /usr/---
rm -rf /etc/---
  • yum 清理
yum remove nginx

Nginx 服务器搭建

标签:源安装   load   --   yum   install   move   sha   测试   源码   

原文地址:https://www.cnblogs.com/xinzaiyuan/p/12078575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!