构建基于Nginx的Web服务器(2)

四、Nginx服务的运行控制

1.添加nginx运行的用户组:

[root@localhost nginx-1.0.15]# useradd -s /sbin/nologin nginx

 

2.Nginx默认安装在/usr/local/nginx目录下,为了方便应用,可以添加一个nginx主程序的符号链接:

[root@localhost nginx-1.0.15]# ln -sf /usr/local/nginx/sbin/nginx  /usr/sbin

 

3.使用nginx -t命令检查nginx配置文件是否有语法错误:

[root@linux nginx-1.0.15]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@linux nginx-1.0.15]#

 执行nginx -t后出现上述提示表示配置文件语法正确。

 

4.使用nginx启动服务,然后使用netstat命令进行查看:

[root@linux nginx-1.0.15]# netstat -anpt|grep 80
tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      16787/nginx         
[root@linux nginx-1.0.15]#

5.nginx启动成功后,可以在浏览器中查看初始的web页面:

在客户端浏览器中执行:(服务器IP地址)进行查看:

构建基于Nginx的Web服务器

另外在服务器命令行下使用文本浏览器工具elink进行查看:

[root@localhost nginx-0.8.54]# elinks

构建基于Nginx的Web服务器

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/f5dfef7136959d310dc9610d0b585ea6.html