Linux | 一文搞定Centos下安装mysql及神器mycli

前言

文章目录

    • 前言
    • 一、下载mysql
      • 1、卸载原Linux中的mysql
      • 2、安装
      • 3、版本修改
      • 4、远程连接
      • 5、修改密码
    • 二、安装mysql神器mycli

一、下载mysql

1、卸载原Linux中的mysql

# 查看Linux原来的Mysql
rpm -qa | grep -i mysql

# 卸载原来的Mysql
rpm -e 文件名 --nodeps

2、安装

# 下载地址
wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm

# 使用rpm安装
rpm -ivh mysql80-community-release-el7-3.noarch.rpm

# 更新数据
yum makecache

Linux | 一文搞定Centos下安装mysql及神器mycli_第1张图片

Linux | 一文搞定Centos下安装mysql及神器mycli_第2张图片

# 查看下载安装服务端
yum list | grep mysql-community-server.x86_64

# 安装,过程输入俩次y
yum install mysql-community-server.x86_64

# 切换到mysql目录
cd /var/lib/mysql

# 尝试启动mysql
systemctl start mysqld

# 查看进程是否有mysql
ps aux | grep mysqld

# 获取密码
grep 'password' /var/log/mysqld.log

在这里插入图片描述

3、版本修改

# 将8.0的enbale改成0,将5.7的enable改成1
vim /etc/yum.repos.d/mysql-community.repo

# 修改后安装
yum install mysql-community-server

4、远程连接

# 登录mysql
mysql -u root -p

# 使用mysql
use mysql

# 设置权限
可使用
GRANT ALL PRIVILEGES on *.* to '用户名'@'主机' IDENTIFIED BY "你的密码" WITH GRANT OPTION;
或者
update user set host='%' where user='root'; 

# 执行生效
flush privileges;

5、修改密码

# 登录mysql
mysql -u root -p

# 使用mysql
use mysql

# 修改密码
update user set authentication_string=password('你的密码') where user='root';

# 执行生效
flush privileges;

二、安装mysql神器mycli

自动完成语法高亮功能

下载安装epel源:
wget --no-check-certificate https://mirrors.tuna.tsinghua.edu.cn/epel//epel-release-latest-7.noarch.rpm -O /tmp/epel-release-latest-7.noarch.rpm

# 安装
yum localinstall -y /tmp/epel-release-latest-7.noarch.rpm

# 安装pip
yum install -y python-pip

# 安装mycli
pip install mycli

# 配置换行
vim ~/.myclirc` 将multi_line改成True

#删除历史记录 
rm -rf .mycli-history

你可能感兴趣的:(服务器开发,mysql,centos,linux,mycli)