MysqL具有简单易学、体积小等优点,深受编程开发初学者的喜爱
工具/原料
工具/原料
- 接入Internet的Centos计算机
Centos 6.6下安装MysqL很简单,
yum list MysqL-server
当只有一个时候就可以直接
yum install MysqL-server
进行安装
设置MysqL的服务
先启动MysqL服务
service MysqLd start
连接一下试一下,直接
设置MysqL开机启动
chkconfig MysqLd on
开启3306端口并保存
/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT
/etc/rc.d/init.d/iptables save
修改密码并设置远程访问
连接MysqL数据库
设置密码
use MysqL;
update user set password=password('密码') where user='root';
flush privileges;
设置MysqL远程访问
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
解决MysqL乱码问题
找一个配置文件,复制到/etc/目录,命名为my.cnf
(有时候没有my.cnf)
cp /usr/share/doc/MysqL-server-5.1.73/my-medium.cnf /etc/my.cnf
vim my.cnf
在[client
]和[MysqLd
]下面都添加上
default-character-set=utf8
最后按Esc输入
:wq
保存退出
重启MysqL服务
最后重新启动服务就可以了
service MysqLd restart