• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回服务器栏目

89 - Nginx - 安装、阿里云安全组

作者:

贺及楼

成为作者

更新日期:2024-05-06 12:44:52

作用:外网能访问了!!耶

[tocm]

apt-get在线安装

  1. sudo apt-get install nginx

服务器里nginx会创建 /var/www/

离线二进制安装

  1. 二进制rpm安装包长名字)
  2. nginx-1.22.0-1.el7.ngx.x86_64.rpm
  3. # 安装命令:
  4. rpm -ivh nginx-1.22.0-1.el7.ngx.x86_64.rpm
  5. 如果安装不了提示:Header V4 RSA/SHA256 Signature
  6. 后面加 --force --nodeps
  7. rpm -ivh nginx-1.22.0-1.el7.ngx.x86_64.rpm--force --nodeps
  1. find / -name nginx
  2. /etc/logrotate.d/nginx
  3. /etc/nginx
  4. /var/log/nginx/access.log # 成功日志
  5. /var/log/nginx/error.log # 错误日志
  6. /var/cache/nginx
  7. /usr/sbin/nginx # 主进程
  8. /usr/lib64/nginx
  9. /usr/share/nginx/index.html # 欢迎页
  10. /usr/share/nginx/500.html # 错误页
  11. /usr/libexec/initscripts/legacy-actions/nginx
  1. 可以立刻用systemctl
  2. systemctl status nginx
  3. systemctl start nginx
  4. systemctl stop nginx
  5. systemctl reload nginx

离线编译安装

  1. 编译安装包(短名字)
  2. http://nginx.org/download/
  3. http://nginx.org/en/download.html
  1. auto # auto文件夹中主要有4个目录:cc、lib、os、types,auto目录主要是为了辅助configure执行时Nginx要支持哪些模块、当前系统支持哪些特性来供Nginx使用;
  2. GHNAGE # 当前版本相较于前面版本有哪些变化,新增支持哪些特性(Feature)和修复了哪些bug(Bugfix)
  3. CHANGE.ru # 俄语版的CHANGE文件
  4. conf # 实例文件。在Nginx安装好后,会把configure的实例文件拷贝到conf文件中,方便运维使用
  5. configure # 配置脚本,用来生成中间文件,执行编译前的必备动作
  6. contrib # Perl脚本,使Nginx的语法在vim中显示
  7. html # 包括 50x.html, index.html 两个html文件
  8. LICENSE
  9. man # Nginx的帮助文件
  10. README
  11. src # Nginx的源代码(core, event, http, mail, misc, os, stream)
  1. gcc --version # gcc有无安装
  2. g++ --version # g++有无安装
  3. yum -y install pcre-devel zlib-devel gcc gcc-c++ make
  4. tar -zxvf nginx-1.17.6.tar.gz # 解压2层直到文件夹,其他解压软件也可以
  5. cd nginx-1.17.6/ # 进入文件夹
  6. useradd -M -s /sbin/nologin nginx # 新建用户 nginx
  1. 无参数的./configure命令:
  2. ./configure
  3. 有参数的./configure命令:
  4. ./configure --user=nginx --group=nginx --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
  5. ./configure --help | more
  6. # 第一类参数:指定Nginx的安装路径:
  7. --prefix=/home/nginx (默认)
  8. --prefix=PATH # set installation prefix指定安装目录
  9. --sbin-path=PATH
  10. --modules-path=PATH
  11. --conf-path=PATH
  12. # 第二类参数:确定Nginx要使用哪些模块、不使用哪些模块:
  13. # "--with" 开头的模块是默认 编译进Nginx的模块,使用with可指定其加入Nginx
  14. # "--without" 开头的模块是默认 不 编译进Nginx的模块,使用without可指定其不加入Nginx
  15. --with-select_module
  16. --with-http_ssl_module
  17. # --with-http_stub_status_module # 启用此模块支持状态统计
  18. --without-http_gzip_module
  19. --without-http_charset_module
  20. # 第三类参数:一些特殊选项:
  21. --with-cc=PATH # 指定C编译器路径
  22. --with-cpp=PATH # 指定CPP编译器路径
  23. --with-ld-opt=OPTIONS
  1. configure 后会生成一些中间文件
  2. objs/ngx_module.c 它决定了在后面编译时有哪些模块会被编译进Nginx
  1. #include <ngx_config.h>
  2. #include <ngx_core.h>
  3. extern ngx_module_t ngx_core_module;
  4. extern ngx_module_t ngx_errorlog_module;
  5. ...
  6. ngx_module_t *ngx_modules[] = {
  7. &ngx_core_module,
  8. &ngx_errorlog_module,
  9. ...
  10. };
  11. char *ngx_module_names[] = {
  12. "ngx_core_module",
  13. "ngx_errlog_module",
  14. ...
  15. };
  1. make
  2. 执行 make 编译。
  3. 编译后,会生成大量的中间文件(例如 .o 文件) 最后的可执行二进制文件(nginx)。
  4. objs 目录中可以看到 可执行二进制文件 nginx
  5. objs/src 目录下可以看到C语言编译时生成的所有中间文件(.o 文件)。
  1. make install
  2. 执行 make install 安装。
  3. (首次安装时可以通过执行 make install 安装)
  4. 随后,在 --prefix 指定的目录中就可以看到 安装好后的 Nginx

安装nginx得到的东西

  1. # 可以看到nginx的全部目录
  2. find / -name nginx
  3. /etc/nginx/nginx.conf
  4. /usr/local/sbin/nginx 最主要的可执行二进制文件
  5. var/logs/access.log
  6. var/logs/error.log

可以添加环境变量

可以做软连接

ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
nginx -t # 检查配置文件是否配置正确
nginx -v # 版本号

  1. ### 加入systemctl服务(推荐)

cd /usr/lib/systemd/system
cp httpd.service nginx.service
vim nginx.service
或者自己修改拖进去

  1. ```
  2. [Unit] 服务描述模块
  3. Description=The Nginx HTTP Server
  4. After=network.target remote-fs.target nss-lookup.target
  5. [Service]
  6. Type=forking ////后台执行模式
  7. EnvironmentFile=/usr/local/nginx/logs/nginx.pid ////PID存放路径
  8. ExecStart=/usr/local/nginx/sbin/nginx ///开启命令
  9. ExecReload=/usr/local/nginx/sbin/nginx -s reload ///重启命令
  10. ExecStop=/usr/local/nginx/sbin/nginx -s stop ///停止命令
  11. # We want systemd to give httpd some time to finish gracefully, but still want
  12. # it to kill httpd after TimeoutStopSec if something went wrong during the
  13. # graceful stop. Normally, Systemd sends SIGTERM signal right after the
  14. # ExecStop, which would kill httpd. We are sending useless SIGCONT here to give
  15. # httpd time to finish.
  16. PrivateTmp=true ///给服务分配临时空间
  17. [Install]
  18. WantedBy=multi-user.target ////服务用户的模式
  1. chmod +x nginx.service
  2. kill -9 123456 # kill掉之前的进程
  3. systemctl start nginx

加入service服务(不推荐,还有点bug)

  1. vi /etc/init.d/nginx
  2. 复制以下代码,成为service
  1. #!/bin/bash
  2. # nginx Startup script for the Nginx HTTP Server
  3. #
  4. # chkconfig: - 85 15
  5. # description: Nginx is a high-performance web and proxy server.
  6. # It has a lot of features, but it's not for everyone.
  7. # processname: nginx
  8. # pidfile: /var/run/nginx.pid
  9. # config: /usr/local/nginx/conf/nginx.conf
  10. ########### need to modify the path ###################
  11. nginxd=/usr/local/nginx/sbin/nginx
  12. nginx_config=/usr/local/nginx/conf/nginx.conf
  13. nginx_pid=/usr/local/nginx/nginx.pid
  14. # # ################################
  15. RETVAL=0
  16. prog="nginx"
  17. # Source function library.
  18. . /etc/rc.d/init.d/functions
  19. # Source networking configuration.
  20. . /etc/sysconfig/network
  21. # Check that networking is up.
  22. [ ${NETWORKING} = "no" ] && exit 0
  23. [ -x $nginxd ] || exit 0
  24. # Start nginx daemons functions.
  25. start() {
  26. if [ -e $nginx_pid ];then
  27. echo "nginx already running...."
  28. exit 1
  29. fi
  30. echo -n $"Starting $prog: "
  31. daemon $nginxd -c ${nginx_config}
  32. RETVAL=$?
  33. echo
  34. [ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
  35. return $RETVAL
  36. }
  37. # Stop nginx daemons functions.
  38. stop() {
  39. echo -n $"Stopping $prog: "
  40. killproc $nginxd
  41. RETVAL=$?
  42. echo
  43. [ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /var/run/nginx.pid
  44. }
  45. # reload nginx service functions.
  46. reload() {
  47. echo -n $"Reloading $prog: "
  48. $nginxd -s reload
  49. #if your nginx version is below 0.8, please use this command: "kill -HUP `cat ${nginx_pid}`"
  50. RETVAL=$?
  51. echo
  52. }
  53. # See how we were called.
  54. case "$1" in
  55. start)
  56. start
  57. ;;
  58. stop)
  59. stop
  60. ;;
  61. reload)
  62. reload
  63. ;;
  64. restart)
  65. stop
  66. start
  67. ;;
  68. status)
  69. status $prog
  70. RETVAL=$?
  71. ;;
  72. *)
  73. echo $"Usage: $prog {start|stop|restart|reload|status|help}"
  74. exit 1
  75. esac
  76. exit $RETVAL
  1. cd /etc/rc.d/init.d
  2. chmod +x nginx
  3. /sbin/chkconfig --level 345 nginx on
  4. 任何位置都能运行 service nginx start

配置阿里云的安全组

阿里云esc - 安全组 - 入方向 - 端口范围80/80
授权对象0.0.0.0/0

可以公网看到nginx

浏览器
公网地址
就可以看到nginx