ubuntu 16.04安装mariadb并配置phpmyadmin

前端之家收集整理的这篇文章主要介绍了ubuntu 16.04安装mariadb并配置phpmyadmin前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

首先安装mariadb

apt install mariadb-server

安装好之后就可以登录了,默认root密码为空
MysqL -uroot -p

然后安装PHPmyadmin
apt install PHPmyadmin

安装时需要设置密码,我这里不设,为空

然后访问 http://localhost/PHPmyadmin 返回404,网上的资料应该是比较旧,都失败了,应该这样做

在root权限下

ln -s /etc/PHPmyadmin/apache.conf /etc/apache2/sites-enabled/PHPmyadmin.conf

/etc/init.d/apache2 restart

意思是说把PHPmyadmin的配置信息添加到apache中,连接到的文件名随意,然后重启服务

再访问就可以看到PHPmyadmin的登录界面了

此时用root登录会失败,这里我用其他用户登录

操作步骤就是在命令行中以root身份登录数据库,新建用户,分配权限

然后就可以在PHPmyadmin中登录

用户没有密码,则需要修改PHPmyadmin的配置,使其支持空密码登录,这是默认禁止

配置文件在 /etc/PHPmyadmin/config.inc.PHP 中,可以找到被注释掉的一行

    /* Uncomment the following to enable logging in to passwordless accounts,* after taking note of the associated security risks. */
    $cfg['Servers'][$i]['AllowNoPassword'] = TRUE;

这里我已经把注释去掉了,改好之后刷新网页,登录,即可进入主页面


the end

原文链接:https://www.f2er.com/ubuntu/355034.html

猜你在找的Ubuntu相关文章