Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 4732👍, 0💬
Popular Posts:
Can JavaScript steal text from your clipboard? It is true, text you last copied for pasting (copy &a...
Which is the best place to store ConnectionString in Dot Net Projects? I am about to deploy my first...
How Can we change priority & what levels of priority are provided by Dot Net? Thread Priority ca...
What Does a HTML Document Look Like? A HTML document is a normal text file with predefined tags mixe...
.NET INTERVIEW QUESTIONS - How can you avoid deadlock in threading? A good and careful planning can ...