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, 3468🔥, 0💬
Popular Posts:
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
How to calculate the storage size of a JSON (JavaScript Object Notation) value using the JSON_STORAG...
How To Replace Given Values with NULL using NULLIF() in SQL Server Transact-SQL? Sometime you want t...
How To Create a Stored Program Unit in Oracle? If you want to create a stored program unit, you can ...
What Happens If the Imported Table Already Exists in Oracle? If the import process tries to import a...