重置Mysql/Mariadb密码

Introduction

Parrot includes several SQL engines, but when they are pre-installed, the default password is not configured and the access to its root user is denied.

This page will help you in setting up a new password for the root user of Mysql/Mariadb and Postgresql

重置Mysql/Mariadb密码

1. 停止MySQL服务。

  service mysql stop

2. 启动MySQL,无需密码和权限检查。

 mysqld_safe --skip-grant-tables &

3. 如果输出暂停,请再次按[ENTER]。

4. Connect to MySQL.

  mysql -u root mysql

5. 运行以下命令为root用户设置新密码。用您的新密码替换NEW_PASSWORD。

  UPDATE user SET password=PASSWORD('my new p4ssw0rd') WHERE user='root';
  
  FLUSH PRIVILEGES;

6. 重新启动MySQL服务。

  service mysql restart

重置Postgresql 密码

1. Open psql from the postgres user.

  sudo -u postgres psql

2. Change password of the postgres user (or any other database user)

  \password postgres

or

  \password myuser

3. Quit pgsql

  \q

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值