准备工作
- 创建Vultr服务器
- 连接到服务器
安装Apache
- 更新系统:
sudo yum update
- 安装Apache:
sudo yum install httpd
- 启动Apache服务:
sudo systemctl start httpd
配置防火墙
- 开放HTTP端口:
sudo firewall-cmd --permanent --add-port=80/tcp
- 重载防火墙:
sudo firewall-cmd --reload
设置开机自启
sudo systemctl enable httpd
创建网页
- 进入网页目录:
cd /var/www/html
- 创建HTML文件:
sudo vi index.html
访问网站
- 在浏览器中输入服务器IP地址
FAQ
如何重启Apache服务?
- 使用指令
sudo systemctl restart httpd
如何查看Apache状态?
- 使用指令
sudo systemctl status httpd
如何关闭防火墙?
- 使用指令
sudo systemctl stop firewalld
正文完