介绍
Parrot包括几个SQL引擎,但是当它们被预安装时,默认密码没有被配置,并且拒绝root用户进行访问
此页面将帮助您为Mysql / Mariadb和Postgresql的root用户设置新密码
重新配置Mysql/Mariadb密码
1 停止MySQL服务。
service mysql stop
2 启动MySQL,无需密码和权限检查。
mysqld_safe --skip-grant-tables&
3 如果输出停止,请再次按[ENTER]。
4 连接到MySQL。
mysql -u root mysql
5 运行以下命令设置root用户的新密码。
UPDATE user SET password=PASSWORD('my new p4ssw0rd') WHERE user='root';
FLUSH PRIVILEGES;
6 重启Mysql服务
service mysql restart
##重新配置Postgresql密码
1 从postgres用户打开psql。
sudo -u postgres psql
2 更改postgres用户(或任何其他数据库用户)的密码
\password postgres
或者
\password myuser
3 退出pgsql
\q