蜡笔筱新

博客园 首页 新随笔 联系 订阅 管理

2021年10月30日 #

摘要: 一、Redis安装配置 1、安装 官网地址:http://redis.io/download(根据自己想要的版本下载) 解压:tar -zvxf redis-3.0.7.tar.gz 将解压后的文件夹放到 /usr/local目录下 编译测试:接下来在终端中切换到/usr/local/redis目录 阅读全文
posted @ 2021-10-30 17:41 蜡笔筱新 阅读(27) 评论(0) 推荐(0) 编辑

2021年10月17日 #

摘要: 1、下载 # 进入 /usr/local cd /usr/local # 下载 sudo curl -O https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-4.0.9.tgz # 解压 sudo tar -zxvf mongodb-osx-s 阅读全文
posted @ 2021-10-17 17:58 蜡笔筱新 阅读(43) 评论(0) 推荐(0) 编辑

2021年10月16日 #

摘要: 基本操作: show databases; 显示所有已经存在的数据库 create database test; 创建名字为test的数据库 drop database test; 删除名字为test的数据库 use test;使用名字为test的数据库 show tables; 显示这个数据库中的 阅读全文
posted @ 2021-10-16 17:32 蜡笔筱新 阅读(45) 评论(0) 推荐(0) 编辑