この内容は古いバージョンです。最新バージョンを表示するには、戻るボタンを押してください。
バージョン:6
ページ更新者:guest
更新日時:2018-12-27 10:13:53

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