Collections:
Connecting to MySQL Server on a Specific Port in MySQL
How To Connect to MySQL Server on a Different Port in MySQL?
✍: FYIcenter.com
If your MySQL server is listening on port number different than 3306, you need to specify "--port=portNumber" option to any client program that needs to connect to the server. The tutorial exercise shows you how to connect "mysql" to start the server to listen to a different port number:
\mysql\bin\mysql -u root -pretneciyf --port=8888 test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 to server version: 5.0.24 Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
⇒ PHP Connections and Query Execution for MySQL
⇐ Running MySQL Server on a Specific Port in MySQL
2017-11-25, 2721🔥, 0💬
Popular Posts:
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
What Is an Oracle Tablespace in Oracle? An Oracle tablespace is a big unit of logical storage in an ...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...