本实验需要测试在物理机实现访问web 界面
在红帽6 里:
1.安装httpd 和httpd-manual服务
yum -y install httpd httpd-manual --nogpgcheck
2.系统启动:
chkconfig httpd on
3.启动服务:
service httpd start
4.备份:
cd /etc/httpd/conf
cp httpd.conf httpd.conf.bak
5.编辑文件:
vi httpd.conf
Order allow,deny
Allow from 10.1.1.1(仅主机模式;查看物理机VM1的地址)
6.编辑文件:
vi /var/www/html/index.html
<color=red><h1>I want to be successful!!!</h1>
7.启动火狐:
firefox 10.1.1.212
8.防火墙放行80端口:
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
9.查看80 端口的访问:
iptables -L
10.重启服务:
service httpd restart
如果在物理机访问不到10.1.1.212
就把防火墙刷空:iptables -F(临时解决)
就可以访问10.1.1.212 的网页了
在另一台Centos7中就无法登陆
11.增加一个新窗口进入:
cd /var/www/html
ls
12.访问网页需要用户名的密码:
修改文件:
vi httpd.conf
AllowOverride ALL
13.重启服务:
service httpd restart
编辑:
cd html
vi .htaccess
AuthName "Pleas input your name&paswword"
AuthType Basic
AuthUserFile /var/www/html/.htpasswd
require valid-user
14.创建一个账户:
htpasswd -c /var/www/html/.htpasswd aaa
New password:
Re-type new password:
Adding password for user aaa
15.在物理机测试: