讓我們看看如何使用命令行選項與MySQL服務器建立連接,例如mysql或mysqldump這樣的客戶端。
為了使客戶端程序能夠連接到MySQL服務器,它必須使用正確的連接參數,例如服務器運行的主機名、MySQL帳戶的用戶名和密碼。每個連接參數都有一個默認值,但在必要時可以使用在命令行或選項文件中指定的程序選項進行覆蓋。
調用mysql
調用mysql而不指定任何顯式連接參數的命令是?
mysql
登錄后復制
由于沒有參數選項,將應用默認值。
默認主機名為localhost。在Unix上,它有特殊含義。
默認用戶名在Windows上是ODBC。在Unix上,是Unix上的登錄名。
沒有發送密碼,因為沒有提供–password或-p。
對于mysql,第一個參數被視為默認數據庫的名稱。由于沒有這樣的參數,因此mysql不選擇任何默認數據庫。
Imvoke – 指定主機名、用戶名和密碼
要明確指定主機名、用戶名和密碼,必須在命令行上提供適當的選項。如下所示:
mysql --host=localhost --user=myname --password=password mydb mysql -h localhost -u myname -ppassword mydb
登錄后復制
The password value is optional.
If a –password or -p option is present, and a password value is mentioned, there shouldn’t be any space between –password= or -p and the password that follows it.
If –password or -p doesn’t specify a password value, the client program prompts the user to enter the password. The password doesn’t get displayed when it is entered.
Type of Connection
Next step is for client programs to determine the type of connection that needs to be made. To ensure that the client makes a TCP/IP connection to the local server only, the –host or -h option is used to specify a host name with the value of 127.0.0.1 (instead of localhost). Instead of this, the IP address or name of the local server can also be provided. The transport protocol can be explicitly mentioned even for localhost using the –protocol=TCP option. Some examples have been shown below −
mysql --host=127.0.0.1 mysql --protocol=TCP
登錄后復制
If connections need to be made to remote servers, then use TCP/IP. This command would help connect to the server that runs on remote.example.com using the default port number which is 3306. It has been shown below −
mysql --host=remote.example.com
登錄后復制
如果用戶希望顯示特定的端口號,需要提到 – -port 或 –P 選項 −
mysql --host=remote.example.com --port=13306
登錄后復制
以上就是使用命令選項連接到 MySQL 服務器的詳細內容,更多請關注www.92cms.cn其它相關文章!