Please enable Javascript to view the contents

常用的一些 MYSQL 命令

 ·  ☕ 1 分钟

1. 免密登录

  1. 修改 /etc/my.cnf,在 [mysqld] 中添加一行:
skip-grant-tables=1
  1. 重启 mysqld 服务
1
systemctl restart mysqld
  1. 使用 root 用户登录到 MySQL
1
mysql -u root

2. 允许全部访问来源

  1. 登录 MySQL
1
mysql -u root -p

在 mysql 交互命令行中输入:

1
2
3
4
USE mysql;
SELECT user, host FROM user;
update user set host = '%' where user = 'root';
FLUSH PRIVILEGES;

3. 导出全部数据

1
mysqldump -uroot -proot --all-databases >/tmp/all.sql

微信公众号
作者
微信公众号