欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linux 之 数据库基本操作

程序员文章站 2024-03-22 12:25:34
...

一、代理访问

1、正向代理:可以上网的主机把内容缓存到本地让没有网络的的主机通过查看其缓存达到可以上网
真机 (172.25.254.66)可以上网 虚拟机(172.25.254.129)不可以上网

[root@foundation66 ~]# yum install squid -y
[root@foundation66 ~]# vim /etc/squid/squid.conf

Linux 之 数据库基本操作

[root@foundation66 ~]# systemctl restart squid
[root@foundation66 ~]# systemctl start squid

Linux 之 数据库基本操作

在虚拟机的火狐浏览器中,Edit > Preferences > Advanced > Network > Settings

Linux 之 数据库基本操作

再在地址栏输入: www.baidu.com

Linux 之 数据库基本操作

2、反向代理:在正向代理的基础上,如果人人都去访问可以上网的那台服务器,势必会造成网络拥堵,所以为了解决这个问题,我们在可以加入服务器(这里做实验是虚拟机)。新建的服务器相当于是我们和主服务器的中介,新建的服务器连接到主服务器,我们通过访问距离我们近的新建的服务器到达查看主服务器的内容的目的。

在desktop中:

[root@jane1 ~]# cd /var/www/html/
[root@jane1 html]# ls
cgi                      index.php  upload
Discuz_X3.2_SC_UTF8.zip  readme     utility
index.html               test.html  westos
[root@jane1 html]# vim index.html

Linux 之 数据库基本操作

[aaa@qq.com html]# cat /var/www/html/index.html
<h1>music's page</h1>
[aaa@qq.com html]# systemctl restart httpd

在server(重治)中:

[root@localhost ~]# yum install squid -y
[root@localhost ~]# vim /etc/squid/squid.conf

Linux 之 数据库基本操作

[root@localhost ~]# systemctl start squid
[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# systemctl restart squid

在真机火狐地址栏输入:172.25.254.229 就可以看到在深圳的默认配置文件 index.html 内写的内容。
Linux 之 数据库基本操作