Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Run MySQL Server on a Different Port
How To Run MySQL Server on a Different Port? - MySQL FAQs - Server Daemon mysqld Administration
✍: 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)
2007-05-11, 5314👍, 0💬
Popular Posts:
What are urlencode() and urldecode() functions in PHP? string urlencode(str) - Returns the URL encod...
Can you have virtual functions in Java? Yes, all functions in Java are virtual by default. This is a...
.NET INTERVIEW QUESTIONS - How to prevent my .NET DLL to be decompiled? By design .NET embeds rich M...
What Is the "@SuiteClasses" Annotation? "@SuiteClasses" is a class annotation defined in JUnit 4.4 i...
What is continuous and staged representation? CMMI contains 25 key process areas which organization ...