启动MySQL时,出现“未能载入偏好设置”面板“MySQL”,原因是因为MySQL版本和电脑系统版本不匹配。
如果不将旧版本的MySQL卸载彻底,无法安装其他版本MySQL。
彻底卸载MySQL,执行以下 *** 作:
1、打开终端窗口
2、使用mysqldump备份你的数据库将文本文件
3、执行逐行执行以下命令
然后通过:Launchpad—系统偏好设置—全部显示,出现的界面中就没有MySQL的图标,说明MySQL已经彻底卸载。
[root@localhost /]# vim /etc/my.cnf
在 [mysqld] 段中加上:skip-grant-tables
2.然后登录数据库时就不需要密码了
3.进入 mysql 命令行之后 执行:
use mysql
update user set password=password('123456') where user='root' and host='localhost'
给 root 用户添加密码 123456
4.然后执行:
update user set password=password('123456') where user='root' and host='%'
将远程连接的密码设置为 123456
然后就正常卸载就可以
在 Mac OS X 下安装 python-mysql方法如下:1、先把之前装的卸载干净:pip uninstall mysql-pythonbrew uninstall mysql-connector-c2、现在设置下mysql_config路径:首先修改系统配置文件vim ~/.bash_profile或者有些人是 ~/.profile,export PATH=$PATH:/Applications/MAMP/Library/bin这里/Applications/MAMP/Library/bin是MAMP的mysql配置文件路径3、安装brew install mysql-connector-cpip install mysql-python即可。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)