介绍如何在CentOs6.2下面使用YUM配置安装LAMP环境,一些兄弟也很喜欢使用编译的安装方法,个人觉得如果不是对服务器做定制,用yum安装稳定简单,何必去download&make&make install呢。
PHP的一些扩展如PHP-mcrypt在官方源中并没有。
rpmforge源可以在 http://pkgs.repoforge.org/rpmforge-release/中下载安装,名为rpmforge- release-*.i686.rpm 或 rpmforge-release-*.x86_64.rpm,找最新的版本
epel源可以在http://mirrors.ustc.edu.cn/Fedora/epel/6/ 中找到,32系统在i386文件夹中,64位的在x86_64文件夹中,名为epel-release-6-*.noarch.rpm,找最新的版本
这里以32位系统为例子
,#如果提示The requested URL returned error: 404,请自行换成最新的版本
rpm -ivh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm
rpm -ivh http://download.Fedoraproject.org/pub/epel/6/i386/epel-release-6-5.noarch.rpm
PHP/MysqL/httpd
#安装apache
yum -y install httpd httpd-devel #安装MysqL
yum -y install MysqL MysqL-devel MysqL-server MysqL-libs
#安装PHP
yum -y install PHP
#安装PHP扩展
yum -y install PHP-MysqL PHP-gd PHP-imap PHP-ldap PHP-odbc PHP-mbstring PHP-devel PHP-soap PHP-cli PHP-pdo
yum -y install PHP-mcrypt PHP-tidy PHP-xml PHP-xmlrpc PHP-pear
#其它不常用PHP扩展,www.linuxidc.com 可不用安装
yum -y install PHP-pecl-memcache PHP-eaccelerator #安装PHPmyadmin
yum -y install PHPmyadmin #安装完成之后,启动
service httpd start service MysqLd start
MysqLd开机自启动
chkconfig MysqLd on
chkconfig httpd on PHPmyadmin
修改/usr/share/PHPmyadmin/config.inc.PHP
#将这里abcde文字修改为自己的字符,可任意
$cfg['blowfish_secret'] = 'abcde';
Order Deny,Allow
# Deny from all
Allow from All
不过强烈不支持这么做的,把PHPmyadmin暴露了不安全apache解析PHP,修改httpd.conf文件,添加
Addtype application/x-httpd-PHP .PHP .phtml
Addtype application/x-httpd-PHP-source .PHPsmyql可以远程登录
设置MysqL密码
MysqL>; USE MysqL;MysqL>; UPDATE user SET Password=PASSWORD('newpassword') WHERE user='root';
MysqL>; FLUSH PRIVILEGES;
1.2.3 允许远程登录
MysqL -u root -pEnter Password:
MysqL>GRANT ALL PRIVILEGES ON *.* TO '用户名'@'%' IDENTIFIED BY '密码' WITH GRANT OPTION;
完成后就能用MysqL-front远程管理MysqL了。
设为开机启动
chkconfig MysqLd on 原文链接:https://www.f2er.com/php/26247.html