nginx学习(1)

nginx作为反向代理服务器以及负载均衡,享负盛名。

本篇记录一下nginx学习的过程。

我下载的nginx是1.10.1版本,这个版本可以通过rtmp-nodule支持rtmp协议,当初其实是为了搭建支持直播平台后端服务器。

解压缩之后,进入/usr/local/nginx/sbin目录,执行./nginx 命令,即可启动nginx server。

关闭nginx,和linux关闭其他软件差不多,先找到对于的pid,命令如下:ps -ef | grep nginx

root      8499    1  0 09:58 ?        00:00:00 nginx: master process ./nginx

nobody    8500  8499  0 09:58 ?        00:00:00 nginx: worker process

nobody    8501  8499  0 09:58 ?        00:00:00 nginx: cache manager process

root      8586  8546  0 10:05 pts/1    00:00:00 grep nginx

然后执行kill命令,kill -9 8499,即可强制关闭nginx。

nginx 默认端口是80,在浏览器中输入http://yourip:80/即可访问,效果如下。


nginx学习(1)_第1张图片

你可能感兴趣的:(nginx学习(1))