MySQL安裝與鏈接

1.安裝

下載地址:https://dev.mysql.com/downloads/mysql/mysql

常見問題及解決辦法:http://www.javashuo.com/article/p-qbytvsxz-cs.htmlsql

1.1.添加環境變量

將解壓後的mysql-5.7.21-winx64\bin路徑 添加到系統環境變量。數據庫

打開個人電腦——空白處右擊——屬性——高級系統設置——高級——環境變量——雙擊Path,新建,將上述路徑複製。服務器

1.2.初始化

以管理員身份運行cmd:mysqld --initialize-insecurespa

win10環境下均以管理員身份打開cmd,mysql版本5.7.27.net

2.MySQL的啓動、鏈接與關閉
2.1從Windows命令行啓動MySQL
PS C:\WINDOWS\system32> mysqld
#此時能夠開啓客戶端進行鏈接
2.2中止MySQL服務器
PS C:\WINDOWS\system32> mysqladmin -u root shutdown
#若是MySQL root用戶帳戶有密碼,你須要調用命令mysqladmin -u root -p shutdown並根據提示輸入密碼。
2.3以Windows服務方式啓動MySQL

2.3.1安裝服務器命令行

PS C:\WINDOWS\system32> mysqld --install
Service successfully installed.

2.3.2開啓MySQL服務code

PS C:\WINDOWS\system32> net start mysql
MySQL 服務正在啓動 .
MySQL 服務已經啓動成功。
#此時能夠開啓客戶端進行鏈接
#此方法關掉cmd,mysqld進程還在。

2.3.3關閉MySQL服務blog

PS C:\WINDOWS\system32>  net stop mysql
MySQL 服務正在中止.
MySQL 服務已成功中止。

2.3.4卸載服務器進程

PS C:\WINDOWS\system32> mysqld --remove
Service successfully removed.
2.4開啓客戶端、鏈接服務端
............先開啓服務端...........
PS C:\WINDOWS\system32> mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.27 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

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>
#此時能夠進行數據庫操做,輸入exit,回車可退出
相關文章
相關標籤/搜索