nmtui--------------------------------------------添加几个地址
nmcli connection up ens160--------------------------读取网卡配置
ip a----------------------------查看地址是否添加成功
vim /etc/yum.repos.d/base.repo-----写仓库
mount /dev/sr0 /mnt----------------挂载
yum install httpd -y---------装包
vim /etc/httpd/conf.d/haha.conf-----------写配置
systemctl enable httpd --now-----------------------启服务并且立即启动
systemctl stop firewalld.service ------关闭防火墙
systemctl disable firewalld.service ------防火墙不开机自启动
setenforce 0 ------关闭selinux
cd /---------------------切换到/A
mkdir /A------------------创建目录
echo this is 100 > /A/index.html--------------将内容写入index.html文件
systemctl restart httpd---------重启服务
搭建静态网站——基于http的静态网站,访问该服务器时显示“this is100”
于 2022-03-13 22:16:37 首次发布