1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| yum install -y yum-utils yumdownloader --assumeyes --destdir=/root/pkg/httpd --resolve httpd
yum install -y --cacheonly --disablerepo=* /root/pkg/httpd/*.rpm systemctl start httpd systemctl enable httpd
vi /etc/httpd/conf/httpd.conf Listen 8001 systemctl stop httpd & systemctl start httpd
mkdir -p /var/www/html/centos77 mount -o loop /root/iso/CentOS-7-x86_64-DVD-1908.iso /var/www/html/centos77/
http://10.10.51.77:8001/centos77
|