zoukankan      html  css  js  c++  java
  • mysql小知识

    启动与停止mysql

    windows_cmd        启动: net start mysql 
    
                       停止 : net stop mysql 
    
    linux              启动 : service mysql start或 /etc/inint.d/mysqld start
    
                       停止 : service mysql stop或 /etc/inint.d/mysqld stop

    登陆客户端

     mysql -uroot -proot -hlocalhost
    -u后面是用户名 -p后面是密码 -h后面是主机名,可以省略,默认是localhost

    允许远程访问mysql

    GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
    FLUSH PRIVILEGES;

    导入和导出sql文件

    导入:source D:/test.sql 或mysql -uroot -proot test < /data/test.sql
    导出:mysqldump -uroot -proot test > /opt/test.sql

    远程访问mysql(ubuntu) 错误代码:2003

    vim /etc/mysql/my.cnf
    将 bind-address =127.0.0.1 这一行注释掉

     

                       

  • 相关阅读:
    Emacs教程
    华为上机测试 2015
    奇偶排序
    C语言中的EOF和回车不一样
    jquery 使用方法
    1116
    1115
    1109
    Oracle14~23
    get与post的区别
  • 原文地址:https://www.cnblogs.com/sflik/p/4706188.html
Copyright © 2011-2022 走看看