NoSQL数据库 —MongoDB和Redis
title | price | sku |
sku | feature_name | feature_value |
./mongod --master |
./mongod --slave --source <masterhostname>[:<port>] |
./mongod --pairwith <remoteserver> --arbiter <arbiterserver> |
$ nohup mongod --dbpath /data1/db --port 27017 --master --slave --source localhost:27018 > /tmp/dblog1 & $ nohup mongod --dbpath /data2/db --port 27018 --master --slave --source localhost:27017 > /tmp/dblog2 & |