码迷,mamicode.com
首页 > 系统相关 > 详细

Linux CentOS8 安装 Nginx

时间:2020-12-24 11:48:26      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:安装   window   站点   top n   文件   top   expr   system   nginx安装   

使用 yum 直接安装:

yum install nginx

运行完成会出现 Complete! 表示安装成功。

Linux sudo 命令以系统管理者的身份执行指令,也就是说,经由 sudo 所执行的指令就好像是 root 亲自执行。
我都是使用root账号直接操作的,非root账号的朋友可以带上 sudo。

启用并启动Nginx服务:

sudo systemctl enable nginx
sudo systemctl start nginx

停止服务:

sudo systemctl stop nginx

要验证服务是否正在运行,检查其状态:

sudo systemctl status nginx

安装完后访问我们的站点即可看到红白色的

Welcome to nginx on Red Hat Enterprise Linux!

不得不说比Windows的看起来有排面多了。

然后需要改配置。。给我愁的,搞了半天没找到装在哪里了。

查看nginx安装目录

Linux 中的 ps 命令是 Process Status 的缩写。ps命令用来列出系统中当前运行的那些进程。
| 符号,是个管道符号,表示ps 和 grep 命令同时执行;
grep 命令是查找(Global Regular Expression Print),能使用正则表达式搜索文本,然后把匹配的行显示出来;

输入命令

ps  -ef | grep nginx

返回结果包含了安装目录 :

root      344802       1  0 09:08 ?        00:00:00 nginx: master process /usr/sbin/nginx
nginx     344803  344802  0 09:08 ?        00:00:00 nginx: worker process
root      392857  392766  0 15:04 pts/1    00:00:00 grep --color=auto nginx

但是我发现这里没有配置文件 - -

查看nginx.conf配置文件目录

输入命令

nginx -t

返回结果包含配置文件目录
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

这样就找到了配置文件所在的位置,更改即可。
改完之后不要忘记重启一下

ngins -s reload

Linux CentOS8 安装 Nginx

标签:安装   window   站点   top n   文件   top   expr   system   nginx安装   

原文地址:https://www.cnblogs.com/Aaxuan/p/14159396.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!