0
0

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 1 year has passed since last update.

MySQLをコマンドラインから起動する

Posted at

自分用メモです。

コマンドプロンプト起動

管理者権限でコマンドプロンプトを起動したあと MySQL をインストールしたディレクトリの中の bin ディレクトリにある mysqld.exe を実行。

"C:\Program Files\MySQL\MySQL Server 8.0\bin\mysqld"

image.png
MySQL が起動しました。

実行すると、コマンドプロンプトは操作ができない状態となりますので、 MySQL に対する操作は別のコマンドプロンプトを起動して行ってください。

mysqlがあるファイルに移動して

mysql -u root -p

を実行。

image.png

mysql>がコマンドに現れたらMySQLと接続できている証拠。

quit

でMySQL停止。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?