红联Linux门户
Linux帮助

Linux5.8下安装phpMyAdmin无法关联php-mcrypt问题

发布时间:2015-11-11 10:11:32来源:linux网站作者:yangxiaofei

一、yum安装php-mcrypt  ##发现没办法安装

原来CentOS 官方默认不在对mcrypt模块 进行支持,所以必须另想办法折腾了2个小时总算搞定,这里主要使用了Fedora的扩展库,

EPEL (Extra Packages for Enterprise Linux)先分享解决过程如下:


二:在扩展库中查找rpm包

打开网址:http://mirrors.sohu.com/fedora-epel/6/i386/ 使用 Ctrl+F 搜索关键词“epel-release” 找到当前最新的扩展包发现最新版本为:epel-release-6-8.noarch.rpm

或者是执行下载下来然后安装

wget http://mirrors.sohu.com/fedora-epel/6/i386/epel-release-6-8.noarch.rpm

rpm -ivh epel-release-6-8.noarch.rpm


三:执行yum update命令更新

[root@linuxidchtml]# yum update


四:执行命令 yum repolist 查看安装结果

Linux5.8下安装phpMyAdmin无法关联php-mcrypt问题


五:最后安装mcrypt

yum install php-mcrypt -y


CentOS yum安装mcrypt:http://www.linuxdiyf.com/linux/14145.html

Linux下安装加密模块mcrypt技巧:http://www.linuxdiyf.com/linux/6449.html

Ubuntu下配置phpMyAdmin无法载入mcrypt:http://www.linuxdiyf.com/linux/784.html

yum下安装mcrypt找不到package的解决办法:http://www.linuxdiyf.com/linux/15050.html

Ubuntu麒麟版下安装:Apache+php5+mysql+phpmyadmin:http://www.linuxdiyf.com/linux/14799.html