搭建准备
方案一:将全部部署到一台服务器
方案二:
A服务器(centos7):Apache+php+php的网站
B服务器(centos5):mysql
我们使用的是方案二
一丶将各服务器所需软件安装好
A服务器: #yum install httpd -y ///安装Apache #yum install php -y ///安装PHP #yum install php-mysql -y ///安装连接PHP与MySQL的服务 #setenforce 0 ///临时关闭selinux防火墙#systemctl stop firewalld.service ///临时关闭firewalld防火墙#vi /etc/sysconfig/selinux 然后在文件里将SELINUX=XXXX 改为 SELINUX=disable ///永久关闭selinux防火墙#systemctl disable firewalld.service ///关闭firewalld防火墙
时间: 2024-11-03 20:46:28