Chinaunix首页 | 论坛 | 博客
  • 博客访问: 43091
  • 博文数量: 14
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 170
  • 用 户 组: 普通用户
  • 注册时间: 2014-12-04 22:19
个人简介

Take notes for our web server

文章分类

全部博文(14)

分类: Web开发

2014-12-09 14:20:03

安装phpmyadmin
[root@localhost ~]# wget
[root@localhost ~]# tar -zxvf phpMyAdmin-3.4.2-all-languages.tar

[root@localhost ~]# mv phpMyAdmin-3.2.5-all-languages phpmyadmin

[root@localhost ~]# mv phpmyadmin /usr/share/nginx/html/

[root@localhost ~]# cd  /usr/share/nginx/html/phpadmin

[root@localhost phpmyadmin]# cp config.sample.inc.php config.inc.php

[root@localhost phpmyadmin]# vi  config.inc.php

cfg['blowfish_secret'] = 'zh888blogcom'//加密密匙,可随意更改

$cfg['Servers'][$i]['auth_type'] = 'cookie'; // 认证方式 (config, http or cookie based)?
$cfg['Servers'][$i]['host'] = 'localhost';// MySQL的主机名称或者IP地址
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysql';

下来是指定系统管理员用户名和密码:

$cfg['Servers'][$i]['controluser'] = 'root';// MySQL用户,如 root
$cfg['Servers'][$i]['controlpass'] = '123456'; // MySQL用户密码

[root@localhost ~]# vi  /etc/php.ini
extension = mysql.so

[root@localhost ~]# service mysqld restart
[root@localhost ~]# service nginx restart


登录

阅读(1360) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~