赞
踩
Linux(CentOs7)在线安装MySQL数据库
首先进入根目录下的usr目录,在此目录下进行安装
1、下载MySQL安装包
wget -i -c https://repo.mysql.com//mysql57-community-release-el7-10.noarch.rpm
2、安装下载好的包
yum -y install mysql57-community-release-sl7-10.noarch.rpm
3、安装MySQL服务器
yum -y install mysql-community-server
4、启动MySQL服务
systemctl start mysqld.service
5、查看MySQL运行状态
systemctl status mysqld.service
6、在日志中找出登录密码
grep "password" /var/log/mysqld.log localhost后面的字符串就是密码
7、登录MySQL,输入密码
mysql -u root -p
8、修改密码
ALTER USER 'root'@'localhost' IDENTIFIED BY ‘new password' 'new password'处即为你要设置的密码
9、如果要授权远程访问,指定IP对MySQL的访问,并开放端口
GRANT ALL PRIVILEGES ON *.* TO 'root'@'10.0.0.1' identified by 'password' WITH GRANT OPTION
flush privileges 更新结构
exit 退出
iptables -A INPUT -p tcp --dport 3306 -j ACCEPT 开放3306端口
10、通过VI编辑器修改etc/my.cnf文件,增加两行代码,将编译格式改为UTF-8,以免出现中文乱码
vi /etc/my.cnf
在socket下面增加两行代码 character-set-server=utf8
collation-server=utf8_general_ci
wq 保存并退出
修改完成后重启MySQL服务
service mysqld restart
进入MySQL,用status查看编码集是否更改完成
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。