1.mysql自动补齐方法


方法一、修改my.cnf
vi /etc/my.cnf
[mysql]
auto-rehash         #添加auto-rehash
注:修改 #no-auto-rehash 去掉# 改为上面那一条
重启mysql服务

方法2、客户端连接mysql时
在mysql启动时加参数auto-rehash
mysql –uxx -hxx -pxx --auto-rehash

注:只能补齐表,列名

亲测 都可以使用.


2.mysql重启方法.

./mysqladmin -uxxx -hxxx  shutdown

./mysqld_safe  --user=root &


mysqld进程使用机器用户名 root 启动,也可以是其他用户名,但 要保证 db的所有用户建的表都能有权限 访问 db.

进程的访问权限一般和机器用户名的访问权限相同.

启动时 默认使用 mysqlpath/etc/my.cnf,里面包含的相关配置.