Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过 sequelpro 连接到我的 DO 液滴。因此,我采取了以下步骤:
mysql my.conf
[mysqld] ... bind-address = DROPLET IP
mysql
GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1' INDENTIFIED BY 'password'; FLUSH ALL PRIVILEGES;
续集
我得到的错误信息是:
你能帮我解决这个问题吗?我似乎错过了什么
编辑你的 my.conf 注释掉这一行
[mysqld] ... # bind-address = 127.0.0.1
mysql:
grand all on *.* to root@'%' identifies by 'yourPassword'; FLUSH PRIVILEGES;
续集临:
希望有帮助。