Mysql的几点使用方法
时间:2006-09-07 来源:youxiazhu
mysql的用户帐号独立于系统,但是也会生成一个mysql的系统帐号用于开启服务。
普通系统用户可以执行mysql -u mysqluser -p 进入mysql状态
用mysql的root用户登入可以添加新用户:
可以用GRANT命令,格式如下 :
GRANT 許可權 ON 庫名.表名 TO 新用户名@主機名 IDENTIFIED BY '密碼';
grant all on husidb.* to john@localhost identified by '201314';
grant select on test.* to 'yonghu'@'%' identified by 'some_pass' with grant option;
或者:
直接向grant表中插入用户:
shell>mysql --user=root mysql
mysql>insert into user (Host,User,Password) values('localhost','shagua','');
mysql>flush privileges;表示将来自本机的用户,名叫shagua,密码为空,添加入数据库。
普通系统用户可以执行mysql -u mysqluser -p 进入mysql状态
用mysql的root用户登入可以添加新用户:
可以用GRANT命令,格式如下 :
GRANT 許可權 ON 庫名.表名 TO 新用户名@主機名 IDENTIFIED BY '密碼';
grant all on husidb.* to john@localhost identified by '201314';
grant select on test.* to 'yonghu'@'%' identified by 'some_pass' with grant option;
或者:
直接向grant表中插入用户:
shell>mysql --user=root mysql
mysql>insert into user (Host,User,Password) values('localhost','shagua','');
mysql>flush privileges;表示将来自本机的用户,名叫shagua,密码为空,添加入数据库。
相关阅读 更多 +