nginx:
查看配置文件:sudo find / -name nginx.conf
配置文件:/etc/nginx/nginx.conf
检查nginx.conf文件正确性 nginx -t -c /path/to/nginx.conf 或者 有nginx命令执行 nginx -t
查找nginx 可执行文件:which nginx
/usr/sbin/nginx
-
安装Nginx:
使用yum install -y nginx
命令安装Nginx。 -
启动Nginx:
使用sudosystemctl start nginx
命令启动Nginx服务。 -
设置开机自启:
使用sudosystemctl enable nginx
命令设置Nginx开机自启。
查看nginx服务单元文件:sudo systemctl cat nginx
启动nginx: sudo systemctl start nginx
重启服务:可以使用service命令也可以使用nginx命令-》进入nginx服务目录执行 sudo ./nginx -s reload ,或者已经有nginx命令执行 sudo nginx -s reload
redis:
查看服务路径:which redis-server
/usr/bin/redis-server
查看redis 配置:sudo find / -name redis.conf
/etc/redis.conf
重启redis:sudo systemctl restart redis ,也可以指定文件启动 redis-server etc/redis.conf
-- ---------------------------- 转发 ----------------
nginx.conf 配置反向地址