Hey,
Yes, you can change MySQL Server default port using following procedure :
Go to /etc/my.cnf :
For example
Quote:
[client]
port=3306
socket=/tmp/mysql.sock
[mysqld]
port=3306
socket=/tmp/mysql.sock
key_buffer_size=16M
max_allowed_packet=8M
[mysqldump]
quick
|
and then replace 3306 by required port. Also you have to open new port in your firewall.
That's it !