15.问题:如何在Linux服务器上下载安装最新版数据库(MySQL8.0)?

第1步:访问MySQL官网https://dev.mysql.com/downloads/repo/yum/并下载MySQL最新yum安装包

点击下载https://repo.mysql.com//mysql80-community-release-el7-2.noarch.rpm

第2步:登录Linux服务器,通过yum下载并安装MySQL

    yum localinstall mysql80-community-release-el7-2.noarch.rpm
    yum install mysql-server

第3步:获取MySQL的root管理员的初始随机密码

    grep "password" /var/log/mysqld.log

注:如出现以下情况,那么最后的字符串就是初始密码

2019-04-06T03:01:26.413527Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: l*acIwc&s5.8

第4步:启动MySQL服务,然后以管理员身份登录数据库并修改初始密码

    systemctl start mysqld.service  
    mysql -u root -p;
    l*acIwc&s5.8
    ALTER USER USER() IDENTIFIED BY 'pAss#w0rd';    
    exit;
    mysql -u root -p;
    pAss#w0rd
    exit;

(略)第5步:vim编辑my.cnf配置文件

    # For advice on how to change settings please see
    # http://dev.mysql.com/doc/refman/8.0/en/server-configuration-defaults.html

    [mysqld]
    skip-grant-tables
    character_set_server=utf8
    #
    # Remove leading # and set to the amount of RAM for the most important data
    # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
    # innodb_buffer_pool_size = 128M
    #
    # Remove the leading "# " to disable binary logging
    # Binary logging captures changes between backups and is enabled by
    # default. It's default setting is log_bin=binlog
    # disable_log_bin
    #
    # Remove leading # to set options mainly useful for reporting servers.
    # The server defaults are faster for transactions and fast SELECTs.
    # Adjust sizes as needed, experiment to find the optimal values.
    # join_buffer_size = 128M
    # sort_buffer_size = 2M
    # read_rnd_buffer_size = 2M
    #
    # Remove leading # to revert to previous value for default_authentication_plugin,
    # this will increase compatibility with older clients. For background, see:
    # https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin
    # default-authentication-plugin=mysql_native_password

    datadir=/var/lib/mysql
    socket=/var/lib/mysql/mysql.sock

    [mysqld_safe]
    log-error=/var/log/mysqld.log
    pid-file=/var/run/mysqld/mysqld.pid

第5步:重启MySQL服务

    systemctl restart mysqld.service 

第6步:检查MySQL服务是否开启

    ps -A|grep mysql

注:如出现以下情况说明MySQL已经在运行中

    14384 ?        00:00:08 mysqld

第7步:使用root登录数据库

    mysql -u root -p

(略)第8步:创建一个用户并设置密码和授予远程登录权限

    use mysql;
    create user 'hbs'@'localhost' identified by 'pAss#w0rd';
    // 赋予hbs用户所有权限
    // grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码"; 
    grant all privileges on *.* to hbs@localhost identified by 'pAss#w0rd';
    // 刷新系统权限表
    flush privileges;
    // 查看用户权限
    show grants for hbs@localhost;
    exit;
    mysql -u hbs -p
    pAss#w0rd
    ALTER USER 'hbs'@'localhost' IDENTIFIED WITH mysql_native_password BY 'pAss#w0rd';

第8步:检查数据库编码

    show variables like 'char%';
    exit;

第9步:停止MySQL服务

    systemctl stop mysqld.service

第10步:vim编辑my.cnf配置文件

    # For advice on how to change settings please see
    # http://dev.mysql.com/doc/refman/8.0/en/server-configuration-defaults.html

    [client]
    port = 3306
    default-character-set = utf8mb4

    [mysql]
    default-character-set = utf8mb4

    [mysqld]
    #skip-grant-tables
    #character_set_server=utf8
    port = 3306
    character-set-client-handshake = FALSE
    character-set-server = utf8mb4
    collation-server = utf8mb4_0900_ai_ci
    init_connect='SET NAMES utf8mb4'
    skip-character-set-client-handshake = true

    #
    # Remove leading # and set to the amount of RAM for the most important data
    # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
    # innodb_buffer_pool_size = 128M
    #
    # Remove the leading "# " to disable binary logging
    # Binary logging captures changes between backups and is enabled by
    # default. It's default setting is log_bin=binlog
    # disable_log_bin
    #
    # Remove leading # to set options mainly useful for reporting servers.
    # The server defaults are faster for transactions and fast SELECTs.
    # Adjust sizes as needed, experiment to find the optimal values.
    # join_buffer_size = 128M
    # sort_buffer_size = 2M
    # read_rnd_buffer_size = 2M
    #
    # Remove leading # to revert to previous value for default_authentication_plugin,
    # this will increase compatibility with older clients. For background, see:
    # https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin
    # default-authentication-plugin=mysql_native_password

第11步:启动MySQL服务

    systemctl start mysqld.service

第12步:检查MySQL服务是否开启

    ps -A|grep mysql

第13步:以管理员身份登录MySQL数据库并检查数据库编码

    mysql -u root -p
    pAss#w0rd
    show variables like 'char%';
    输出结果为:(数据库默认编码为拉丁文)
    mysql> show variables like 'char%';
    +--------------------------+--------------------------------+
    | Variable_name            | Value                          |
    +--------------------------+--------------------------------+
    | character_set_client     | utf8mb4                        |
    | character_set_connection | utf8mb4                        |
    | character_set_database   | utf8mb4                        |
    | character_set_filesystem | binary                         |
    | character_set_results    | utf8mb4                        |
    | character_set_server     | utf8mb4                        |
    | character_set_system     | utf8                           |
    | character_sets_dir       | /usr/share/mysql-8.0/charsets/ |
    +--------------------------+--------------------------------+
    8 rows in set (0.01 sec)
    exit;

第14步:重启MySQL数据库服务

    systemctl restart mysqld.service 

第15步:检查3306端口是否正在运行(查看3306端口是否成功开启,即数据库是否启动)

    netstat -ln | grep 3306

注:如出现以下情况说明数据库已经成功开启

    tcp6       0      0 :::3306                 :::*                    LISTEN     
    tcp6       0      0 :::33060                :::*                    LISTEN 

至此,数据库已经安装并配置完毕!

第16步:将本地的sql文件上传到Linux服务器的根目录下

第17步:在Linux服务器远程登录端的窗口启动数据库服务器,并以管理员身份登录数据库

    create database db_niudan;
    use db_niudan;  
    source db_niudan.sql;
    show tables;
    select*from merchant;

至此,数据库已迁移完毕!

祝你好运~


4/6/2019 11:33:37 PM 已解决!