发布网友 发布时间:2022-04-24 17:56
共1个回答
热心网友 时间:2022-04-09 05:11
查看MySQL版本号命令:
[root@szxdb share]# mysql -V
显示:mysql Ver 14.14 Distrib 5.5.7-rc, for Linux (x86_) using readline 5.1
检查rpm里有没有mysql命令:
[root@szxdb share]# rpm -qa|grep -i mysql
显示:MySQL-client-5.5.7_rc-1.linux2.6
MySQL-server-5.5.7_rc-1.linux2.6
MySQL-devel-5.5.7_rc-1.linux2.6
查看查看是否安装过mysql:
[root@szxdb share]# rpm -qa mysql
卸载MySQL命令:
[root@szxdb share]# rpm -e ...
使用rpm -e mysql-5.0.77-3.el5.x86_卸载时候有出现错误。
[root@szxdb share]# rpm -e mysql-5.0.77-3.el5.x86_ --nodeps解决
--------------------------------------------------------------------------------------------------
mysql安装笔记
** 原装版本报错
在装操作系统的时候,默认安装了mysql,但是却有报错:
[root@STCJ mysql-software]# mysql -uroot
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
解决办法:由于原版本过低,这里卸载原版本,重新安装全新的mysql
** 版本冲突问题
[root@STCJ mysql-software]# rpm -e mysql-server-5.0.77-3.el5.x86_
在卸载源版本时,会出现依赖问题,需要顺次卸载(详见下面的“版本冲突解决列表”)
** 安装server
[root@STWEB mysql]# rpm -ivh MySQL-server-5.1.26-0.glibc23.i386.rpm
** 安装client
[root@STWEB mysql]# rpm -ivh MySQL-client-5.1.26-0.glibc23.i386.rpm
** mysql安全设置
+ [root@STWEB usr]# /usr/bin/mysql_secure_installation
+ root用户设置密码
+ 取消默认账户
+ 创建新账户、密码、赋权(本地权限、远程权限)
需要解决更多linux问题,详情请看 http://www.linuxprobe.com/chapter-00.html
望采纳!