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

LNMP

时间:2018-01-19 11:53:18      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:ref   oca   pos   重启   reload   安装   root   login   org   

 

1.1.1 创建www用户

useradd -s /sbin/nologin -M www

 

1.1.2 编译安装(三部曲)

./configure --prefix=/application/nginx-1.10.2 --user=www --group=www --with-http_stub_status_module  --with-http_ssl_module

make  && make  install

 

1.1.3 创建软链接

ln  -s  /application/nginx-1.10.2  /application/nginx

 

1.1.4 修改配置文件

vim /application/nginx/conf/nginx.conf

server {

     listen       80;

     server_name  blog.xzy.org;

     location / {

         root   html;

         index  index.html index.htm;

     }

 

1.1.5 启动相关(启动、关闭、重启)

检查配置文件

/application/nginx/sbin/nginx -t

启动

/application/nginx/sbin/nginx

平滑重启、关闭

/application/nginx/sbin/nginx -s  reload | stop

 

 

1.2 测试

LNMP

标签:ref   oca   pos   重启   reload   安装   root   login   org   

原文地址:https://www.cnblogs.com/xzy-blog/p/8315473.html

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