Linux安装mysql教程
安装之前需要先卸载mysql
1.1、下载压缩包
[root@guohaien package]# wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.25-linux-glibc2.12-x86_64.tar.gz
其中下载地址的获取方法如下所示
1、打开mysql官网
2、按下图所示的步骤点击
3、右键下图标记位置,复制下载地址
1.2、给mysql目录创建一个用户组和用户,并在mysql目录下创建一个data目录,具体的操作如下所示
[root@guohaien soft]# groupadd mysql
[root@guohaien soft]# useradd -g mysql -d /soft/mysql mysql
[root@guohaien soft]# cd mysql
[root@guohaien mysql]# mkdir data
1.3、先解压包,后进入文件夹mysql-5.7.25-linux-glibc2.12-x86_64,将里面的内容移动到上面创建的mysql目录下,并删除该文件夹,最后进入到mysql目录中,具体的操作顺序如下所示
[root@guohaien package]# tar zxvf mysql-5.7.25-linux-glibc2.12-x86_64.tar.gz
[root@guohaien package]# cd mysql-5.7.25-linux-glibc2.12-x86_64
[root@guohaien mysql-5.7.25-linux-glibc2.12-x86_64]# mv * /soft/mysql
[root@guohaien mysql-5.7.25-linux-glibc2.12-x86_64]# cd ..
[root@guohaien package]# rm -rf mysql-5.7.25-linux-glibc2.12-x86_64
[root@guohaien package]# cd ../mysql
1.4、初始化数据库,初始化的时候会生成一个随机密码,需要记录下来,后面会用到,其中密码在如下图标志的位置
初始化是可能会出现以下问题
其中一种输出是如下所示
./bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
这是因为没有安装libaio,只需要执行如下命令即可
[root@guohaien mysql]# yum install -y libaio
还有可能输出如下结果,这是因为data目录不为空,只需要进入到data目录执行rm -rf *
2019-03-19T06:04:15.345713Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2019-03-19T06:04:15.347456Z 0 [ERROR] --initialize specified but the data directory has files in it. Aborting.
2019-03-19T06:04:15.347485Z 0 [ERROR] Aborting
1.5、修改mysql.server文件中的basedir和datadir的值,一下是修改文件的命令,和修改的位置
[root@guohaien mysql]# vim support-files/mysql.server
修改完成按Esc,然后输入wq退出
1.6、创建配置文件
给默认的my.cnf文件备份
[root@guohaien mysql]# cp /etc/my.cnf /etc/my.cnf.bak
可以将my.cnf文件修改为如下所示
[mysqld]
basedir=/soft/mysql
datadir=/soft/mysql/data
character_set_server=utf8
init_connect='SET NAMES utf8'
[client]
default-character-set=utf8
1.7、启动mysql服务
[root@guohaien mysql]# ./support-files/mysql.server start
若输出以上结果则启动成功
可以通过如下步骤改变启动的方法,并设置为开机自启动
[root@guohaien mysql]# cp support-files/mysql.server /etc/init.d/mysqld
[root@guohaien mysql]# systemctl enable mysqld
mysqld.service is not a native service, redirecting to /sbin/chkconfig.
Executing /sbin/chkconfig mysqld on
修改后的mysql服务的启动命令有两种为
[root@guohaien mysql]# service mysqld start
[root@guohaien mysql]# systemctl start mysqld
其中关闭和重启服务只需要将start改为stop和restart即可
1.8、修改登录密码
[root@guohaien mysql]# ./bin/mysqladmin -u root -p password
Enter password:
New password:
Confirm new password:
Warning: Since password will be sent to server in plain text, use ssl connection to ensure password safety.
先输入原始密码,在输入两次新密码(其中原始密码即为上面生成的那个随机密码)
也可以使用如下命令修改密码
[root@guohaien mysql]# ./bin/mysqladmin -uroot -p'原始密码' password '新密码'
设置完成后就能使用新密码登录数据库
[root@guohaien mysql]# ./bin/mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.25 MySQL Community Server (GPL) Copyright (c) 2000, 2019, 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>
可以给登录服务创建一个软链接
[root@guohaien mysql]# ln -s /soft/mysql/bin/mysql /usr/bin/mysql
这样就能将上面的./bin/mysql 替换为mysql
1.9、mysql远程授权
目前只能在该服务器上登录mysql,远程并不能访问,登录mysql后执行如下sql
mysql> grant all privileges on *.* to 'root'@'%' identified by '密码';
Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
以上即为mysql5.7在centos7.6 64位系统下的安装及配置
2.1、关闭mysql服务
[root@guohaien /]# service mysqld stop
2.2、检查是否有rpm包,若是没有用rpm安装过mysql,应该就没有,若是有的话就要删除
检查的命令
[root@guohaien /]# rpm -qa|grep -i mysql
删除的命令
[root@guohaien /]# rpm -e 包名
有时候会有依赖无法删除,可以用命令
root@guohaien /]# rpm -e --nodeps 包名
2.3、检查是否有mysql相关目录或文件,若有则删除
检查的命令
[root@guohaien /]# find / -name mysql
删除的命令
[root@guohaien /]# rm -rf 目录或文件
2.4、删除mysql用户和分组
删除用户命令
[root@guohaien /]# userdel mysql
删除分组命令
[root@guohaien /]# groupdel mysql
卸载完成后就可以开始安装mysql
Linux安装mysql教程的更多相关文章
- Linux 安装Mysql(图文教程)
原文:Linux 安装Mysql(图文教程) 版权声明:本文为博主原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明. 本文链接:https://blog.csdn.net ...
- Linux 安装 MySQL 8 数据库(图文详细教程)
本教程手把手教你如何在 Linux 安装 MySQL 数据库,以 CentOS 7为例. 1. 下载并安装 MySQL 官方的 Yum Repository wget -i -c https://re ...
- linux安装mysql后root无法登录 sql 无法登录
linux安装mysql后root无法登录 问题:[root@localhost mysql]# mysql -u root -pEnter password: ERROR 1045 (28000): ...
- linux安装mysql~~~mysql5.6.12
Linux安装mysql服务器 准备: MySQL-client-5.6.12-1.rhel5.i386.rpm MySQL-server-5.6.12-1.rhel5.i386.rpm 首先检查环境 ...
- linux安装mysql全纪录[包括yum和rpm安装,编码,远程连接以及大小写问题]
linux安装mysql全纪录[包括yum和rpm安装,编码,远程连接以及大小写问题] 一.查看mysql是否已经安装 使用“whereis mysql”命令来查看mysql安装路径: [root@h ...
- linux安装mysql服务分两种安装方法:
linux安装mysql服务分两种安装方法: ①源码安装,优点是安装包比较小,只有十多M,缺点是安装依赖的库多,安装编译时间长,安装步骤复杂容易出错: ②使用官方编译好的二进制文件安装,优点是安装速度 ...
- 阿里云Centos7上安装MySQL教程
1 基本安装过程 1.查看系统是否安装了mysql软件 # rpm -qa|grep -i mysql 2.将已经安装过的软件卸载掉.注意:这样的卸载是不彻底,不过这里够用了 # yum remove ...
- linux安装MySQL后输入mysql显示 ERROR 2002 (HY000): Can't connect to local MySQL server through socket
我是小白,大佬勿喷 *** linux安装MySQL后输入mysql显示 ERROR 2002 (HY000): Can't connect to local MySQL server through ...
- CentOS7.5 安装MySql教程
CentOS7位安装MySql教程 1.先检查系统是否装有mysql rpm -qa | grep mysql 2.下载mysql的repo源 wget http://repo.mysql.com/m ...
随机推荐
- [转载]Java并发编程:深入剖析ThreadLocal
原文地址:http://www.cnblogs.com/dolphin0520/p/3920407.html 想必很多朋友对ThreadLocal并不陌生,今天我们就来一起探讨 ...
- 对股市骗子内部的一次apt测试
i春秋作家:jasonx 前言 由于这件事情搞了很久,中间很多截图已经没有了,所以文章中出现的部分截图是后面截的. 文中很多地方涉及敏感信息,为了我的人身安全,打码比较严重,还请多多理解. 起因 前不 ...
- GoLang学习之数据类型
数据类型 Go语言按类别有以下几种数据类型: bool,一个字节,值是true或者false,不可以用0或者1表示 int/uint(带符号为与不带符号位的int类型):根据平台不同是32位或者64位 ...
- linux的RPM软件包管理工具
RPM(Redhat Package Manage)原本是Red Hat Linux发行版专门用来管理Linux各项套件的程序,由于它遵循GPL规则且功能强大方便,因而广受欢迎.逐渐受到其他发行版的采 ...
- Redis 入门知识
Redis 的前世今生 Redis的诞生于2008年,由Salvatore Sanfilippo开发.最初作者在开发一个网站时,需要实现一个高性能的队列功能,在使用Mysql无果后,决定自己造一个轮子 ...
- 微信端支付宝支付,iframe改造,解决微信中无法使用支付宝付款和弹出“长按地址在浏览器中打开”
微信对支付宝的链接屏蔽了, https://mapi.alipay.com/gateway.do?_input_charset=utf-8¬ify_url=http%3A%2F%2Fzh ...
- vue教程1-07 模板和过滤器
vue教程1-07 模板和过滤器 一.模板 {{msg}} 数据更新模板变化 {{*msg}} 数据只绑定一次 {{{msg}}} HTML转意输出 <!DOCTYPE html> < ...
- 解决SecureCRT/Xshell无法以root用户连接Ubuntu
首先执行命令ps -e | grep ssh .查看是否有ssh进程运行. 确认没有ssh运行,且系统未安装openssh. 然后在系统终端界面内输入apt-get update命令. (确保系统 ...
- Intent的那些事儿
请原谅我用这么文艺的标题来阐释一颗无时无刻奔腾着的2B青年的心.可是今天要介绍的Intent绝不2B,甚至在我看来,或许还有些许飘逸的味道,至于飘逸在哪里呢?那我们就好好来剖析剖析Intent和它的好 ...
- iis7 bug解决
只需重新注册下AspNet就可以了,具体步骤如下 1 打开运行,输入cmd进入到命令提示符窗口. 2 进入到C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727 ...