Linux Tips [その他]

Linux用XAMPPでMySQLが起動しない場合

解説

LinuxにXAMPPをインストール後、「/opt/lampp/lampp start」でXAMPPを起動した際に、 XAMPP: Couldn't start MySQL! と表示され、MySQLが起動できないことがあります。 その場合、/opt/lampp/bin/mysql.serverの以下の行に「 --user=root」を追加します。 $bindir/mysqld_safe --datadir=$datadir --pid-file=$server_pid_file $other_args >/dev/null 2>&1 &       ↓ $bindir/mysqld_safe <b>--user=root</b> --datadir=$datadir --pid-file=$server_pid_file $other_args >/dev/null 2>&1 &