时间:2021-07-01 10:21:17 帮助过:2人阅读
方法2、授权法:假设允许用户username通过密码password从远程连接到mysql服务器
mysql>GRANT ALL RRIVILEGES ON *.* TO username@‘%‘ IDENTIFIED BY ‘password‘ WITH GRANT OPTION;
6、安装目录结构
数据库目录:/var/lib/mysql/
配置文件:/usr/share/mysql(mysql.server命令及配置文件)
相关命令:/usr/bin(mysqladmin、mysqldump等命令)(*mysql的一种安全启动方式:/usr/bin/mysqld_safe --user=root &)
启动脚本:/etc/rc.d/init.d/
7、停止/启动mysql服务
[root@localhost /]#service mysql stop;
8、修改字符编码
查看字符编码:
[root@localhost /]#show variables like ‘character\_set\_%‘;
停止mysql服务
将目录/usr/share/mysql下的文件my-medium.cnf拷贝到/etc/下并改名为my.cnf
打开my.cnf在[client]和[mysqld]下面均加上default-character-set=utf8,并保存
*mysql5.5 改了字符集设置参数 character-set-server=utf8
重启mysql服务
9、卸载mysql
[root@localhost /]#rpm -qa|grep -i mysql显示:
MySQL-server-community-5.1.44-1.rhel4.i386.rpm
删除残余文件
[root@localhost /]#rm -f /etc/my.cnf
10、复制mysql数据库
源数据库名:source_db 用户名:root 密码:xxxxxx
目标数据库名:target_db 用户名:root 密码:xxxxxx 所在主机:221.218.9.41
shell>mysqldump source_db -uroot -pxxxxxx --opt | mysql target_db -uroot -pxxxxxx -h 221.218.9.41
linux下mysql安装、目录结构、配置
标签: