zoukankan      html  css  js  c++  java
  • rhel_7.x 安装mysql

    http://database.51cto.com/art/201310/413006.htm

    MariaDB和MySQL 

    --mysql-5.7.12-1.el7.x86_64.rpm-bundle.tar

    ]# ls
    mysql-community-client-5.7.12-1.el7.x86_64.rpm
    mysql-community-common-5.7.12-1.el7.x86_64.rpm
    mysql-community-devel-5.7.12-1.el7.x86_64.rpm
    mysql-community-libs-5.7.12-1.el7.x86_64.rpm
    mysql-community-server-5.7.12-1.el7.x86_64.rpm

    一般把以上安装就可用

    清理冲突:MariaDB和MySQL 只能安装一个,相互间有冲突,

    rpm -qa |grep mariadb
    rpm -e --allmatches mariadb-server --nodeps

    How to start/stop/restart MySQL Server

    Now MySQL Server is installed on your system.

    To start MySQL Service, run command

    systemctl start mysqld

    To stop MySQL Service, run command

    systemctl stop mysqld

    To restart MySQL Service, run command

    systemctl restart mysqld

    To get status of MySQL Service, run command

    systemctl status mysqld

    Reset MySQL root password

    默认密码在这:cat /var/log/mysqld.log | grep localhost

    mysql -uroot -p

    set password='book_@BOOK%4321';
    grant all privileges on *.* to 'root'@'%' identified by 'book_@BOOK%4321';
    grant all privileges on *.* to 'ucr_param'@'%' identified by 'Abc%4321';

    flush privileges;

  • 相关阅读:
    如何设置eclipse默认打开文件方式
    CalendarUtil.java
    排班管理
    jquery ajax 发送邮件例子
    C# 打开文件夹和保存文件夹
    C# QQ邮箱授权码发送邮件
    IIS7 http自动跳转到https
    C# 关键字替换
    C# webBrowser 控件赋值
    C# Post提交数据
  • 原文地址:https://www.cnblogs.com/book-gary/p/5511628.html
Copyright © 2011-2022 走看看