zoukankan      html  css  js  c++  java
  • osx安装启动mysql

    安装mysql 最新版 56

    brew install mysql
    • 1

    启动报错

    ben:~ soul$ which mysql
    /usr/local/bin/mysql
    ben:~ soul$ mysql
    ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2

    解决办法

    运行

    ben:~ soul$ mysql.server start
    Starting MySQL
    . SUCCESS! 
    ben:~ soul$ mysql -uroot -p
    Enter password: 
    Welcome to the MySQL monitor.  Commands end with ; or g.
    Your MySQL connection id is 1
    Server version: 5.6.26 Homebrew

    设置 mysql 自启动

    设置 mysql root 密码

    ben:~ soul$ ls /usr/local/bin | grep mysql --color
    msql2mysql
    mysql
    mysql.server
    mysql_client_test
    mysql_client_test_embedded
    mysql_config
    mysql_config_editor
    mysql_convert_table_format
    mysql_embedded
    mysql_find_rows
    mysql_fix_extensions
    mysql_install_db
    mysql_plugin
    mysql_secure_installation
    mysql_setpermission
    mysql_tzinfo_to_sql
    mysql_upgrade
    mysql_waitpid
    mysql_zap
    mysqladmin
    mysqlbinlog
    mysqlbug
    mysqlcheck
    mysqld
    mysqld_multi
    mysqld_safe
    mysqldump
    mysqldumpslow
    mysqlhotcopy
    mysqlimport
    mysqlshow
    mysqlslap
    mysqltest
    mysqltest_embedded
    ben:~ soul$ 
    ben:~ soul$ mysql_secure_installation

    关键命令 mysql_secure_installation

     

  • 相关阅读:
    3月16日
    11月8日
    Code4 APP
    为什么alertView弹出后button会消失的问题
    设置某个类使用或者禁用ARC
    Bundle使用&NSBundle
    respondsToSelector
    NSDate获取当前时区的时间
    iOS enum 定义与使用
    IOS开发之纯代码界面--基本控件使用篇 ┊
  • 原文地址:https://www.cnblogs.com/ymy124/p/4848575.html
Copyright © 2011-2022 走看看