linux Nginx安装与启动
在Linux系统中安装Nginx并启动它的步骤通常如下:
- 更新软件包索引:
sudo apt update
- 安装Nginx:
sudo apt install nginx
- 启动Nginx服务:
sudo systemctl start nginx
- (可选)设置Nginx开机自启:
sudo systemctl enable nginx
- 检查Nginx服务状态:
sudo systemctl status nginx
- (可选)通过浏览器访问Nginx默认页面,在地址栏输入服务器的IP地址。
请注意,上述命令适用于基于Debian的系统(如Ubuntu)。对于基于RPM的系统(如CentOS),你需要使用yum
或dnf
来安装软件包,并使用systemctl
来管理服务。
评论已关闭