三、LVS集權的搭建-搭建LAMP分離結構
3.1 伺服器分類
-應用伺服器-web伺服器。
-資料庫伺服器:mysql
-檔案伺服器:存靜態檔案
3.2 準備4臺伺服器
ip地址 hostname
192.168.4.1 mysql
192.168.4.2 web1
192.168.4.3 web2
192.168.4.4 LVS
3.3 配置mysql伺服器(這兒為了方便我選用的mariadb)
[root@mysql ~]# yum -y install mariadb-server
[root@mysql ~]# systemctl start mariadb.service
[root@mysql ~]# systemctl enable mariadb.service
MariaDB [(none)]> grant all on *.* to 'admin'@'%' identified by "123456";
注:上述操作在mysql伺服器上完成
3.4 在兩臺web伺服器上安裝web服務
[root@web1 ~]# yum install -y httpd php php-mysql
[root@web1 ~]# systemctl start httpd
[root@web1 ~]# systemctl enable httpd
3.5 在web1上部署Discuz
[root@web1 ~]# unzip Discuz_X3.3_SC_UTF8.zip
[root@web1 ~]# cp -r upload/ /var/www/html/bbs
[root@web1 ~]# chown -R apache.apache /var/www/html/bbs
[root@web1 ~]# firefox http://192.168.4.2/bbs &
3.6 配置web2
[root@web1 html]# rm -rf bbg,tar.gz
[root@web1 html]# tar czf bbs.tar.gz bbs
[root@web1 html]# scp bbs.tar.gz 192.168.4.3:/var/www/html
bbs.tar.gz 100% 8806KB 8.6MB/s 00:00
[root@web2 html]# tar xzf bbs.tar.gz