CentOS 7下快速搭建LAMP wordpress
LAMP是流行的经典快速部署互联网应用的标配。 它的全称是Linux+Apache+Mysql+PHP。之前写过基于CentOS6下编译以及yum方式搭建LAMP。本次主要主要是基于CentOS7来描述,同时演示了在该架构下安装WordPress,供大家参考。 有关CentOS 6下搭建文章可参考: Linux 6 下yum方式安装配置LAMP平台 Linux 6下编译安装配置LAMP平台 一、安装LAMP 当前环境 [root@centos7-web ~]# more /etc/redhat-release CentOS Linux release 7.2.1511 (Core) 基于yum方式安装httpd,php,mariadb [root@centos7-web ~]# yum install httpd -y [root@centos7-web ~]# yum install php php-mysql -y [root@centos7-web ~]# yum install mariadb-server -y 验证相关安装包 [root@c...