sql - How to change the default port of mysql from 3306 to 3360 -


i want change default port number of mysql server presently 3306. want change 3360.

i have tried:

-- port=3360 

but things not working me. please provide query change port not configuration. using windows 8 64 bit.

you need edit my.cnf file , make sure have port set in following line:

port = 3360 

then restart mysql service , should go. there no query can run make change because port not dynamic variable (q.v. here mysql documentation showing table of system variables).


Comments

Popular posts from this blog

python - Installing PyDev in eclipse is failed -

PHP OOP-based login system -

c# - Nested Internal Class with Readonly Hashtable throws Null ref exception.. on assignment -