IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> Mysql8.0+CentOS8.0安装 -> 正文阅读

[系统运维]Mysql8.0+CentOS8.0安装

Mysql8.0+CentOS8.0安装

? 由于MySQL版本不兼容原因,你需要安装MySQL5.7,而不是安装MySQL8,但是Centos8默认是安装MySQL8的,因为Centos8的AppStream仓库只包含MySQL8的包

环境

系统版本


mysql版本:

linux版本: CentOS 8


操作

yum安装mysql服务

yum install mysql-server

检查是否已经设置为开机启动MySQL服务

[root@localhost ~]# systemctl list-unit-files | grep mysqld
mysqld.service                                                         disabled 
mysqld@.service                                                        disabled 

设置开机启动

[root@localhost ~]# systemctl enable mysqld.service 
Created symlink /etc/systemd/system/multi-user.target.wants/mysqld.service → /usr/lib/systemd/system/mysqld.service.
# double check
[root@localhost ~]# systemctl list-unit-files|grep mysqld
mysqld.service                                                         enabled  
mysqld@.service                                                        disabled 

查看是否启动MySQL服务

[root@localhost ~]# ps -ef | grep mysql
root       34198    3968  0 06:01 pts/1    00:00:00 grep --color=auto mysql
[root@localhost ~]# 

修改root用户密码

[root@localhost ~]# mysql -uroot -p
Enter password: 
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
# 登录报错
[root@localhost mysql]# systemctl start mysqld.service 
[root@localhost mysql]# ps -ef | grep 'mysql'
mysql      34528       1  5 06:11 ?        00:00:00 /usr/libexec/mysqld --basedir=/usr
root       34609    3968  0 06:11 pts/1    00:00:00 grep --color=auto mysql
# 再次登录, 直接回车,没有密码
[root@localhost ~]# mysql -uroot -p
Enter password: 


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

mysql> alter user 'root'@'localhost' identified with mysql_native_password by 'root' ;
Query OK, 0 rows affected (0.01 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.02 sec)

mysql> 

创建一个新用户

mysql> create user mysql identified with mysql_native_password by 'mysql';
Query OK, 0 rows affected (0.00 sec)

# 删除用户
delete from mysql.user where Host ='localhost' and User = 'username';
drop user username;
# 授权
mysql> grant all on *.* to 'mysql'@'%';
Query OK, 0 rows affected (0.01 sec)
# 刷新权限
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

开通3306端口

[root@localhost man]# firewall-cmd --add-port=3306/tcp --permanent 
success

[root@localhost man]# firewall-cmd --reload 
success

测试连接

在这里插入图片描述

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2021-12-08 14:12:36  更:2021-12-08 14:13:57 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 14:28:46-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码