1.基于域名[www.openlab.com](http://www.openlab.com)可以访问网站内容为 welcome to openlab!!!
1、挂载:通过光盘挂载
[root@localhost hh]# mount /dev/sr0 /mnt
2、配置yum源
[root@localhost hh]# vim /ect/yum.repos.d/base.repo
再配置中定义包的路径,定义源的连接和标符名称
[base] name=base baseurl=file:///mnt/BaseOS gpgcheck=0 [app] name=app baseurl=file:///mnt/AppStream gpgcheck=0
完成配置后点击Esc键,退出保存命令—— :wq
3、装包——装包工具——dnf
[root@localhost hh]# dnf install httpd -y
4、关闭防火墙和SELinux
[root@localhost hh]# systemctl stop firewalld
[root@localhost hh]# setenforce 0
5、更改配置文件
<Virtualhost *:443>
DocumentRoot /www
ServerName www.openlab.com
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/openlab.crt
SSLCertificateKeyFile /etc/pki/tls/private/openlab.key
</Virtualhost>
<Directory /www>
allowOverride none
Require all granted
</Directory>
6、写域名解析
[root@localhost ~]# vim /etc/hosts
192.168.101.200 www.openlab.com
7、创建目录
[root@localhost ~]# mkdir -pv /www/openlab
8、将welcome to openlab!!!写入/www/openlab/index.html
[root@localhost ~]# echo 'welcome to openlab!!!' > /www/openlab/index.html
9、重启hppd服务
[root@localhost ~]# systemctl restart httpd
[root@localhost ~]# setenforce 0
10、用curl测试
[root@localhost ~]# curl www.openlab.com
welcome to openlab!!!
2.给该公司创建三个子界面分别显示学生信息,教学资料和缴费网站,基于[www.openlab.com/student](http://www.openlab.com/student) 网站访问学生信息,[www.openlab.com/data](http://www.openlab.com/data)网站访问教学资料 [www.openlab.com/money网站访问缴费网站](http://www.openlab.com/money网站访问缴费网站)。
3.要求 (1)学生信息网站只有song和tian两人可以访问,其他用户不能访问。 (2)访问缴费网站实现数据加密基于https访问
创建三个目录/www/date,/www/money,/www/student,分别在他们下面创建一个index.html的文件,并在下面写点内容
进入编辑文件
<virtualhost *:443>
servername www.openlab.com
documentroot /www/openlab
alias /data /wwww/data
alias /student /wwww/student
alias /money /wwww/money
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/openlab.crt
SSLCertificateKeyFile /etc/pki/tls/private/openlab.key
</virtualhost>
<directory /www/openlab>
allowoverride none
require all granted
</directory>
<directory /wwww>
allowoverride none
require all granted
</directory>
<directory /wwww/student>
authtype basic
authname "pleaselogin:"
authuserfile /etc/httpd/mima
require user song tian
</directory>
money加密文章来源:https://www.toymoban.com/news/detail-417808.html
openssl req -utf8 -new -keyout /etc/pki/tls/private/openlab.key -x509 -days 365 -out /etc/pki/tls/certs/openlab.crt
#创建密码文件,创建用户song tian
[root@localhost ~]# htpasswd -c /etc/httpd/user song
New password:
Re-type new password:
Adding password for user song
[root@localhost ~]# htpasswd /etc/httpd/user tian 第二个不用加-c
New password:
Re-type new password:
Adding password for user tian
[root@localhost ~]#systemctl restart httpd 做完记得重启服务
最后在网站上输入查看一下就完成了文章来源地址https://www.toymoban.com/news/detail-417808.html
到了这里,关于RHCE-请给openlab搭建web网站的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!