Centos 7下yum搭建最基本的LAMP开发环境

作者: wxfeng 分类: linux 发布时间: 2017-01-19 00:00    阅读 1,169 次

Centos 版本信息

[root@iZ ~]# lsb_release -a
LSB Version:    :core-4.1-amd64:core-4.1-noarch
Distributor ID:    CentOS
Description:    CentOS Linux release 7.2.1511 (Core) 
Release:    7.2.1511
Codename:    Core

安装httpd

[root@iZ ~]# yum install httpd

安装mariadbmysql

[root@iZ ~]# yum install mariadb
[root@iZ ~]# yum install mariadb-server

安装php

[root@iZ ~]# yum install php
[root@iZ ~]# yum install php-mysql

启动 apache 以及 mysql 并设置开机自启动

[root@iZ ~]# systemctl start httpd
[root@iZ ~]# systemctl enable httpd 
[root@iZ ~]# systemctl start mariadb
[root@iZ ~]# systemctl enable mariadb

如果觉得我的文章对您有用,请随意赞赏。您的支持将鼓励我继续创作!

发表评论

您的电子邮箱地址不会被公开。