MySQL是一種關(guān)系型數(shù)據(jù)庫(kù)管理系統(tǒng),是應(yīng)用廣泛的開(kāi)放源代碼數(shù)據(jù)庫(kù)。在MySQL操作中,指定主機(jī)和端口號(hào)是一個(gè)常見(jiàn)的需求。
mysql -h主機(jī)名 -P端口號(hào) -u用戶(hù)名 -p用戶(hù)密碼
其中,-h參數(shù)后指定主機(jī)名或主機(jī)IP,-P參數(shù)后指定端口號(hào),-u參數(shù)后指定登錄用戶(hù)名,-p參數(shù)后指定該用戶(hù)的登錄密碼。
當(dāng)省略-P參數(shù)時(shí),默認(rèn)使用MySQL默認(rèn)的端口號(hào)3306。
例如,如果要連接主機(jī)為192.168.0.1,端口號(hào)為3307,用戶(hù)名為root,密碼為123456的MySQL數(shù)據(jù)庫(kù),可以使用以下命令:
mysql -h192.168.0.1 -P3307 -uroot -p123456
如果連接成功,會(huì)看到如下結(jié)果:
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.7.31-0ubuntu0.18.04.1 (Ubuntu) Copyright (c) 2000, 2020, 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>
在這里,你就可以使用MySQL提供的各種功能對(duì)數(shù)據(jù)庫(kù)進(jìn)行操作了。