35
36

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MySQLの起動、停止、再起動コマンド

Posted at

MySQLの状態確認

service mysql status

または

/etc/init.d/mysqld status

MySQLの起動

mysql.server start

または

/etc/init.d/mysqld start

MySQLの停止

mysql.server stop

または

/etc/init.d/mysqld stop

MySQLの再起動

mysql.server restart

または

/etc/init.d/mysqld restart

MySQLログイン

mysql -u root 
35
36
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
35
36

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?