配置好環境變數或者進入mysql的bin資料夾下輸入cmd啟動dos輸入 mysql -u root -p
注意:mysql -h 127.0.0.1(主機位址 或者輸入 localhost) -u root(使用者名稱) -p(密碼)可以使用預設埠3306或者直接視覺化軟體登入,這個命令可以在mysql不是預設埠的情況下指定埠登入
c:\program files\mysql\mysql server 5.6\bin>mysql -u root -p
enter password: ***
*welcome to the mysql monitor. commands end
with
;or \g.
your mysql connection id is
22server version: 5.6
.11-log mysql community server (gpl)
2000
,2013
, 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>
mysql>
show
databases;+
--------------------+
|database|+
--------------------+
| information_schema |
| db_1 |
| db_2 |
| db_3 |
| db_9 |
| mysql |
| performance_schema |
| test |
| world |
+--------------------+
13rows
inset
(0.43 sec)
通過DOS視窗啟動和關閉MySQL服務
首先我們開啟 開始 執行 在對話方塊中輸入cmd命令來開啟dos視窗 然後在dos視窗中,如果我們想檢視windows已經啟動的服務,可以通過如下命令來實現 net start執行後會發現你電腦上已經開啟的服務 這裡看一下你的電腦中mysql的具體名稱是什麼,因為版本的不同,有的會是 mysql 或...
jboss 自動啟動關閉時關閉dos視窗
jboss 啟動 直接執行 run.bat 就可以了。jboss 服務停止,需要 s 因此不能直接執行shutdown.bat 因此在科工中我從新寫了乙個關閉bat。e cd jboss 4.0.5.ga bin shutdown.bat s 將這個bat命名為 closs.bat e 是jboss...
MySQL解決DOS命令視窗亂碼問題
亂碼問題如下 導致問題產生的原因很簡單,無非是命令列的編碼和mysql內部設定的編碼出現了偏差。我們右鍵屬性檢視以下命令列的編碼方式是gbk。解決 mysql show variables like character 模糊查詢character開頭的全域性變數 character set clie...