mysql新版本和以前的版本有些区别:
mysql 8
CREATE USER 'seafile' IDENTIFIED BY 'Passw0rd';
GRANT ALL ON *.* TO 'seafile'@'%' WITH GRANT OPTION;
FLUSH PRIVILEGES;
ALTER USER 'seafile'@'%' IDENTIFIED WITH mysql_native_password BY 'Passw0rd';
mysql 8
如果使用以前的赋予权限命令会报下面的错误:
mysql> grant all privileges on *.* to seafile@'localhost' identified by 'Passw0rd';
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by 'Passw0rd'' at line 1
mysql 8以前的版本
CREATE USER 'seafile' IDENTIFIED BY 'Passw0rd';
grant all privileges on *.* to seafile@'localhost' IDENTIFIED BY 'Passw0rd';
grant all privileges on *.* to seafile@'127.0.0.1' IDENTIFIED BY "Passw0rd";
grant all privileges on *.* to seafile@'%' IDENTIFIED BY "Passw0rd";
FLUSH PRIVILEGES;
grant all privileges on *.* to seafile@'10.47.0.238' IDENTIFIED BY "Passw0rd";
grant all privileges on *.* to seafile@'10.47.0.238' IDENTIFIED BY "Passw0rd";
grant all privileges on *.* to seafile@'%' IDENTIFIED BY "Passw0rd";
FLUSH PRIVILEGES;
最新评论
本来在正常下载,突然就不能下载,并出现报错:a socket operation was attempted to an unreachable network。请问是什么原因呢
试了,还是不行,能不能更新一下
试了,确实不行,能不能更新一下
也推荐一下我自己写的 https://twitdown.com