正在安装 MySQL 系统表...错误:1136 列计数与第 1 行的值计数不匹配?
我按照本教程在本地计算机上使用 MySql5 设置 Rails 3 环境: http://blog.openrain.com/2008/08/20/setup-ruby-and-rails-on-osx/。
当我运行以下命令时: sudo -u mysql mysql_install_db5
我收到以下错误。
--------
正在安装 MySQL 系统表... 错误:1136 列计数与第 1 行的值计数不匹配 101010 22:40:53 [错误] 正在中止
101010 22:40:53 [注意] /opt/local/libexec/mysqld:关闭完成
---------
请帮我解决这个问题。
谢谢 维沙尔
I was setting up a Rails 3 environment on my local machine with MySql5 following this tutorial: http://blog.openrain.com/2008/08/20/setup-ruby-and-rails-on-osx/.
When I run the below command:
sudo -u mysql mysql_install_db5
I get the following error.
--------
Installing MySQL system tables...
ERROR: 1136 Column count doesn't match value count at row 1
101010 22:40:53 [ERROR] Aborting
101010 22:40:53 [Note] /opt/local/libexec/mysqld: Shutdown complete
---------
Please help me resolve this.
Thanks
Vishal
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来我之前的安装中存在残留文件和 sql 表。
我清空了以下目录“/opt/local/var/db/mysql5”,然后成功执行“sudo -u mysql mysql_install_db5”。
It appears that there were lingering files and sql tables from my previous installation.
I emptied the following directory '/opt/local/var/db/mysql5' and then executed 'sudo -u mysql mysql_install_db5' successfully.