使用Homebrew安装mysql(mac)

1.安装Homebrew

请参考:MAC安装使用Homebrew

2.查看mysql信息

brew search mysql
查看mysql版本

3.下载mysql

brew install mysql
下载成功信息

4.配置mysql初始信息

//执行
mysql_secure_installation

//如果报如下错误:
//ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

//执行
sudo chmod 777 /var/run/mysql

//再次执行
mysql_secure_installation
//开始对mysql进行安全设置
Securing the MySQL server deployment.

Connecting to MySQL using a blank password.

VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD component?
//是否设置验证密码组件:y
Press y|Y for Yes, any other key for No: y

There are three levels of password validation policy:

LOW    Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary                  file
//密码验证策略有三个级别:0=低,1=中,2=强:0
Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 0
Please set the password for root here.
//输入密码:admin123
New password: 
//重复密码:admin123
Re-enter new password: 

Estimated strength of the password: 50 
//密码强度50,是否使用这个密码:y
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.
//删除匿名用户(测试用用户):y
Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Success.

Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.
//不允许远程登录根目录:n   (此处根据个人选择,建议输入y)
Disallow root login remotely? (Press y|Y for Yes, any other key for No) : n

 ... skipping.
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

//是否删除测试数据库:y
Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
 - Dropping test database...
Success.

 - Removing privileges on test database...
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

//是否刷新权限:y
Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success.

//完成
All done! 

5.mysql的启动、停止、重启

mysql.server stop
mysql.server start
mysql.server restart

6.开始使用mysql

mysql -uroot -p
//回车输入密码即可

7.mysql常用命令

//创建数据库:
    CREATE DATABASE db_name;
//查看编码格式:
    SHOW CREATE DATABASE db_name;
//查看当前服务器下的数据库列表:
    SHOW DATABASES;
//修改编码格式:
    ALTER DATABASE db_name CHARACTER SET utf8;
//删除数据库:
    DROP DATABASE db_name;
//选择数据库:
    USE db_name;
//显示当前数据库:
    SELECT DATABASE();
//-----------------------------------------------------------------------------
//创建数据表(创建字段名):
    CREATE TABLE table_name (
        column_name data_type,
        ......
    )
//显示数据表列表:
    SHOW TABLES [FROM db_name];
//显示数据表的结构:
    SHOW COLUMNS FROM tb_name;
//修改数据表:
    //添加一列:
        ALTER TABLE tb_name ADD column_name data_type;
    //添加多列:
        ALTER TABLE tb_name ADD (column_name data_type,…);
    //删除列:
        ALTER TABLE tb_name DROP column_name,DROP column_name,……
//-----------------------------------------------------------------------------
//插入记录(创建字段下的数据):
    INSERT tb_name (col_name,...) VALUES(val,...);
//更新记录UPDATE:
    UPDATE tb_name SET age = age + 5, sex = 2 WHERE username='TOM';
//删除记录DELETE:
    DELETE FROM tb_name WHERE id=2;
//查找记录:
    SELECT expr,... FROM tb_name;

//排序
    SELECT * FROM stu ORDER BY 笔试 LIMIT 0,8

文中如有不全或错误,欢迎留言指出,谢谢支持……^ _ ^

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 为什么我们应该停下来 停下来的好处 案例 不停下来的坏处 案例 总结 在这个让人分心的年代,没什么比专注更能带给人...
    树酱大人阅读 594评论 0 0
  • 自以为,一片真心会换来一个家庭的幸福,可结果是天不随人愿。 直到离开,他都不愿看我一眼,可能他自己也觉得心中有愧吧...
    茗仁情坊阅读 279评论 0 0
  • 今日体验:今天和昨天体验最多的就是保险,昨天有一个洗车的车主让我算一下保险,咱们没等算出来呢车主自己用手机算出来了...
    王佳欢雪阅读 257评论 0 0
  • 下午去的黑龙潭公园,走马观花。 遥望玉龙雪山。 五孔桥,得月楼。 许多故事,过耳即忘。优美的风景、雪山的倒影,记忆...
    空中明月阅读 383评论 0 1