Re-install MySql in mac os x 10.6.6

£可爱£侵袭症+ 提交于 2019-12-10 18:53:10

问题


I had earlier installed mysql-5.1.50-osx10.6-x86_64.dmg and then uninstalled it using the below belo command (found in stackoverflow)

$ sudo rm /usr/local/mysql
Password:
$ sudo rm -rf /usr/local/mysql*
$ sudo rm -rf /Library/StartupItems/MySQLCOM
$ sudo rm -rf /Library/PreferencePanes/My*
$ rm -rf ~/Library/PreferencePanes/My*
$ sudo rm -rf /Library/Receipts/mysql*
$ sudo rm -rf /Library/Receipts/MySQL*
$ sudo vi /etc/hostconfig
$ sudo rm -rf /var/db/receipts/com.mysql.mysql*
$ cd /Library/Receipts/

Then I have tried to reinstall from mysql-5.5.9-osx10.6-x86_64.dmg.

However I am getting the below error:

The installation failed The installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.


回答1:


Take a look at the installer log — open the Installer; press command-L to show the log, and command-3 to increase the detail level; attempt the install.

The below is a summary of the comments

OP: The error log displays the below mentioned

Feb 21 21:30:28 Sarbbottam-Bandyopadhyays-MacBook-Pro installd[387]: ./postflight: chown: mysql: Invalid argument

Paul: Looks like you don't have a user "mysql". Confirm that by running dscl . list /Users|grep mysql. You should see _mysql as the result.

OP: running dscl . list /Users|grep mysql It did not return anything

Paul: Your mysql user is missing. [Here are instructions for creating a MySQL user][1] Do that, and then run the installer

OP: Thanks a lot it worked. I have created the mysql user and the group as suggested by you. The ran the installer. It was installed.



来源:https://stackoverflow.com/questions/5067787/re-install-mysql-in-mac-os-x-10-6-6

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!