Rhce第三次作业

综合练习: 请给openlab搭建web网站,网站需求:
1.基于域名www.openlab.com可以访问网站内容为 welcome to openlab!!!

第一步:关闭selinux及防火墙然后安装httpd

第二步:在Windows中找到C:\Windows\System32\drivers\etc下hosts文件记事本打开

定位最后一行,输入以下内容 192.168.125.128 www.openlab.com

[root@server ~]# vim /etc/hosts 

Rhce第三次作业_第1张图片

第三步:创建文件并将所需内容填入到对应目录中

 结果:

Rhce第三次作业_第2张图片

 

2.给该公司创建三个子界面分别显示学生信息,教学资料和缴费网站,基于www.openlab.com/student 网站访问学生信息,www.openlab.com/data网站访问教学资料www.openlab.com/money 网站访问缴费网站

首先创建三个目录,并在对应的index.html写入内容

[root@server ~]# mkdir /www/openlab/student
[root@server ~]# mkdir /www/openlab/data
[root@server ~]# mkdir /www/openlab/money
[root@server ~]# echo student > /www/openlab/student/index.html
[root@server ~]# echo data > /www/openlab/data/index.html
[root@server ~]# echo money > /www/openlab/money/index.html
[root@server ~]# cat /www/openlab/student/index.html 


创建两个用户tian和song

[root@server ~]# htpasswd -c /etc/httpd/user song
New password: 
Re-type new password: 
Adding password for user song
[root@server ~]# htpasswd  /etc/httpd/user tian
New password: 
Re-type new password: 
Adding password for user tian


最后修改用户配置文件
[root@server ~]# vim /etc/httpd/conf.d/userdir.conf 

Rhce第三次作业_第3张图片
测试:

 Rhce第三次作业_第4张图片

Rhce第三次作业_第5张图片 

3.要求
(1) 学生信息网站只有song和tian两人可以访问,其他用户不能访问。
(2) 访问缴费网站实现数据加密基于https访问。

首先安装mod_ssl插件

[root@server ~]# yum install mod_ssl


在/etc/pki/tls/private 目录下生成私钥文件

[root@server ~]# cd /etc/pki/tls/private/
[root@server private]# ll
总用量 0
[root@server private]# openssl genrsa -aes128 2048 > money.key
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
在/etc/pki/tls/certs目录下新建证书
[root@server private]# cd /etc/pki/tls/certs/
[root@server certs]# openssl req -utf8 -new -key /etc/pki/tls/private/money.key -x509 -days 365 -out money.crt
Enter pass phrase for /etc/pki/tls/private/money.key:
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [XX]:86
State or Province Name (full name) []:shanxi
Locality Name (eg, city) [Default City]:xi'an
Organization Name (eg, company) [Default Company Ltd]:openlab
Organizational Unit Name (eg, section) []:RHCE
Common Name (eg, your name or your server's hostname) []:localhost
Email Address []:[email protected]
输入证书信息时,必须一次性写对,不能退格删除

主配置文件的编辑

/etc/httpd/conf.d/ssl.conf在结尾添加以下内容


        SSLEngine on
        SSLCertificateFile /etc/pki/tls/certs/money.crt
        SSLCertificateKeyFile /etc/pki/tls/private/money.key
        ServerName www.openlab.com
        DocumentRoot /www/openlab/money


        AllowOverride none
        Require all granted


最后重启http服务

[root@server conf.d]# systemctl restart httpd

结果:

Rhce第三次作业_第6张图片

 点击高级:

Rhce第三次作业_第7张图片

你可能感兴趣的:(运维)