Centos6.5 安装 LAMP
Centos 安装 LAMP 系统: Centos 6.5 Apache 2.4 + PHP 7.2 + Mysql 5.7 准备工作 centos 查看版本 查看 centos版本 How to Check CentOS Version cat /etc/redhat-release cat /etc/centos-release cat /etc/os-release 更新yum 源 [vagrant@centos tmp]$ sudo yum update 使用yum安装 Apache [vagrant@centos tmp]$ sudo yum install httpd 安装好查看版本 [vagrant@centos tmp]$ httpd -v Server version: Apache/2.2.15 (Unix) Server built: Jun 19 2018 15:45:13 开启 apache 自启动 [vagrant@centos tmp]$ sudo chkconfig httpd on Apahce 相关命令 sudo service httpd start #启动apache sudo service httpd stop # 禁用apache sudo service httpd restart # 重启apache sudo apachectl