LAMP环境搭建(CentOS7.6)

准备工作

以下安装均为CentOS7.6环境中

  1. 安装httpd(apache)
  2. 安装php74版本
  3. 安装高版本mariadb(10.3.36)

安装httpd

直接安装

yum -y install httpd

开机自启动

systemctl enable httpd --now

安装php74

下载repo包

yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm

下载php7.4的各种模块

yum -y install php74-php php74-php-gd php74-php-pdo php74-php-mbstring php74-php-cli php74-php-fpm php74-php-mysqlnd  php74-php-pecl-zip php74-php-xml

安装mariadb

配置mariadb的repo包

vim /etc/yum.repos.d/Mariadb.repo
#复制粘贴一下内容
[mariadb]
name = MariaDB
baseurl = https://mirrors.aliyun.com/mariadb/yum/10.3/centos7-amd64
gpgkey=https://mirrors.aliyun.com/mariadb/yum/RPM-GPG-KEY-MariaDB
gpgcheck=1

下载安装新版本的Mariadb

yum install MariaDB-server MariaDB-client -y

开机自启并安全设置向导

systemctl enable mariadb --now
mysql_secure_installation

你可能感兴趣的:(php,apache,服务器)