Open4
MySQL小ネタ
参考にさせていただいた
MySQLの死活監査
// mysqldプロセスが走っているか確認→出力されればOK
# ps auxww | grep mysqld
// mysqladminでping打つ ※オプションは必要に応じて
# mysqladmin -hlocalhost -P3306 -uroot -p ping
第一引数として指定が必要らしい
Use only the given option file. If the file does not exist or is otherwise inaccessible, the server exits with an error. If file_name is not an absolute path name, it is interpreted relative to the current directory. This must be the first option on the command line if it is used.
とはいえ、mylogin.cnfは読むらしい。
Exception: Even with --defaults-file, client programs read .mylogin.cnf.
mysqld --defaults-file
mysqld --port13306 --defaults-file
my.confのオプショングループについて