[michael@redhat mysql-4.0.12-std]$ netstat -an | grep "3306"
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN
Auszug my.cnf:
Code:
# The following options will be passed to all MySQL clients
[client]
#password = your_password
port = 3306
socket = /tmp/mysql.sock
# The MySQL server
[mysqld]
port = 3306
socket = /tmp/mysql.sock
...
Was sagt:
mysql -p --port=3306
?
~