ubuntu 12.04 - Why is mysql running with --skip-networking? -
i have ubuntu 12.04, mysql version 5.5.35. /etc/mysql/my.cnf file has no --skip-networking or --skip-grant-tables attributes. annotated following line:
# instead of skip-networking default listen on # localhost more compatible , not less secure. bind-address = localhost
however when "ps aux | grep mysql" following comes back:
root 28880 0.0 0.0 60068 1904 ? s jun02 0:00 sudo /usr/sbin/mysqld --skip-grant-tables --skip-networking mysql 28881 0.0 1.1 615828 43844 ? sl jun02 3:35 /usr/sbin/mysqld --skip-grant-tables --skip-networking
why running attributes? can still connect jdbc localhost if attributes on? how turn them off?
the mysql server not running correctly. had kill process manually , start using "sudo service mysql start". running on correct port , without --skip-networking , --skip-grant-tables.
Comments
Post a Comment