OSX 10.10で複数のmysqlインスタンスを実行しています。/usr/local/mysql/bin/mysqld stop
たくさんの警告とエラーを吐き出します。共有する価値があるかどうかはわかりません。16164 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
mysql_upgradeの実行が失敗する最初のエラーを次に示します。
実行ps aux | grep mysql
結果:
clayton 16179 0.0 0.0 2423356 228 s000 R+ 10:58AM 0:00.00 grep --color=auto --exclude-dir=.bzr --exclude-dir=CVS --exclude-dir=.git --exclude-dir=.hg --exclude-dir=.svn mysql
_mysql 15599 0.0 0.3 3070756 24508 ?? S 10:22AM 0:01.64 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/usr/local/mysql/data/Beast.local.err --pid-file=/usr/local/mysql/data/Beast.local.pid
root 15514 0.0 0.0 2452828 876 ?? Ss 10:22AM 0:00.02 /bin/sh /usr/local/mysql/bin/mysqld_safe --user=mysql
私は、プロセスを強制終了しようとしたsudo kill -15 16179 15599 15514
が、私のユーザー・プロセスは、変更をのpid。kill: 16179: No such process
。私が行う場合はps aux | grep mysql
繰り返しクレイトンが所有する最初のプロセスのPIDを、10ずつアップジャンプします。
そのため、次にを使用launchctl unload /Library/LaunchDaemons/com.oracle.oss.mysql.mysqld.plist
してmysqlをアンロードしようとしlaunchctl unload /Library/LaunchDaemons/com.mysql.mysql.plist
ましたCould not find specified service
。
あー 私は間違いなく困惑していて、どうすればいいかわかりません。助言がありますか?