RHCE---给openlab搭建web网站

作业:请给openlab搭建web网站
网站需求:
1.基于域名 www.openlab.com 可以访问网站内容为 welcome to openlab!!!
2.给该公司创建三个子界面分别显示学生信息,教学资料和缴费网站,
1、基于 www.openlab.com/student 网站访问学生信息,
2、基于 www.openlab.com/data 网站访问教学资料
3、基于 www.openlab.com/money 网站访问缴费网站。
3.要求
(1)学生信息网站只有 song 和 tian 两个用户可以访问,其他用户不能访问。
(2)访问缴费网站实现数据加密基于 https 访问。

  1. 搭建web网站
    1  cd /etc/yum.repos.d/
    2  vim rpm.repo
    3  mount /dev/sr0 /mnt/
    4  cd 
    5  yum install httpd -y
    6  mkdir -pv /www/openlab
    7  vim /etc/hosts
    8  echo welcome to openlab ! > /www/openlab/index.html
    9  systemctl restart httpd
   10  cd /etc/httpd/conf.d
   11  vim vhost.conf
   12  systemctl restart httpd
   13  setenforce 0
   14  firewall-cmd --permanent --add-service=http
   15  firewall-cmd --reload 

此步骤相关配置文件如下:
RHCE---给openlab搭建web网站_第1张图片
在这里插入图片描述
RHCE---给openlab搭建web网站_第2张图片
RHCE---给openlab搭建web网站_第3张图片

  1. 创建三个子界面
[root@localhost ~]# mkdir /www/openlab/student
[root@localhost ~]# mkdir /www/openlab/data
[root@localhost ~]# mkdir /www/openlab/money
[root@localhost ~]# echo welcome to openlab of student ! > /www/openlab/student/index.html
[root@localhost ~]# echo welcome to openlab of data ! > /www/openlab/data/index.html
[root@localhost ~]# echo welcome to openlab of money ! > /www/openlab/money/index.html
[root@localhost ~]# cat /www/openlab/student/index.html
welcome to openlab of student !
[root@localhost ~]# cat /www/openlab/data/index.html
welcome to openlab of data !
[root@localhost ~]# cat /www/openlab/money/index.html
welcome to openlab of money !
[root@localhost ~]# 

  1. 加密
   33  htpasswd -c /etc/httpd/user song
   34  htpasswd /etc/httpd/user tian
   35  cd /etc/httpd/conf.d
   36  vim vhost.conf
   37  systemctl restart httpd
   40  dnf install mod_ssl
   41  cd /etc/pki/tls/certs/
   42  openssl genrsa > jiami.key
   43  openssl req -utf8 -new -key jiami.key -x509 -days 100 -out jiami.crt
   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]:xian
Organization Name (eg, company) [Default Company Ltd]:xianopen
Organizational Unit Name (eg, section) []:rhce
Common Name (eg, your name or your server's hostname) []:www.openlab.com
Email Address []:admin
   44  mv jiami.key ../private/
   45  cd /etc/httpd/conf.d
   46  vim vhost.conf
   47  systemctl restart httpd
   48  setenforce 0
   49  firewall-cmd --permanent --add-service=https
   50  firewall-cmd --reload 
   51  vim vhost.conf
   52  systemctl restart httpd

RHCE---给openlab搭建web网站_第4张图片
测试结果
RHCE---给openlab搭建web网站_第5张图片

RHCE---给openlab搭建web网站_第6张图片
RHCE---给openlab搭建web网站_第7张图片
RHCE---给openlab搭建web网站_第8张图片
RHCE---给openlab搭建web网站_第9张图片
RHCE---给openlab搭建web网站_第10张图片
RHCE---给openlab搭建web网站_第11张图片

你可能感兴趣的:(运维,服务器,html,web)