mysql linux 指令

 

修改最大连接数

 vi /etc/my.cnf
[mysqld] 增加 max_connections=1000

 

无密码登陆

/etc/init.d/mysqld stop
/etc/init.d/mysqld start --skip-grant-tables
mysql -u root  ----> update mysql.user set password("") ........

 

你可能感兴趣的:(linux)