Linux安装Nginx并配置启动命令

article/2025/8/31 18:24:05

安装前准备工作

因为Nginx依赖于gcc的编译环境,所以,需要安装编译环境来使Nginx能够编译起来

yum install gcc-c++

Nginx的http模块需要使用pcre来解析正则表达式,需要安装pcre

yum install -y pcre pcre-devel

安装依赖的解压包

yum install -y zlib zlib-devel

ssl 功能需要 openssl 库,安装 openssl

yum install -y openssl openssl-devel

下载Nginx

可以自己建立一个包,将nginx下载到这个路径,我设置的路径/opt/crm/nginx
如果需要其他nginx版本的可以参考 nginx仓库

wget http://nginx.org/download/nginx-1.10.2.tar.gz

下载完之后解压

tar zxvf nginx-1.10.2.tar.gz

进入到解压之后的nginx目录

[root@localhost src]# cd nginx-1.10.2
[root@localhost nginx-1.10.2]# ./configure && make && make install

如果要使用ssl

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module

注意:如果配置了ssl,检查配置文件时报错

nginx -t
nginx:[emerg]unknown directive ssl错误去到nginx安装的目录
./configure --with-http_ssl_module注意要把新生成的文件复制到对应目录
cp objs/nginx /usr/local/nginx/sbin/nginx显示成功就搞定
[root@iZ2ze02hshpth1x0vxo8r6Z sbin]# ./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@iZ2ze02hshpth1x0vxo8r6Z sbin]# 

安装完之后查看安装目录

[root@izbp10k7vskcf4soxxbp5gz /]# whereis nginx
nginx: /usr/local/nginx
[root@izbp10k7vskcf4soxxbp5gz /]# 

通过查找文件名方式

[root@izbp10k7vskcf4soxxbp5gz /]# find / -name nginx
/opt/crm/nginx
/opt/crm/nginx/nginx-1.10.2/objs/nginx
/usr/local/nginx
/usr/local/nginx/sbin/nginx
[root@izbp10k7vskcf4soxxbp5gz /]# 

直接执行

[root@izbp10k7vskcf4soxxbp5gz /]# /usr/local/nginx/sbin/nginx
[root@izbp10k7vskcf4soxxbp5gz /]# ps -ef | grep nginx
root      4666     1  0 09:32 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody    4667  4666  0 09:32 ?        00:00:00 nginx: worker process
root      5028 29443  0 09:40 pts/0    00:00:00 grep --color=auto nginx
[root@izbp10k7vskcf4soxxbp5gz /]# 

在浏览器输入服务器IP地址
在这里插入图片描述

增加systemctl命令方式启动

直接启动和关闭nginx的方式

启动nginx的命令为     /usr/local/nginx/sbin/nginx  
停止nginx的命令为    /usr/local/nginx/sbin/nginx -s stop
重启nginx的命令为    /usr/local/nginx/sbin/nginx -s reload

配置方式 去到/usr/lib/systemd/system/目录新建一个nginx服务,给予执行权限

vim /usr/lib/systemd/system/nginx.service
chmod +x /usr/lib/systemd/system/nginx.service

打开文件nginx.service新建内容

[Unit]                                                                                      
Description=nginx - high performance 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 

保存之后重载Ststemctl命令

在启动服务之前,需要先重载systemctl命令
systemctl daemon-reload

配置完之后

systemctl status nginx
systemctl start nginx
systemctl stop nginx
systemctl restart nginx

附上配置

#user  nobody;
worker_processes  1;#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;#pid        logs/nginx.pid;events {worker_connections  65535;
}http {include       mime.types;default_type  application/octet-stream;#log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '#                  '$status $body_bytes_sent "$http_referer" '#                  '"$http_user_agent" "$http_x_forwarded_for"';#access_log  logs/access.log  main;sendfile        on;#tcp_nopush     on;#keepalive_timeout  0;keepalive_timeout  65;gzip    on;#允许压缩的最小字节数gzip_min_length 1k;#4个单位为16k的内存作为压缩结果流缓存gzip_buffers 4 16k;#设置识别HTTP协议版本,默认是1.1gzip_http_version 1.1;#gzip压缩比,可在1~9中设置,1压缩比最小,速度最快,9压缩比最大,速度最慢,消耗CPUgzip_comp_level 2;#压缩的类型gzip_types text/plain application/x-javascript text/css application/xml;#让前端的缓存服务器混村经过的gzip压缩的页面gzip_vary   on;# 配置转发到8700 端口upstream  huida{server  127.0.0.1:8700;}server {listen       80;listen       443 ssl;  					 # 配置https,监听433端口server_name  xxx.xxx;                    # 注意如果申请了域名配置再此,如果配置了证书才能https访问error_page 405 =200 $request_uri;ssl_certificate  cert/7629385.pem;ssl_certificate_key cert/7629385.key;client_max_body_size 50m;underscores_in_headers on;proxy_set_header Host      $host;proxy_set_header  X-Real-IP        $remote_addr;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;index index.htm index.html index.php;proxy_connect_timeout 60; #建立tcp协议的连接时间proxy_send_timeout 60;    #发送接口的时间proxy_read_timeout 60;    #读取时间(接口响应时间)#charset koi8-r;#access_log  logs/host.access.log  main;# 配置转发location /huida/ {add_header 'Access-Control-Allow-Origin' '*';add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Token';add_header 'Access-Control-Expose-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Token';proxy_pass http://huida;}location / {root   /home/html/huida/;index  index.html index.htm;}#静态文件交给nginx处理 代理前端静态资源location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|ioc|rar|zip|txt|flv|mid|doc|ppt|pdf|xls|mp3|wma)${root /home/html/huida/;expires 12;}#静态文件交给nginx处理location ~ .*\.(js|css)?${root /home/html/huida/;expires 15d;}#error_page  404              /404.html;# redirect server error pages to the static page /50x.html#error_page   500 502 503 504  /50x.html;location = /50x.html {root   html;}# proxy the PHP scripts to Apache listening on 127.0.0.1:80##location ~ \.php$ {#    proxy_pass   http://127.0.0.1;#}# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000##location ~ \.php$ {#    root           html;#    fastcgi_pass   127.0.0.1:9000;#    fastcgi_index  index.php;#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;#    include        fastcgi_params;#}# deny access to .htaccess files, if Apache's document root# concurs with nginx's one##location ~ /\.ht {#    deny  all;#}}# another virtual host using mix of IP-, name-, and port-based configuration##server {#    listen       8000;#    listen       somename:8080;#    server_name  somename  alias  another.alias;#    location / {#        root   html;#        index  index.html index.htm;#    }#}# HTTPS server##server {#    listen       443 ssl;#    server_name  localhost;#    ssl_certificate      cert.pem;#    ssl_certificate_key  cert.key;#    ssl_session_cache    shared:SSL:1m;#    ssl_session_timeout  5m;#    ssl_ciphers  HIGH:!aNULL:!MD5;#    ssl_prefer_server_ciphers  on;#    location / {#        root   html;#        index  index.html index.htm;#    }#}}

解决nginx:unknown directive ssl错误


http://chatgpt.dhexx.cn/article/3k6qs8Vh.shtml

相关文章

nginx启动命令以及与配置systemctl

一.配置systemctl之前的启动方式 进入sbin目录下执行以下命令: 1 启动nginx的命令为 /usr/local/nginx/sbin/nginx 2 3 停止nginx的命令为 /usr/local/nginx/sbin/nginx -s stop 4 重启nginx的命令为 /usr/local/nginx/sbin/nginx -s reload 二.配置sys…

nginx启动命令和停止命令

进入nginx的sbin目录下 cd /usr/local/nginx/sbin/ 1、启动nginx ./nginx 2、停止nginx两种方式 #待nginx进程处理任务完毕进行停止。 ./nginx -s quit #先查出nginx进程id再使用kill命令强制杀掉进程。 ./nginx -s stop 3、查看nginx端口 ps aux|grep nginx 4、查看ng…

Nginx服务的启动和停止

使用Nginx的过程中,我们可能总是需要修改nginx配置文件,然后不停地启动或者停止nginx服务。 这里简单讲一下nginx的相关命令行。 找到nginx的安装路径 whereis nginx 此文章 /usr/local/nginx/sbin/ 是我本地nginx的安装路径 一、启动nginx服务 在…

Nginx常用命令(启动、重启、关闭、检查)

提示:我的nginx安装目录为:/usr/local/nginx 一、Nginx自身命令 1.启动 #启动 #1.直接启动 #进入nginx目录,执行启动命令 cd /usr/local/nginx/sbin ./nginx # 或者直接 /usr/local/nginx/sbin/nginx #2.指定配置文件方式启动 #进入nginx…

Python 开发环境Spyder介绍 【初学者友好】

好久没发基础类文章啦! 今天来发一个—— Spyder简介 Spyder (前身是 Pydee) 是一个强大的交互式 Python 语言开发环境, 提供高级的代码编辑、交互测试、调试等特性, 支持包括 Windows、Linux 和 OS X 系统。 菜单栏(Menu bar…

Spyder安装教程只需三步_保姆式无基础 2020/11/7最新版

Spyder安装教程只需三步——保姆式无基础 2020/11/7最新版 Spyder较适合数据分析流&#xff0c;界面与Rstudio相似。如从事非数据分析流工作不建议安装Spyder,可以搜索<python开发环境>关键词选择其他开发环境。 看了目前的Spyder安装教程&#xff0c;有些看不懂有些太复…

Python IDE Spyder的简单介绍

最近深度学习发展非常迅猛&#xff0c;大有一统江湖的趋势。经过一段时间学习&#xff0c;发现自己对这种神奇的玄学非常感兴趣&#xff0c;希望能够进一步的研究。而这种研究性学科单纯地看论文比较难以明白&#xff0c;所以希望能够跟进大牛们写的代码深入学习。我发现很多大…

Python下Spyder安装方法

1.下载spyder ide&#xff0c;网址如下&#xff1a; https://bitbucket.org/spyder-ide/spyderlib/downloads/ 进行正常的安装即可&#xff0c;没有什么特别需要注意的地方&#xff1b; 2.安装后&#xff0c;运行桌面的快捷方式&#xff0c;发现报错&#xff0c;错误如下&…

spyder使用笔记

问题1&#xff1a;spyder无法调试 具体现象&#xff1a;可正常运行程序&#xff0c;点击调试后卡在第一行&#xff0c;点击下一步无反应&#xff0c;不能调试 spyder4.1.8、spyder5.1.5都出现这样的问题 原因&#xff1a;spyder软件本身的问题&#xff0c;GitHub上有人提出了…

Spyder控制台的简单使用

看前提示&#xff1a;笔者仅是刚刚接触Spyder和Python&#xff0c;使用方法仅局限于表面。刚开始的界面&#xff1a; 在In [1]: 后输入a input() 然后按下回车键 这里光标处可以输入你想给a赋的值&#xff0c;举个例子&#xff1a;给a复制1024 再按下回车键&#xff1a; 之…

spyder配置文件位置及使用说明

spyder配置文件所在位置C:\Users\extra\.spyder-py3\config\spyder.ini edge_line_columns 140&#xff08;允许的中最大行数&#xff0c;默认值为79&#xff09; 在软件的工具>偏好设置>代码补全>代码风格与格式化&#xff0c;这里设置没有效果。只能通过更改配置文…

如何使用Spyder新建/打开一个python的项目

关于python的集成开发环境有很多种&#xff0c;比如PyCharm&#xff0c;Spyder等。楼主在初学python时使用的是Spyder&#xff0c;在打开项目时遇到一点小问题&#xff0c;记录一下解决方法。。 首先在想试用Spyder新建项目时&#xff0c;习惯性的选择了工具栏中的“File”&…

win10 spyder安装教程(不使用anaconda)

前言 环境所趋&#xff0c;迫不得已在家科研。之前在学校都是用的实验室的电脑&#xff0c;自己的笔记本一直没有安装python&#xff0c;spyder。 实验室电脑的spyder是通过anaconda安装的&#xff0c;按照默认的一直next就可以了。看到我这篇教程的肯定是不想通过anaconda的。…

安装spyder

在安装好python3.7的基础上&#xff0c;安装spyder。 打开网址https://pypi.python.org/pypi/spyder&#xff0c;下载里面最新的源码zip包(或者.tar.gz包)&#xff0c;如下图所示&#xff1a; 安装好后&#xff0c;解压&#xff0c;我是放在了当初下载Python安装包时的文件夹中…

学习使用spyder(python IDE)

哪里有spyder呢&#xff1f;Where can we download it? 在"winpython"这个安装包里面&#xff0c;集成的有一个spyder&#xff0c;可以单独运行。&#xff08;windows&#xff09; F6:运行配置对话框 Execute in current Python or IPython interpreter&#xff…

Spyder的使用

Spyder的使用 文章目录 Spyder的使用备注&#xff1a;1、代码编写方面2、帮助文档方面&#xff08;第三方库&#xff09; 以下是spyder的一些使用说明&#xff1a;1、注释2、代码提示&#xff08;&#xff09;3、运行代码4、清缓存5、格式化代码6、查看函数的帮助文档&#xff…

Spyder简易使用说明

Spyder的功能比较多&#xff0c;这里仅介绍一些常用的功能和技巧&#xff1a; 1、关于代码编写时的功能&#xff1a; 在控制台中&#xff0c;可以按Tab按键进行自动补全。在变量名之后输入“?”&#xff0c;可以在“Object inspector”窗格&#xff08;有的版本是he…

Spyder使用和调试方法

Anaconda——Spyder&#xff0c;Python的调试工具&#xff0c;简单介绍其使用和调试方法&#xff0c;方便初学者使用。 1 Code Cell 代码块可以单独运行&#xff0c;由以下符号为分割点&#xff1a; (1) #%% (标准的cell分割符) (2) # %% (Eclipse编辑器中的标准的cell分割符…

spyder的学习及使用(一)

一、numpy、scipy、matplotlib、pandas 1.numpy numpy是python科学计算中的基础包之一&#xff0c;它的功能包括多维数组、高级数学函数&#xff08;比如线性代数运算和傅里叶变换&#xff09;&#xff0c;以及为随机生成器。numpyi数组是基本数据结构&#xff0c;numpy的核心…

spyder4使用和调试教程

首先&#xff0c;spyder4.x比较spyder3.x强大很多了&#xff0c;ui等各方面也好很多。这篇文章以我平时比较常用的spyder4.1.2、4.1.5为例&#xff0c;分享一些使用spyder4.0使用和调试过程中的一些心得。 本文分为两个部分&#xff1a;第一部分&#xff0c;介绍spyder4的强大…