Ubuntu配置negix并开机自启动

前端之家收集整理的这篇文章主要介绍了Ubuntu配置negix并开机自启动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. Nginx安装环境

  • gcc
  • pcre库
  • zlib库
  • openssl库

安装方式网上有

2.编译安装
网上下载Nginx-1.8.0.tar.gz,并拷贝到Ubuntu

2.1 解压:tar -zxvf Nginx-1.8.0.tar.gz
2.2 进入文件夹:cd Nginx-1.8.0
2.3 配置
命令行输入:

./configure \
然后将如下命令拷入命令行

  1. --prefix=/usr/local/Nginx \ --pid-path=/var/run/Nginx/Nginx.pid \ --lock-path=/var/lock/Nginx.lock \ --error-log-path=/var/log/Nginx/error.log \ --http-log-path=/var/log/Nginx/access.log \ --with-http_gzip_static_module \ --http-client-body-temp-path=/var/temp/Nginx/client \ --http-proxy-temp-path=/var/temp/Nginx/proxy \ --http-fastcgi-temp-path=/var/temp/Nginx/fastcgi \ --http-uwsgi-temp-path=/var/temp/Nginx/uwsgi \ --http-scgi-temp-path=/var/temp/Nginx/scgi

2.4 部分文件夹建立

因为以上临时文件指定目录在var/temp/Nginx
所以要在var文件夹建立/temp/Nginx文件夹。使用mkdir xx

2.5 编译安装

make
make install

无错才可以进行下一步

2.6 检查是否安装好

cd /usr/local/Nginx/sbin/
./Nginx

使用ps指令看是否启动成功

ps aux|grep Nginx

在Ubuntu浏览器下输入localhost/ ,有如下表示安装配置成功

3 开机自启动
为了方便使用Nginx服务器,可以进行Ubuntu开机自启动。
3.1 编写处理脚本、

vim /etc/init.d/Nginx

复制如下内容

  1. #nx Startup script for the Nginx HTTP Server
  2. # it is v.0.0.2 version.
  3. # chkconfig: - 85 15
  4. # description: Nginx is a high-performance web and proxy server.
  5. # It has a lot of features,but it's not for everyone.
  6. # processname: Nginx
  7. # pidfile: /var/run/Nginx.pid
  8. # config: /usr/local/Nginx/conf/Nginx.conf
  9.  
  10. #注意:这里的三个变量需要根据具体的环境而做修改
  11. Nginxd=/usr/local/Nginx/sbin/Nginx
  12. Nginx_config=/usr/local/Nginx/conf/Nginx.conf
  13. Nginx_pid=/var/run/Nginx.pid
  14. RETVAL=0
  15. prog="Nginx"
  16.  
  17.  
  18. #Check that networking is up
  19. [ -x $Nginxd ] || exit 0
  20. ## Start Nginx daemons functions.
  21. start() {
  22. if [ -e $Nginx_pid ];then
  23. echo "Nginx already running...."
  24. exit 1
  25. fi
  26. echo -n $"Starting $prog: "
  27. $Nginxd -c ${Nginx_config}
  28. RETVAL=$?
  29. echo
  30. [ $RETVAL = 0 ]
  31. return $RETVAL
  32. }
  33. # Stop Nginx daemons functions.
  34. stop() {
  35. echo -n $"Stopping $prog: "
  36. $Nginxd -s stop
  37. RETVAL=$?
  38. echo
  39. [ $RETVAL = 0 ] && rm -f /var/lock/subsys/Nginx $Nginx_pid
  40. }
  41. # reload Nginx service functions.
  42. reload() {
  43. echo -n $"Reloading $prog: "
  44. kill -HUP `cat ${Nginx_pid}`
  45. RETVAL=$?
  46. echo
  47. }
  48. # See how we were called.
  49. case "$1" in
  50. start)
  51. start
  52. ;;
  53. stop)
  54. stop
  55. ;;
  56. reload)
  57. reload
  58. ;;
  59. restart)
  60. stop
  61. start
  62. ;;
  63. status)
  64. status $prog
  65. RETVAL=$?
  66. ;;
  67. *)
  68. echo $"Usage: $prog {start|stop|restart|reload|status|help}"
  69. exit 1
  70. esac
  71. exit $RETVAL

3.2 设置文件的访问权限

chmod a+x /etc/init.d/Nginx

这样在控制台就好操作Nginx了如下:

3.3 开机自启动

vi /etc/rc.local

加入一行 /etc/init.d/Nginx start 保存并退出,下次重启会生效。

猜你在找的Ubuntu相关文章