一、搭建静态网站——基于https协议的静态网站
1.配置使用ssl完成https访问apache服务器
mod_ssl是一种以openssl 的工具箱为基础专门为apache webserver 提供密码保护的软件。
首先下载mod_ssl,下载完成后会有一个ssl.conf的文件
[root@localhost ~]# yum install mod_ssl -y
现在为了实现,需要一个ssl要访问的目录,及目录下需要一个index.html文件
[root@good myssl]# echo "this is my first https page" > index.html
接下来配置权限及虚拟主机
[root@good conf.d]# vim myssl.conf
配置完成后重启httpd服务
[root@good conf.d]# systemctl restart httpd
通过浏览器访问或者curl --insecure https://IP地址
[root@good cgi-bin]# vim test.cgi
2.配置访问apache的cgi程序
[root@good conf.d]# cd /var/www/cgi-bin/
配置文件
[root@good cgi-bin]# vim test.cgi
然后用浏览器访问
https://192.168.109.129/cgi-bin/test.cgi
发现访问错误,是因为test.cgi 没有权限所以需要加一个权限
chmod +x test.cgi
https://192.168.109.129/cgi-bin/test.cgi发现访问成功
二、NFS的使用
首先下载所需要的软件
[root@localhost ~]# yum install rpcbind [root@localhost ~]# yum install nfs-utils
1.nfs挂载
a、开放/nfs/shared目录,供所有用户查询资料;
服务器创建/nfs/shared目录
[root@good ~]# mkdir nfs [root@good ~]# cd nfs [root@good nfs]# mkdir shared
服务器编辑 /etc/exports供所有用户查询
[root@good nfs]# vim /etc/exports
重启nfs
[root@good nfs]# systemctl restart nfs-server
客户端创建文件
[root@client ~]# mkdir client [root@client ~]# cd client [root@client client]# mkdir shuju
检测是否可以showmount
1.服务器自我检测
[root@good nfs]# showmount -e 192.168.109.129
2.客户端showmount
[root@rhce ~]# showmount -e 192.168.109.129
客户端挂载
服务器端在/nfs/shared添加内容,客户端可以在/data下看到。
1.在服务器创建
2.客户端查看