安装phpmyadmin后找不到服务器 这是为什么呢
http://localhost/如果这个能打开,应该apache没有问题
http://localhost/phpmyadmin/indexphp然后再看看这个能不能打开。
找不到服务器,看起来就是apache没有安装好。
需要修改phpmyadmin的配置文件,让其连接到MySQL数据库,用记事本打开 configincphp 文件,查找下面几个部分并修改
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['user'] = '这里填写用户名';
$cfg['Servers'][$i]['password'] = '这里填写你的MySQL密码';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
保存 configincphp 后,重启服务器即可访问 phpmyadmin 了。
安装环境:都是在已经安装了Apache、MySQL的情况下
Ubuntu Linux网络安装
1sudo gedit /etc/apt/sourceslist
编辑你的源列表,将原来的内容全部删除,添加下面列表中最适合你的源(注意不要全部添加),选择一个最合适你的即可,复制到你的列表中,然后保存列表。
网易(速度很快)
代码:
deb http://mirrors163com/ubuntu/ lucid main universe restricted multiverse
deb-src http://mirrors163com/ubuntu/ lucid main universe restricted multiverse
deb http://mirrors163com/ubuntu/ lucid-security universe main multiverse restricted
deb-src http://mirrors163com/ubuntu/ lucid-security universe main multiverse restricted
deb http://mirrors163com/ubuntu/ lucid-updates universe main multiverse restricted
deb http://mirrors163com/ubuntu/ lucid-proposed universe main multiverse restricted
deb-src http://mirrors163com/ubuntu/ lucid-proposed universe main multiverse restricted
deb http://mirrors163com/ubuntu/ lucid-backports universe main multiverse restricted
deb-src http://mirrors163com/ubuntu/ lucid-backports universe main multiverse restricted
deb-src http://mirrors163com/ubuntu/ lucid-updates universe main multiverse restricted
ubuntu官方上海源,提供 Kernel,Hiweed,ubuntu
代码:
deb http://mirrorrootguideorg/ubuntu/ lucid main universe restricted multiverse
deb-src http://mirrorrootguideorg/ubuntu/ lucid main universe restricted multiverse
deb http://mirrorrootguideorg/ubuntu/ lucid-security universe main multiverse restricted
deb-src http://mirrorrootguideorg/ubuntu/ lucid-security universe main multiverse restricted
deb http://mirrorrootguideorg/ubuntu/ lucid-updates universe main multiverse restricted
deb http://mirrorrootguideorg/ubuntu/ lucid-proposed universe main multiverse restricted
deb-src http://mirrorrootguideorg/ubuntu/ lucid-proposed universe main multiverse restricted
deb http://mirrorrootguideorg/ubuntu/ lucid-backports universe main multiverse restricted
deb-src http://mirrorrootguideorg/ubuntu/ lucid-backports universe main multiverse restricted
deb-src http://mirrorrootguideorg/ubuntu/ lucid-updates universe main multiverse restricted
2sudo apt-get update 更新源列表信息
可以在运行“sudo apt-get update ”时查看一下错误信息,把不能连接的源删除再重新运行“sudo apt-get update ”。
3网络安装软件包,能上网用这个命令就可以安装了。
sudo apt-get install phpmyadmin
4安装完成之后,系统内会增加这么几个目录:
/etc/phpmyadmin
/usr/share/phpmyadmin
5在浏览器输入http://localhost/phpmyadmin,看到下列界面后用MySQL管理员身份登录(MySQL管理员密码设置命令 /usr/bin/mysqladmin -u root password 'password')就可以正常使用了的
RPM软件包安装(RedHat、CentOS、SUSE等使用RPM包的Linux版本),现在以redhat54为例
redhat54安装phpmyadmin
一系统配置
1redhat5安装时默认选择LAMP
2安装如下文件,在光盘中可找到,不然运行phpmyadmin会出现错误提示
rpm -ivh php-pdo-516-232el5_3i386rpm
rpm -ivh php-mysql-516-232el5_3i386rpm
rpm -ivh php-mbstring-516-232el5_3i386rpm
二设置mysql
1启动mysql
#service mysqld start
2设置mysql密码
#/usr/bin/mysqladmin -u root password 'password'
三设置phpmyadmin
1下载phpMyAdmin-21110-all-languages-utf-8-onlytargz //phpMyadmin-3x不支持redhat5自带的php516,需要php52以上版本
2解压文件至/var/www/myadmin
3编辑解压目录下的libraries/configdefaultphp文件,修改如下:
$cfg['blowfish_secret'] = 'xx';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
四设置Apache
编辑配置文件/etc/httpd/conf/httpdconf,加入
Alias /myadmin "/var/www/myadmin/"
<Directory "/var/www/myadmin">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
五运行phpmyadmin
http://192168031/myadmin,
输入mysql的root用户和密码
注:此种配置方法会提示"无法载入 mcrypt 扩展,<br />请检查 PHP 配置",可忽略
0条评论