Ubuntu 18 nginx 安装配置命令

Ubuntu 18  nginx 安装配置命令

sudo apt install nginx

安装完成后,请检查Nginx服务的状态和版本:
sudo systemctl status nginx


配置防火墙
如果您正在运行防火墙,则还需要打开端口80和443。
sudo ufw allow 'Nginx Full'


使用systemctl管理Nginx服务
您可以像任何其他systemd单位一样管理Nginx服务。 要停止Nginx服务,请运行:
sudo systemctl stop nginx
要再次启动,请键入:
sudo systemctl start nginx
重新启动Nginx服务:
sudo systemctl restart nginx
在进行一些配置更改后重新加载Nginx服务:
sudo systemctl reload nginx
如果你想禁用Nginx服务在启动时启动:
sudo systemctl disable nginx
并重新启用它:
sudo systemctl enable nginx


/etc/nginx/sites-enabled

报错原因:您已经有一个绑定到HTTP端口80的进程。您可以运行命令

sudo lsof -i:80

以使用该端口获取进程列表,然后停止/禁用Web服务器。
解决方案:您可以运行命令来停止使用端口80

sudo fuser -k 80 / tcp

的进程

cat filename | tail -n 100 显示文件最后100行
cat filename | head -n 100 显示文件前面100行
cat filename | tail -n +100 从100行开始显示,显示100行以后的所有行

 

你可能感兴趣的:(记录)