CentOS6.5系统中LAMP是yum的一种常用环境,在CentOS6.5系统中的yum安装LAMP的方法也是很简单的,下面就来介绍一下CentOS6.5系统中的yum如何安装LAMP,一起来看一下。
1、安装源
rpm -Uvh http://mirrors.yun-idc.com/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
2、更新并安装基本库
yum -y update
yum -y install gcc gcc-c++ autoconf automake zlib zlib-devel openssl openssl-devel pcre pcre-devel
3、安装Apache和mysql
yum --enablerepo=remi -y install mysql mysql-server mysql-devel httpd httpd-devel
chkconfig httpd on
chkconfig mysqld on
service mysqld start
mysql安全设置
mysql_secure_installation
mysql -u root -p 输入密码
建立你要用数据库。。。
……