前言

在linux上安装mysql5.6版本,并远程连接mysql数据库操作

安装mysql

mysql的安装可以用yum安装更方便

  1. [root@yoyo ~]# cd /usr/local/
  2. [root@yoyo ~]# mkdir mysql-community-release
  3. [root@yoyo ~]# cd mysql-community-release
  4. [root@yoyo ~]# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
  5. [root@yoyo ~]# rpm -ivh mysql-community-release-el7-5.noarch.rpm
  6. [root@yoyo ~]# yum -y install mysql-community-server

安装完成后查看版本号:mysql -V

  1. [root@yoyo local]# mysql -V
  2. mysql Ver 14.14 Distrib 5.6.42, for Linux (x86_64) using EditLine wrapper

安装完成后重启mysql服务,查看状态是 Active: active (running) ,说明启动成功

启动服务:service mysqld restart

[root@yoyo local]# service mysqld restart

查看mysql运行状态:systemctl status mysql.service

[root@yoyo local]# systemctl status mysql.service

  1. [root@yoyo local]# service mysqld restart
  2. Redirecting to /bin/systemctl restart mysqld.service
  3. Job for mysqld.service failed because the control process exited with error code. See "systemctl status mysqld.service" and "journalctl -xe" for details.
  4. [root@yoyo ~]# systemctl status mysql.service
  5. mysqld.service - MySQL Community Server
  6. Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled)
  7. Active: active (running) since Tue 2019-01-15 09:53:42 CST; 47s ago
  8. Main PID: 946 (mysqld_safe)
  9. CGroup: /system.slice/mysqld.service
  10. ├─ 946 /bin/sh /usr/bin/mysqld_safe --basedir=/usr
  11. └─1282 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --log-error=/v...
  12. Jan 15 09:53:39 yoyo systemd[1]: Starting MySQL Community Server...
  13. Jan 15 09:53:40 yoyo mysqld_safe[946]: 190115 09:53:40 mysqld_safe Logging to '/var/log/mysqld.log'.
  14. Jan 15 09:53:40 yoyo mysqld_safe[946]: 190115 09:53:40 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
  15. Jan 15 09:53:42 yoyo systemd[1]: Started MySQL Community Server.

mysql重置密码

方法一:

初次安装使用mysql,root账户默认是没设置密码的,系统会给个临时密码,在/var/log/mysqld.log可以查看

[root@yoyo local]# grep 'temporary password' /var/log/mysqld.log

如下图所示,出现的就是临时密码,复制出来就可以登录mysql了

[root@yoyo local]# mysql -u root -p

看到Enter password: 输入密码,重置密码后exit退出mysql

  1. [root@yoyo local]# mysql -u root -p
  2. Enter password:
  3. Welcome to the MySQL monitor. Commands end with ; or \g.
  4. Your MySQL connection id is 26
  5. Server version: 5.6.42 MySQL Community Server (GPL)
  6. Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
  7. Oracle is a registered trademark of Oracle Corporation and/or its
  8. affiliates. Other names may be trademarks of their respective
  9. owners.
  10. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  11. # 重置密码
  12. mysql> update user set password = Password('root') where User = 'root';
  13. # 回车后执行(刷新MySQL系统权限相关的表):
  14. mysql> flush privileges;
  15. # 再执行exit退出:
  16. mysql> exit;
  17. Bye
  18. [root@yoyo local]#

方法二:

要是上一步找不到临时密码,那就用此方法,先停掉mysql,以安全方式启动

[root@yoyo local]# systemctl stop mysql.service

以安全方式启动mysql:

[root@yoyo local]# /usr/bin/mysqld_safe --skip-grant-tables >/dev/null 2>&1 &

然后执行

[root@yoyo local]# /usr/bin/mysql -u root mysql

出现“mysql>”提示符后输入:

  1. mysql> update user set password = Password('root') where User = 'root';
  2. 回车后执行(刷新MySQL系统权限相关的表):
  3. mysql> flush privileges;
  4. 再执行exit退出:
  5. mysql> exit;

退出后,使用以下命令登陆mysql,试试是否成功:

[root@yoyo local]#mysql -u root -p

按提示输入密码:root

  1. [root@yoyo local]# mysql -u root -p
  2. Enter password:
  3. Welcome to the MySQL monitor. Commands end with ; or \g.
  4. Your MySQL connection id is 27
  5. Server version: 5.6.42 MySQL Community Server (GPL)
  6. Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
  7. Oracle is a registered trademark of Oracle Corporation and/or its
  8. affiliates. Other names may be trademarks of their respective
  9. owners.
  10. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  11. mysql>

出现Welcome to the MySQL那就是登录成功了

查看mysql端口号

mysql默认端口是3306,如何查看msyql端口号呢?可以用root账号登录后,执行show variables like 'port';

  1. [root@yoyo local]# mysql -u root -p
  2. Enter password:
  3. Welcome to the MySQL monitor. Commands end with ; or \g.
  4. Your MySQL connection id is 33
  5. Server version: 5.6.42 MySQL Community Server (GPL)
  6. Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
  7. Oracle is a registered trademark of Oracle Corporation and/or its
  8. affiliates. Other names may be trademarks of their respective
  9. owners.
  10. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  11. mysql> show variables like 'port';
  12. +---------------+-------+
  13. | Variable_name | Value |
  14. +---------------+-------+
  15. | port | 3306 |
  16. +---------------+-------+
  17. 1 row in set (0.00 sec)
  18. mysql>

授权mysql远程连接

mysql在linux上安装完成后,为了方便的查看,可以在本地电脑上安装一个远程连接数据库的客户端,远程连上mysql

方法一:

先创建一个root新用户,登录密码为password,可以自己随便命名

mysql> create user 'root'@'%' identified by 'password';

  1. [root@yoyo sysconfig]# mysql -u root -p
  2. Enter password:
  3. Welcome to the MySQL monitor. Commands end with ; or \g.
  4. mysql> create user 'root'@'%' identified by 'password';
  5. ERROR 1396 (HY000): Operation CREATE USER failed for 'root'@'%'
  6. mysql> exit

方法二:

查看user表,把host为localhost,user为root的记录更新host为%就是允许远程访问了

操作mysql时候,先执行use mysql

  1. [root@yoyo sysconfig]# mysql -u root -p
  2. Enter password:
  3. mysql> use mysql
  4. Reading table information for completion of table and column names
  5. You can turn off this feature to get a quicker startup with -A
  6. \Database changed
  7. mysql> select user,host,password from user;
  8. +-------+-----------+-------------------------------------------+
  9. | user | host | password |
  10. +-------+-----------+-------------------------------------------+
  11. | root | yoyo | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |
  12. | root | 127.0.0.1 | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |
  13. | root | ::1 | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |
  14. | | yoyo | |
  15. | root1 | % | *668425423DB5193AF921380129F465A6425216D0 |
  16. | root | localhost | *2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19 |
  17. +-------+-----------+-------------------------------------------+
  18. 6 rows in set (0.00 sec)

如果看到root后面的host对应的是%说明有远程访问权限,显示localhost就 update更新它,如何flush privileges刷新系统权限

  1. mysql> use mysql
  2. mysql> update user set host = '%' where user = 'root';
  3. ERROR 1062 (23000): Duplicate entry '%-root' for key 'PRIMARY'
  4. mysql> flush privileges;
  5. Query OK, 0 rows affected (0.00 sec)
  6. mysql> select user,host,password from user;
  7. +-------+-----------+-------------------------------------------+
  8. | user | host | password |
  9. +-------+-----------+-------------------------------------------+
  10. | root | yoyo | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |
  11. | root | 127.0.0.1 | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |
  12. | root | ::1 | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |
  13. | | yoyo | |
  14. | root1 | % | *668425423DB5193AF921380129F465A6425216D0 |
  15. | root | % | *2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19 |
  16. +-------+-----------+-------------------------------------------+
  17. 6 rows in set (0.00 sec)
  18. mysql> exit

方法三:

授权法,给root用户远程登录的权限

  1. # 想root使用123456从任何主机连接到mysql服务器的话
  2. mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123546' WITH GRANT OPTION;
  3. # 如果你想允许用户root从ip为192.168.1.3的主机连接到mysql服务器,并使用123456作为密码
  4. mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.3' IDENTIFIED BY '123456' WITH GRANT OPTION;

接下来去阿里云ECS服务后台安全组-添加规则,新增3306端口访问权限,使用Navicat远程工具就可以连上了

这里的账号密码就是前面方法一里面设置的“root” 和“password”

开启与关闭服务

1启动mysql

service mysqld start

2查看mysql运行状态

service mysqld status # 或者 systemctl status mysql.service

3停掉mysql服务

service mysqld stop # 或者 systemctl stop mysql.service

4重启mysql

systemctl restart mysql.service

5查看运行进程

ps -ef | grep mysqld

  1. [root@yoyo sysconfig]# ps -ef | grep mysql
  2. mysql 2506 1 0 12:51 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe --basedir=/usr
  3. mysql 2674 2506 0 12:51 ? 00:00:00 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64mysql/plugin --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/lib/mysql/mysql.sock
  4. root 2748 1668 0 12:55 pts/0 00:00:00 grep --color=auto mysql

6查看mysql端口

netstat -tulpn |grep mysql

  1. [root@yoyo sysconfig]# netstat -tulpn |grep mysql
  2. tcp6 0 0 :::3306 :::* LISTEN 2674/mysqld

遇到问题

启动mysql的时候,出现Failed to start MySQL Community Server.具体报错如下

  1. [root@yoyo ~]# systemctl status mysql.service
  2. mysqld.service - MySQL Community Server
  3. Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled)
  4. Active: failed (Result: start-limit) since Mon 2019-01-14 20:31:27 CST; 13h ago
  5. Process: 26800 ExecStartPost=/usr/bin/mysql-systemd-start post (code=exited, status=0/SUCCESS)
  6. Process: 26799 ExecStart=/usr/bin/mysqld_safe --basedir=/usr (code=exited, status=1/FAILURE)
  7. Process: 26786 ExecStartPre=/usr/bin/mysql-systemd-start pre (code=exited, status=0/SUCCESS)
  8. Main PID: 26799 (code=exited, status=1/FAILURE)
  9. Jan 14 20:31:27 yoyo systemd[1]: Failed to start MySQL Community Server.
  10. Jan 14 20:31:27 yoyo systemd[1]: Unit mysqld.service entered failed state.
  11. Jan 14 20:31:27 yoyo systemd[1]: mysqld.service failed.
  12. Jan 14 20:31:27 yoyo systemd[1]: mysqld.service holdoff time over, scheduling restart.
  13. Jan 14 20:31:27 yoyo systemd[1]: start request repeated too quickly for mysqld.service
  14. Jan 14 20:31:27 yoyo systemd[1]: Failed to start MySQL Community Server.
  15. Jan 14 20:31:27 yoyo systemd[1]: Unit mysqld.service entered failed state.
  16. Jan 14 20:31:27 yoyo systemd[1]: mysqld.service failed.

刚开始以为是哪里配置有问题,后来百度搜了下,reboot重启linux服务器就解决了。

交流QQ群:779429633

Linux学习15-CentOS安装mysql5.6环境的更多相关文章

  1. Linux学习(一)------CentOs安装mysql5.5 数据库

    具体方法和步骤如下所示: 1.第一步就是看linu是否安装了mysql,经过rpm -qa|grep mysql查看到centos下安装了mysql5.1,那就开始卸载咯 2.接下来就是卸载mysql ...

  2. Linux学习之CentOS(一)--CentOS6.4环境搭建

    Linux学习之CentOS(一)--CentOS6.4环境搭建http://www.cnblogs.com/xiaoluo501395377/archive/2013/03/31/CentOs.ht ...

  3. Linux学习之CentOS(一)--CentOS6.5环境搭建

    一.前言 作为一个从事运维工作好几年的老运维来说,linux系统怎能不学呢?所以,这几天自己准备学习一下linux操作系统.废话不多说,直奔主题. 要学linux开发,首先得要安装linux系统吧,这 ...

  4. [转] Linux学习之CentOS(十三)--CentOS6.4下Mysql数据库的安装与配置

    from:  http://www.cnblogs.com/xiaoluo501395377/archive/2013/04/07/3003278.html 如果要在Linux上做j2ee开发,首先得 ...

  5. Linux学习之CentOS(十三)--CentOS6.4下Mysql数据库的安装与配置

    原文:http://www.cnblogs.com/xiaoluo501395377/archive/2013/04/07/3003278.html 如果要在Linux上做j2ee开发,首先得搭建好j ...

  6. linux学习之centos(三):mysql数据库的安装和配置

    前言:mysql简介 说到数据库,我们大多想到的是关系型数据库,比如mysql.oracle.sqlserver等等,这些数据库软件在windows上安装都非常的方便,在Linux上如果要安装数据库, ...

  7. Linux学习之CentOS(十三)--CentOS6.4下Mysql数据库的安装与配置(转)

    原文地址:http://www.cnblogs.com/xiaoluo501395377/archive/2013/04/07/3003278.html 如果要在Linux上做j2ee开发,首先得搭建 ...

  8. Linux学习之CentOS(五)--CentOS下VMware-Tools安装

    已经进入到了Linux学习之CentOS的第六篇随笔了,所以这里就介绍一下VMware-Tools的安装. VMware-Tools的安装 VMware-Tools 主要的功能就是让用户在虚拟机和真实 ...

  9. linux学习之centos(三):网卡配置

    Linux系统版本:Centos 6.5 在linux学习之centos(二):虚拟网络三种连接方式和SecureCRT的使用中,使用远程工具SecureCRT,通过“ifconfig eth0 + ...

  10. Linux - VMware和Centos安装

    目录 Linux - VMware和Centos安装 选择性 下载centos系统ISO镜像 安装虚拟机VMware虚拟机 1. 准备vmware软件 2. 解压软件包, 当前选择vm12 3. vm ...

随机推荐

  1. TCxGrid 把列移上移下。

    T

  2. 4.类型设计规范《.NET设计规范》

    类是引用类型的一般情况,占了框架中的大多情况,类的流行归于它支持面向对象的特征,以及它的普遍的适用性,基类和抽象类是两个特殊的逻辑分组,它们与扩张性有关. 由于CLR不支持多继承,接口类型可以用来模拟 ...

  3. Linux命令执行顺序— ||和&&和; 比较

    Linux命令执行顺序— ||和&&和; command1 && command2: &&左边的command1执行成功(返回0表示成功)后,& ...

  4. flask 封装

    #!/bin/env python# _*_coding:utf-8_*_#!!!!!!!!!!!!describe:this script shoud install python-devel an ...

  5. sonarQube代码管理工具

    第一步:安装环境:jdk 1.8   idea  mysql5.6以上  sonarqube5.6.6 第二歩:下载好sonarqube后,解压打开bin目录,启动相应OS目录下的StartSonar ...

  6. Spring框架学习01——使用IDEA开发Spring程序

    1.创建项目 点击“Create New Project”,新建项目 选择Maven项目 项目配置 使用本地安装的Maven 一直点击Next,最后点击完成当控制台中出现“BUILD SUCCESS” ...

  7. Android 常见SD卡操作

    目录 Android 常见SD卡操作 Android 常见SD卡操作 参考 https://blog.csdn.net/mad1989/article/details/37568667. [0.] E ...

  8. [ 转载 ] Android JNI(一)——NDK与JNI基础

    Android JNI(一)——NDK与JNI基础 隔壁老李头 关注  4.4 2018.05.09 17:15* 字数 5481 阅读 11468评论 8喜欢 140 本系列文章如下: Androi ...

  9. android 滑动冲突

    韩梦飞沙  韩亚飞  313134555@qq.com  yue31313  han_meng_fei_sha 通过move事件的 拦截. 在滑动组件中,重写 在拦截触摸事件的时候  这个方法, 然后 ...

  10. 吴恩达-coursera-机器学习-week4

    第八.神经网络:表述(Neural Networks: Representation) 8.1 非线性假设 8.2 神经元和大脑 8.3 模型表示1 8.4 模型表示2 8.5 样本和直观理解1 8. ...