LAMP 架构实现

14课时
447学过
8分

2. 实例:LAMP 搭建 PhpMyAdmin

3. 实例:CentOS7 编译 Php-xcache

4. 实例:LAMP 搭建 wordpress

5. 实验:centos7 上源码编译安装 LAMP 的多虚拟主机 wordpress,discuz

课程评价 (0)

请对课程作出评价:
0/300

学员评价

暂无精选评价
1分钟

具体步骤

1 下载phpMyAdmin 4.0.10.20

注:此版本支持PHP 5.2 和 MySQL 5之前,不支持 PHP 5.5 更新的版本

wget https://files.phpmyadmin.net/phpMyAdmin/4.0.10.20/phpMyAdmin-4.0.10.20-\

all-languages.tar.xz

2 解压到httpd目录下

tar xvf phpMyAdmin-4.0.10.20-all-languages.tar.xz -C /var/www/html/

该目录名称,方便操作

mv phpMyAdmin-4.0.10.20-all-languages/ phpMyAdmin

3 复制配置文件,不需要更改内容

cd phpMyAdmin/

cp config.sample.inc.php config.inc.php

安装php-mbstring

yum install php-mbstring –y

4 重启httpd服务

systemctl restart httpd

5 打开浏览器访问http://192.168.30.10/phpMyAdmin/,出现下图即表示PhpMyAdmin搭建成功

6使用mysql账号进行登录,就可进行数据库的图形化操作了