zoukankan      html  css  js  c++  java
  • Mac下brew安装与配置mysql

    一、打开mac控制台
    $ brew install mysql 
    
    二、启动mysql服务
    $ mysql.server start
    
    三、初始化mysql配置
     1 rainMacBook-Pro:~ comet$ mysql_secure_installation
     2 
     3 Securing the MySQL server deployment.
     4 
     5 Connecting to MySQL using a blank password.
     6 
     7 VALIDATE PASSWORD PLUGIN can be used to test passwords
     8 and improve security. It checks the strength of password
     9 and allows the users to set only those passwords which are
    10 secure enough. Would you like to setup VALIDATE PASSWORD plugin?
    11 
    12 Press y|Y for Yes, any other key for No: N   // 这个选yes的话密码长度就必须要设置为8位以上,但我只想要6位的
    13 Please set the password for root here.
    14 
    15 New password:             // 设置密码
    16 
    17 Re-enter new password:     // 再一次确认密码
    18 By default, a MySQL installation has an anonymous user,
    19 allowing anyone to log into MySQL without having to have
    20 a user account created for them. This is intended only for
    21 testing, and to make the installation go a bit smoother.
    22 You should remove them before moving into a production
    23 environment.
    24 
    25 Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y    // 移除不用密码的那个账户
    26 Success.
    27 
    28 
    29 Normally, root should only be allowed to connect from
    30 'localhost'. This ensures that someone cannot guess at
    31 the root password from the network.
    32 
    33 Disallow root login remotely? (Press y|Y for Yes, any other key for No) : n  //不接受root远程登录账号
    34 
    35  ... skipping.
    36 By default, MySQL comes with a database named 'test' that
    37 anyone can access. This is also intended only for testing,
    38 and should be removed before moving into a production
    39 environment.
    40 
    41 
    42 Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y  //删除text数据库
    43  - Dropping test database...
    44 Success.
    45 
    46  - Removing privileges on test database...
    47 Success.
    48 
    49 Reloading the privilege tables will ensure that all changes
    50 made so far will take effect immediately.
    51 
    52 Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
    53 Success.
    54 
    55 All done!
    
  • 相关阅读:
    STM32使用之GPIO
    STM32时钟分析
    stm32 rcc 时钟
    LCD与FSMC的连接原理
    经典算法题随机从连续的100个不重复数中取出100个不重复随机数
    所有win7机器都必须要做的一个优化!作用:让系统流畅,减少卡顿
    WebService返回自定义对象遇到的错误
    获取浏览器信息
    60行代码的俄罗斯方块
    SVN常用命令
  • 原文地址:https://www.cnblogs.com/raind/p/10071954.html
Copyright © 2011-2022 走看看