首先安装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中,连接到的文件名随意,然后重启服务
操作步骤就是在命令行中以root身份登录数据库,新建用户,分配权限
若用户没有密码,则需要修改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