当前位置:   article > 正文

ubuntu安装mysql 5.7_ubuntu24 mysql5.7tar安装

ubuntu24 mysql5.7tar安装
  1. 一条命令安装mysql :
    apt-get install mysql-client mysql-server

     

  2. 启动:
    service mysql start

     

  3. 停止:
    service mysql stop

     

  4. 重启动:
    service mysql restart

     

  5. 修改root密码:

    1. // 登录数据库
    2. mysql -uroot -p
    3. //选择mysql数据库
    4. use mysql;
    5. update user set plugin='mysql_native_password';
    6. update user set authentication_string=password('111222') where user='root' and host='localhost';
    7. flush privileges;

     

  6. 删除msyql
    1. apt-get autoremove --purge mysql-server-5.0
    2. apt-get remove mysql-server
    3. apt-get autoremove mysql-server
    4. apt-get remove mysql-common

     

  7. 清理残留
    dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P

     

  8. 数据库文件位置

    1. // 数据库文件位置
    2. /var/lib/mysql
    3. //配置文件位置 mysqld.cnf
    4. /etc/mysql/mysql.conf.d/
    5. // 修改配置文件
    6. vim mysqld.cnf
    7. // 加大连接数
    8. max_connections = 1000
    9. // 注释掉仅限本级访问
    10. #bind-address = 127.0.0.1

     

  9. 修改字符集

    1. ubuntu刚安装完mysql,默认字符集是latin1,现在我想修改为utf8
    2. 1. 打开mysql配置文件:
    3. 在 【client】下追加:
    4. default-character-set=utf8
    5. 在 【mysqld】下追加:
    6. character-set-server=utf8
    7. 在 【mysql】 下追加:
    8. default-character-set=utf8
    9. 保存并退出
    10. 注: 我的【mysqld】在 /etc/mysql/mysql.conf.d/mysqld.cnf
    11. 我的【mysql】 在 /etc/mysql/conf.d/mysql.cnf
    12. 我的【client】 在 /etc/mysql/debian.cnf
    13. 2. 重启mysql
    14. service mysql restart

     

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/978481
推荐阅读
相关标签
  

闽ICP备14008679号