MySQL
MySQL安装
rpm安装
yum安装
压缩包安装
安装包:https://cdn.mysql.com/archives/mysql-5.6/mysql-5.6.51-linux-glibc2.12-x86_64.tar.gz
MySQL卸载
1 | //rpm包安装方式卸载 |
MySQL常见错误
安装
Found option without preceding group in config file /etc/my.cnf at line 1!
error while loading shared libraries: libaio.so.1
场景:
在CentOS7.6系统下安装Mysql5.7时,初始化的时候报错:
1 | mysqld: error while loading shared libraries: libaio.so.1:cannot open shared object file: No such file or directory |
解决:
因为是新的系统,并没有安装所需要的依赖包
1 | yum install -y libaio |
然后重新初始化即可。