mysql5.7arm64.zip mysql5.7在麒麟arm64架构下的deb安装包
1.安装deb文件
dpkg -i *.deb
安装过程中会要求你设置的mysql的root密码
2.修改/etc/my.cnf
datadir = /data01/MPP/mysql/data
bind-address=0.0.0.0
skip-name-resolve
3.重启mysql
systemctl stop mysql.service
systemctl start mysql.service
4.查看状态
systemctl status mysqld
5.创建远程访问用户并赋权限
mysql -uroot -p
mysql> create user root identified by 'youpassword';
mysql> grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
mysql> flush privileges;
1