この内容は古いバージョンです。最新バージョンを表示するには、戻るボタンを押してください。
バージョン:7
ページ更新者:T
更新日時:2019-08-07 10:21:39

タイトル: 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