1.首先在以下目录添加nginx源,nginx源在nginx官网可以下载。
/etc/yum.repos.d
2.其次yum更新缓存
yum makecache
3.接着安装nginx
sudo yum install nginx
4.附件nginx 1.24源,文件名为nginx.repo
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
5.其他问题
ps aux | grep nginx -- 查看nginx 运行用户
/var/log/nginx/ ---查看nginx错误日志目录
chown -R root:root 目录名 -- 设置目录的所有者,所属的组
chmod -R 777 目录名 ----设置目录的权限
nginx -s reload --重新加载nginx配置文件
systemctl stop/start nginx --启动和关闭nginx
2.关于nginx反向代理,因为vue项目中要将后端请求api替换为其他端口,进行了如下设置,具体原理暂时不懂,或许是root 后面路径最后有一个反斜杠和location api后面的一个反斜杠不能同时出现吧。
server {
listen 8001;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
location /api {
proxy_pass http://localhost:8000;
}
}
3.关于rhel 9 yum源的问题。我使用了阿里镜像,按照要求对baseurl进行更改,但是始终无法使用yum install nginx 成功安装nginx 或者其他yum-utils gcc等类似包。
https://mirrors.aliyun.com/epel/ ---阿里镜像
yum install -y https://mirrors.aliyun.com/epel/epel-release-latest-8.noarch.rpm --- epel配置包,安装这个离线包后会自动生成三个*.repo文件。
mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.backup ---备份镜像。
mv /etc/yum.repos.d/epel-testing.repo /etc/yum.repos.d/epel-testing.repo.backup