CentOS 7环境下搭建LAMP环境

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7环境下搭建LAMP环境相关的知识,希望对你有一定的参考价值。

参考百度经验,有小修改(http://jingyan.baidu.com/article/870c6fc31218e8b03fe4be16.html

搭建LAMP环境 
linux + apache + mysql + php
(参考百度教程:http://jingyan.baidu.com/article/870c6fc31218e8b03fe4be16.html)

实验环境:默认关闭防火墙 和 SELinux

==================以下为具体实验步骤==========================

  • 安装apache 启动 开机启动

yum install httpd
systemctl start httpd
systemctl enable httpd
安装mariadb (与Mysql兼容)

  • yum安装

yum install mariadb-server mariadb-client
设置密码:mysql_secure_installation (一路回车)

  • 安装PHP

yum install php
yum install php-mysql php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-bcmath php-mhash libmcrypt

  • php测试页

apache默认网站目录:/var/www/html 

cd /var/www/html
vim index.php
<?php
phpinfo();
?>


常识:
apache默认网站目录是/var/www/html
Linux的包管理器通常安装开源版本的软件,比如JDK安装OpenJDK,mysql安装MariaDB (开源替代品)
MariaDB:完全兼容MySQL

 

以上是关于CentOS 7环境下搭建LAMP环境的主要内容,如果未能解决你的问题,请参考以下文章

Centos7下搭建LAMP平台环境

Centos7下搭建LAMP平台环境

Linux(CentOS 7)LAMP环境的搭建

CentOS 7.0 搭建LAMP环境

CentOS 7使用yum快速搭建LAMP环境

centos7用yum搭建LAMP环境