📝 Writing docs.

pull/1/head
Zhang Peng 2018-10-11 09:58:02 +08:00
parent 3aea381f8c
commit 68fbd065a7
2 changed files with 107 additions and 0 deletions

View File

@ -0,0 +1,49 @@
# Mongodb 安装
<!-- TOC depthFrom:2 depthTo:3 -->
- [安装](#安装)
- [启动](#启动)
- [脚本](#脚本)
<!-- /TOC -->
## 安装
安装步骤如下:
1下载并解压到本地
进入官网下载地址https://www.mongodb.com/download-center#community ,选择合适的版本下载。
我选择的是最新稳定版本 3.6.3https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.3.tgz
我个人喜欢存放在:`/opt/mongodb`
```
wget -O /opt/mongodb/mongodb-linux-x86_64-3.6.3.tgz https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.3.tgz
cd /opt/mongodb
tar zxvf mongodb-linux-x86_64-3.6.3.tgz
mv mongodb-linux-x86_64-3.6.3 mongodb-3.6.3
mkdir -p /data/db
```
## 启动
**启动 mongodb 服务**
```
cd /opt/mongodb/mongodb-3.6.3/bin
./mongod --dbpath=/data/db
```
**启动 mongodb 客户端**
```
cd /opt/mongodb/mongodb-3.6.3/bin
./mongo
```
## 脚本
| [安装脚本](https://github.com/dunwu/linux/tree/master/codes/deploy/tool/mongodb) |

View File

@ -0,0 +1,58 @@
# Redis 安装
<!-- TOC depthFrom:2 depthTo:3 -->
- [安装](#安装)
- [启动](#启动)
- [脚本](#脚本)
<!-- /TOC -->
## 安装
安装步骤如下:
1下载并解压到本地
进入官网下载地址https://redis.io/download ,选择合适的版本下载。
我选择的是最新稳定版本 4.0.8http://download.redis.io/releases/redis-4.0.8.tar.gz
我个人喜欢存放在:`/opt/redis`
```
wget -O /opt/redis/redis-4.0.8.tar.gz http://download.redis.io/releases/redis-4.0.8.tar.gz
cd /opt/redis
tar zxvf redis-4.0.8.tar.gz
```
2编译安装
执行以下命令:
```
cd /opt/redis/redis-4.0.8
make
```
## 启动
**启动 redis 服务**
```
cd /opt/redis/redis-4.0.8/src
./redis-server
```
**启动 redis 客户端**
```
cd /opt/redis/redis-4.0.8/src
./redis-cli
```
## 脚本
以上两种安装方式,我都写了脚本去执行:
| [安装脚本](https://github.com/dunwu/linux/tree/master/codes/deploy/tool/redis) |