タイトル: MySQLの起動、停止、再起動(Linux)
SEOタイトル: MySQLの起動、停止、再起動(CentOS, Ubuntu)
起動
■CentOS
service mysqld start or /etc/init.d/mysqld start |
■Ubuntu
systemctl start mysql |
停止
■CentOS
service mysqld stop or /etc/init.d/mysqld stop |
■Ubuntu
systemctl stop mysql |
再起動
■CentOS
service mysqld restart or # /etc/init.d/mysqld restart |
■Ubuntu
sudo systemctl restart mysql |
確認
■CentOS
service mysqld status |