タイトル: MySQLの起動、停止、再起動
起動
service mysqld start or # /etc/init.d/mysqld start or (Ubuntu) sudo systemctl start mysql |
停止
以下のコマンドを実行。
service mysqld stop or # /etc/init.d/mysqld stop or (Ubuntu) sudo systemctl stop mysql |
再起動
service mysqld restart or # /etc/init.d/mysqld restart or (Ubuntu) sudo systemctl restart mysql |