CentOS搭建Nginx服务
2022/4/10 7:12:39
本文主要是介绍CentOS搭建Nginx服务,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
简书: https://www.jianshu.com/p/5c3938ce2cf6
1.官网下载
https://nginx.org/en/download.html
2.上传CentOS服务
略
3.解压
tar zxf nginx-1.21.6.tar.gz
4.configure:生成Makefile
cd nginx-1.21.6
编译并指定安装位置
./cofigure --prefix=/usr/local/nginx
错误解决
错误:"./configure: error: C compiler cc is not found" 解决:yum -y install gcc-c++
编译成功
nginx path prefix: "/usr/local/nginx" nginx binary file: "/usr/local/nginx/sbin/nginx" nginx modules path: "/usr/local/nginx/modules" nginx configuration prefix: "/usr/local/nginx/conf" nginx configuration file: "/usr/local/nginx/conf/nginx.conf" nginx pid file: "/usr/local/nginx/logs/nginx.pid" nginx error log file: "/usr/local/nginx/logs/error.log" nginx http access log file: "/usr/local/nginx/logs/access.log" nginx http client request body temporary files: "client_body_temp" nginx http proxy temporary files: "proxy_temp" nginx http fastcgi temporary files: "fastcgi_temp" nginx http uwsgi temporary files: "uwsgi_temp" nginx http scgi temporary files: "scgi_temp
5.编译
make
6.安装
make install
了解: configure, make, make install
https://www.cnblogs.com/python99/p/12242613.html
configure 这一步一般用来生成Makefile,为下一步的编译做准备,你可以通过在configure后加上参数来对安装进行控制,比如代码:./configure --prefix=/usr上面的意思是将谇软件安装在/usr下面,执行文件就会安装在/usr/bin,同时一些软件的配置文件你可以通过指定--sys-config=参数进行设定。有一些软件还可以加上--with, --enable, --without, --disable等参数对编译加以控制,你可以通过允许./configure --help查看详细的说明帮助。 make 这一步就是编译,大多数的源代码包都经过这一步进行编译,如果在make过程中出现error,可以向开发者提交bugreport(一般在install里有提交地址),或者你的系统少了一些依赖库等。make的作用是开始进行源代码编译,以及一些功能的提供,这些功能由它的Makefile设置文件提供相磁的功能。 make是Linux开发套件里面自动化编译的一个控制程序,他通过借助Makefile里面编写的编译规范进行自动化调用gcc、ld以及某些需要的程序进行编译的程序。 make install 进行安装(当然有些软件需要先运行make check或make test来进行一些测试)。如果原始代码编译无误,且执行结果正确,便可以把程序安装至系统预设的可执行文件存放路径。如果用bin_PROGRAMS宏的话,程序会被安装至/usr/local/bin这个目录,或者库文件拷贝到相应的目录下 make clean可以清除编译产生的可执行文件及目标文件。View Code
7.启动
cd /usr/local/nginx cd sbin ./nginx
8.开启、关闭防火墙
systemctl start firewalld systemctl stop firewalld
# 防火墙放行端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
# 重启防火墙
firewalld-cmd --reload
linux关闭防火墙与开启防火墙命令
https://www.cnblogs.com/goOJBK/p/15703960.html
9. 启动和关闭脚本 [nginx.service]
vi /usr/lib/systemd/system/nginx.service
nginx.service
[Unit] Description=nginx - web server After=network.target remote-fs.target nss-lookup.target [Service] Type=forking PIDFile=/usr/local/nginx/logs/nginx.pid ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf ExecReload=/usr/local/nginx/sbin/nginx -s reload ExecStop=/usr/local/nginx/sbin/nginx -s stop ExecQuit=/usr/local/nginx/sbin/nginx -s quit PrivateTmp=true [Install] WantedBy=multi-user.target
脚本操作
1.杀死进程
kill -quit <master pid>
2.重新加载nginx服务
systemctl daemon-reload nginx.service
3.启动,关闭,状态,进程
systemctl start nginx.service systemctl stop nginx.service systemctl status nginx.service systemctl status nginx ps -ef | grep nginx
这篇关于CentOS搭建Nginx服务的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-29Nginx发布学习:从入门到实践的简单教程
- 2024-10-28Nginx发布:新手入门教程
- 2024-10-21nginx 怎么设置文件上传最大20M限制-icode9专业技术文章分享
- 2024-10-17关闭 nginx的命令是什么?-icode9专业技术文章分享
- 2024-09-17Nginx实用篇:实现负载均衡、限流与动静分离
- 2024-08-21宝塔nginx新增8022端口方法步骤-icode9专业技术文章分享
- 2024-08-21nginx配置,让ws升级为wss访问的方法步骤-icode9专业技术文章分享
- 2024-08-15nginx ws代理配置方法步骤-icode9专业技术文章分享
- 2024-08-14nginx 让访问带有/relid的地址返回404 ,例子 /relid-x-0.36-y-131.html-icode9专业技术文章分享
- 2024-08-14nginx 判断地址有/statics/的路径,指向到/home/html/statics/目录-icode9专业技术文章分享