linux mysql 卸载,安装,測试全过程

Mysql卸载

yum remove mysql mysql-server mysql-libs compat-mysql51

rm -rf /var/lib/mysql

rm /etc/my.cnf

查看是否还有mysql软件:

rpm -qa|grep mysql

有的话继续删除

Mysql安装

1>若本地没有安装包 能够考虑使用yum命令进行下载

# yum -y install mysql-server

# yum -y install php-mysql

2>安装后,MySQL自己主动启动,默认没实username和password,设置新password

#   /usr/bin/mysqladmin -u root password ‘aaaaaa‘

[[email protected] ~]#   /usr/bin/mysqladmin -u root password ‘aaaaaa‘

/usr/bin/mysqladmin: connect to server at ‘localhost‘ failed

error: ‘Can‘t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock‘ (2)‘

Check that mysqld is running and that the socket: ‘/var/lib/mysql/mysql.sock‘ exists!

解决:

2.1》/etc/rc.d/init.d/mysqld status 看看mysql是否已经启动

3.2》service mysqld start

3>登录MySQL

>mysql -u root -p

enter password:’aaaaaa’

4>赋权连接的主机

#grant select,insert,update,delete on *.* to [email protected]  identified by ‘aaaaaa‘

grant select,insert,update,delete on *.* to [email protected]  identified by ‘aaaaaa‘;

5>更改默认字符集

# cp my-medium.cnf  /etc/my.cnf

在[client]下增加 default-character-set=utf8

在[mysqld]下增加 default-character-set=utf8

查找安装路径

Rpm -qa | grep mysql

Rpm -ql 包名

[[email protected] charsets]# find /usr -name my-medium.cnf

/usr/share/doc/mysql-server-5.1.73/my-medium.cnf

/usr/share/mysql/my-medium.cnf

#6>设置mysql开机自启动

# vi /etc/rc.local

增加例如以下一行

#/usr/share/mysql/mysql.server start

7>又一次启动MySQL

# /etc/init.d/mysql restart

service mysqld restart

8>測试;

[[email protected] ~]# mysql -u root -p

Enter password:

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 3

Server version: 5.1.73 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement                                                                                .

mysql> create database xxx

-> ;

Query OK, 1 row affected (0.06 sec)

mysql> ls

-> ;

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual th                                                                                at corresponds to your MySQL server version for the right syntax to use near                        
                                                        ‘ls‘ at line 1

mysql> show databases

-> ;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| mysql              |

| test               |

| xxx                |

+--------------------+

4 rows in set (0.06 sec)

mysql> use xxx;

Database changed

mysql> show database

-> ;

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual th                                                                                at corresponds to your MySQL server version for the right syntax to use near                        
                                                        ‘database‘ at line 1

mysql> show databases;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| mysql              |

| test               |

| xxx                |

+--------------------+

4 rows in set (0.01 sec)

mysql> use xxx;

Database changed

mysql> create table test(

-> int id not null,

-> varchar(20) name null);

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual th                                                                                at corresponds to your MySQL server version for the right syntax to use near                        
                                                        ‘int id not null,

varchar(20) name null)‘ at line 2

mysql> show tables;

Empty set (0.00 sec)

mysql> create table dbtest (

-> id int ,

-> name varchar);

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual th                                                                                at corresponds to your MySQL server version for the right syntax to use near                        
                                                        ‘)‘ at line 3

mysql> create table dbtest (

-> id int,

-> name varchar(10));

Query OK, 0 rows affected (0.07 sec)

mysql> show tables;

+---------------+

| Tables_in_xxx |

+---------------+

| dbtest        |

+---------------+

1 row in set (0.01 sec)

mysql> drop table xxx;

ERROR 1051 (42S02): Unknown table ‘xxx‘

mysql> drop table dbtest;

Query OK, 0 rows affected (0.00 sec)

mysql> ls

-> ;

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual th                                                                                at corresponds to your MySQL server version for the right syntax to use near                        
                                                        ‘ls‘ at line 1

mysql> show tables;

Empty set (0.00 sec)

mysql>

时间: 2024-10-07 04:27:14

linux mysql 卸载,安装,測试全过程的相关文章

linux mysql 卸载,安装,测试全过程

Mysql卸载 yum remove mysql mysql-server mysql-libs compat-mysql51 rm -rf /var/lib/mysql rm /etc/my.cnf 查看是否还有mysql软件: rpm -qa|grep mysql 有的话继续删除 Mysql安装 1>若本地没有安装包 可以考虑使用yum命令进行下载 # yum -y install mysql-server # yum -y install php-mysql 2>安装后,MySQL自动启

linux mysql 卸载后重装

$sudo apt-get remove mysql-common清理残留数据:$sudo dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P 按照正常安装步骤安装 注意:如果你想进行远程访问或控制,那么你要做两件事: 其一: mysql>GRANT ALL PRIVILEGES ON xoops.* TO [email protected]"%" IDENTIFIED BY "654321"; 允许x

Mysql 卸载 安装 全过程

Mysql一个熟悉的概念,一个全新的知识领域.开始我全方位数据库学习之旅. 一切,从安装开始,自己动手每一步. Linux在安装的过程中,可以勾选Mysql的安装,但是安装的版本是Mysql-5.1.73,版本非常低.必须重新安装,当前最新版本是5.7.但是卸载再安装,明显比空白Linux安装麻烦一点. 下面开始卸载/安装过程. 1. Mysql下载地址 https://dev.mysql.com/downloads/file/?id=469494 2. 确认OS版本 # more /etc/i

linux mysql默认安装在哪个目录

MySQL安装完成后不象SQL Server默认安装在一个目录,它的数据库文件.配置文件和命令文件分别在不同的目录,了解这些目录非常重要,尤其对于Linux的初学者,因为 Linux本身的目录结构就比较复杂,如果搞不清楚MySQL的安装目录那就无从谈起深入学习. 下面就介绍一下这几个目录. 1.数据库目录 /var/lib/mysql/ 2.配置文件 /usr/share/mysql(mysql.server命令及配置文件) 3.相关命令 /usr/bin(mysqladmin mysqldum

linux mysql查看安装信息

ps -ef|grep mysql root     17659     1  0  2011 ?        00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --socket=/var/lib/mysql/mysql.sock --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid mysql    17719 17659  0  

linux mysql rpm 安装

#将rpm包上传到/root/work目录(也可以是其他目录)MySQL-server-5.6.29-1.linux_glibc2.5.x86_64.rpmMySQL-client-5.6.29-1.linux_glibc2.5.x86_64.rpm #查看之前是否安装过mysqlrpm -qa | grep -i mysql#如果安装过,执行这行代码,删除之前安装过的mysqlrpm -ev --nodeps mysql-libs-5.1.71-1.el6.x86_64 #增加用户组mysql

linux - mysql - 卸载:使用rpm方式安装的mysql

一.查看系统中是否以rpm包安装的mysql rpm -qa | grep -i mysql 结果: 备注:如果有内容则证明是使用rpm方式安装的mysql 二.卸载 使用rpm -e 命令将上个命令中包列表进行卸载 如果报错:error: Failed dependencies 只要加入--nodeps就ok了 命令格式:rpm -e 包名称 --nodeps 三.删除mysql相关的服务 chkconfig --list | grep -i mysql chkconfig --del mys

linux mysql的安装

1.   下载 http://dev.mysql.com/downloads/mysql/ 或者使用wget下载: wget http://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-5.6.22-1.el6.i686.rpm-bundle.tar 2.   安装 2.1. 检测是否已经安装了mysql rpm -qa | grep mysql 如果已经安装了,将其卸载,如: rpm -e --nodeps  mysql-libs-5.1.73-5.e

一次Linux下卸载安装mysql-5.1.73的折腾

安装准备: rpm -qa|grep -i mysql 命令敲完后出来一堆mysql,各式各样的已安装mysql包,什么-java .-Python等等不一而足,一看懵了! 发挥不败精神,先了解情况,通过了解发现这是一台全新服务器,这些都是安装菜鸡把系统自带包都打上了,考虑再三还是卸载吧,简单迅速! 卸载:rpm -ev 使用rpm -ev 卸载后,使用whereis mysql或者find / -name mysql查看还有哪些目录留存,使用rm -rf 删除目录,删就删个彻底!!!! ps: