MySQL server is running with the --super-read-only option的解决办法
原因
数据库是只读模式
解决办法
修改为读写模式
mysql -uroot -p你的密码 进入mysql
select @@read_only;
set global read_only=0;
# 顺便设置可远程连接(不需要可跳到flush privileges)
use mysql;
update user set host='%' where host='localhost';
flush privileges
exit
补充:
bash执行mysql命令格式: mysql -uroot -p你的密码 -e 'create database MyProject'
create database MyProject就是执行的mysql命令