【MySQL】初心者必見!MySQLをコマンドで起動・停止・再起動

2021年7月25日DataBase,MySQL

「MySQL」をインストールがインストールが終わった方は、実際にMySQLの起動から停止、また再起動をしてみましょう。
まだ、MySQLをインストールをしていない方は先にMySQLをインストールしましょう。

MySQLを起動

// MySQLを起動
mysql.server start

コマンド入力後、「SUCCESS!」が表示されれば、起動成功で、SQLコマンドが入力できるようになります。

MacBook-Pro:~ User$ mysql.server start
Starting MySQL
 SUCCESS! 
MacBook-Pro:~ User$ 2021-07-21T22:50:36.6NZ mysqld_safe A mysqld process already exists

MySQLの接続

「ユーザ名:root」で接続します。

-pはユーザー名:root後にパスワードを確認という意味です。

// MySQLの接続
mysql -u root -p

パスワードを求められるので、入力してください。

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.25 Homebrew

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

接続後はSQLコマンドを入力していきましょう。

// MySQLコマンドライン
mysql> 

スポンサードサーチ

MySQLの接続を切る

mysqlの接続を切るコマンドは「exit」、「quit」、「\q」などがあります。
実行されるとMySQLコマンドラインツールが終了し切断されます。

MacBook-Pro:~ User$ mysql> exit
ERROR 1045 (28000): Access denied for user 'User'@'localhost' (using password: NO)

MySQLの停止(終了とも)

実装が終わった場合は停止させましょう。

// MySQLの停止
mysql.server stop