centos nginx 编译安装
时间: 2024-08-12 18:04:30 浏览: 107
CentOS Nginx 的编译安装步骤如下:
1. **更新系统并安装依赖**:
```
sudo yum update -y
sudo yum install gcc openssl-devel pcre-devel zlib-devel epel-release -y
```
2. **下载 Nginx 源码**:
```
wget https://nginx.org/download/nginx-1.x.y.tar.gz # 将 x.y.z 替换为你需要的具体版本
```
3. **解压源码包**:
```
tar zxf nginx-1.x.y.tar.gz
cd nginx-1.x.y
```
4. **配置编译选项(可选,例如自定义安装路径)**:
```
./configure --prefix=/path/to/your/nginx-installation
```
5. **编译并安装**:
```
make
sudo make install
```
6. **启动 Nginx**:
```
sudo systemctl start nginx
sudo systemctl enable nginx # 设置开机自动启动
```
7. **验证安装**:
打开浏览器访问 `http://localhost` 或者你的服务器IP地址,如果看到默认的欢迎页面,说明 Nginx 安装成功。
相关问题
centos7.6编译安装nginx
好的,我可以为您提供一些简单的步骤:
1. 下载 nginx
您可以从 nginx 官网上下载最新版本的 nginx。下载地址为:http://nginx.org/en/download.html
2. 安装依赖
在编译 nginx 之前,需要安装一些必要的依赖项。您可以使用以下命令安装:
yum install -y gcc gcc-c++ make zlib-devel pcre-devel openssl-devel
3. 解压 nginx
将下载的 nginx 压缩包解压到指定的目录中,可以使用以下命令:
tar zxvf nginx-1.18.0.tar.gz
cd nginx-1.18.0
4. 配置 nginx
在编译之前,需要配置 nginx。您可以使用以下命令进行配置:
./configure --prefix=/usr/local/nginx --with-http_stub_status_module
这里我们将 nginx 安装到 /usr/local/nginx 目录下,并且启用了 http_stub_status_module 模块。
5. 编译和安装 nginx
使用以下命令进行编译和安装 nginx:
make && make install
6. 配置 nginx
安装完成后,您需要配置 nginx 的配置文件。默认的配置文件位于 /usr/local/nginx/conf/nginx.conf。您可以根据您的需求进行修改。
7. 启动 nginx
使用以下命令启动 nginx:
/usr/local/nginx/sbin/nginx
可以使用以下命令停止 nginx:
/usr/local/nginx/sbin/nginx -s stop
以上就是简单的 CentOS 7.6 编译安装 nginx 的步骤。希望对您有帮助!
centos7.9 编译安装nginx
好的,下面是centos7.9编译安装nginx的步骤:
1. 安装编译nginx所需的依赖库:
```
yum install -y gcc gcc-c++ autoconf automake zlib zlib-devel openssl openssl-devel pcre pcre-devel libxml2 libxml2-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxslt libxslt-devel gd gd-devel perl perl-devel perl-ExtUtils-Embed
```
2. 下载nginx源码包:
可以到官网(https://nginx.org/en/download.html)下载最新的稳定版nginx源码包。
3. 解压源码包:
```
tar zxvf nginx-xxx.tar.gz
```
4. 进入nginx源码目录,执行以下命令进行编译和安装:
```
./configure --with-http_stub_status_module --with-http_ssl_module
make && make install
```
其中,--prefix参数指定nginx安装目录,--with-http_stub_status_module参数启用状态页模块,--with-http_ssl_module参数启用SSL加密支持。
5. 配置nginx:
进入/usr/local/nginx/conf目录,编辑nginx.conf文件,进行配置。这里给出一个简单的配置文件示例:
```
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /usr/local/nginx/conf/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 /var/log/nginx/access.log main;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root /usr/local/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/local/nginx/html;
}
}
server {
listen 443 ssl;
server_name localhost;
ssl_certificate /usr/local/nginx/conf/server.crt;
ssl_certificate_key /usr/local/nginx/conf/server.key;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
location / {
root /usr/local/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/local/nginx/html;
}
}
}
```
其中,listen参数指定监听端口,server_name参数指定域名,root参数指定网站根目录,ssl_certificate和ssl_certificate_key参数指定SSL证书和私钥文件路径。
6. 启动nginx:
进入/usr/local/nginx/sbin目录,执行以下命令启动nginx:
```
./nginx
```
7. 检查nginx是否启动成功:
执行以下命令查看nginx进程是否存在:
```
ps -ef | grep nginx
```
执行以下命令检查nginx监听的端口是否打开:
```
netstat -tlnp | grep nginx
```
如果输出类似以下内容,则说明nginx已经成功安装并启动:
```
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN xxxx/nginx
tcp 0 0 :::443 :::* LISTEN xxxx/nginx
```
阅读全文