Collections:
Running MySQL Server on a Specific Port in MySQL
How To Run MySQL Server on a Different Port in MySQL?
✍: FYIcenter.com
By default, MySQL will listen at port number 3306 for any client connections. But you can change this by starting the server with "--port=portNumber" option. The tutorial exercise shows you how to start the server to listen to a different port number:
>cd \mysql\bin >mysqld --log=\mysql\logs\query.log --log-bin=\mysql\logs\binary.log --log-error=\mysql\logs\error.log --console --port=8888 21:30:33 InnoDB: Started; log sequence number 0 43665 21:30:33 [Note] mysqld: ready for connections. Version: '5.0.24-community-log' socket: '' port: 8888 MySQL Community Edition (GPL)
⇒ Connecting to MySQL Server on a Specific Port in MySQL
⇐ Viewing Log File with "mysqlbinlog" in MySQL
2017-11-29, 2201🔥, 0💬
Popular Posts:
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...
How To Drop a Stored Procedure in Oracle? If there is an existing stored procedure and you don't wan...
How To Use SQL*Plus Built-in Timers in Oracle? If you don't have a stopwatch/timer and want to measu...
How To Convert Numeric Expression Data Types using the CAST() Function in SQL Server Transact-SQL? I...