MongoDB单机主从模式 1:启动master [linuxidc@linuxidc04 mongodb-linux-x86_64-2.6.4]$ mongod --dbpath /home/linuxidc/mongo
MongoDB单机主从模式
1:启动master
[linuxidc@linuxidc04 mongodb-linux-x86_64-2.6.4]$ mongod --dbpath /home/linuxidc/mongodb-linux-x86_64-2.6.4/data --port 10000 --master
2014-09-05T15:11:50.115+0800 [initandlisten] MongoDB starting : pid=23623 port=10000 dbpath=/home/linuxidc/mongodb-linux-x86_64-2.6.4/data master=1 64-bit host=linuxidc04
2014-09-05T15:11:50.116+0800 [initandlisten] db version v2.6.4
2014-09-05T15:11:50.116+0800 [initandlisten] git version: 3a830be0eb92d772aa855ebb711ac91d658ee910
2014-09-05T15:11:50.117+0800 [initandlisten] build info: Linux build7.nj1.10gen.cc 2.6.32-431.3.1.el6.x86_64 #1 SMP Fri Jan 3 21:39:27 UTC 2014 x86_64 BOOST_LIB_VERSION=1_49
2014-09-05T15:11:50.117+0800 [initandlisten] allocator: tcmalloc
2014-09-05T15:11:50.117+0800 [initandlisten] options: { master: true, net: { port: 10000 }, storage: { dbPath: "/home/linuxidc/mongodb-linux-x86_64-2.6.4/data" } }
2014-09-05T15:11:50.127+0800 [initandlisten] journal dir=/home/linuxidc/mongodb-linux-x86_64-2.6.4/data/journal
2014-09-05T15:11:50.127+0800 [initandlisten] recover : no journal files present, no recovery needed
2014-09-05T15:11:50.298+0800 [initandlisten] waiting for connections on port 10000
2:启动slave
[linuxidc@linuxidc04 ~]$ mongod --dbpath /home/linuxidc/mongodb-linux-x86_64-2.6.4/data2 --port 10001 --slave --source localhost:10000
2014-09-05T15:12:48.411+0800 [initandlisten] MongoDB starting : pid=23636 port=10001 dbpath=/home/linuxidc/mongodb-linux-x86_64-2.6.4/data2 slave=1 64-bit host=linuxidc04
2014-09-05T15:12:48.412+0800 [initandlisten] db version v2.6.4
2014-09-05T15:12:48.412+0800 [initandlisten] git version: 3a830be0eb92d772aa855ebb711ac91d658ee910
2014-09-05T15:12:48.412+0800 [initandlisten] build info: Linux build7.nj1.10gen.cc 2.6.32-431.3.1.el6.x86_64 #1 SMP Fri Jan 3 21:39:27 UTC 2014 x86_64 BOOST_LIB_VERSION=1_49
2014-09-05T15:12:48.412+0800 [initandlisten] allocator: tcmalloc
2014-09-05T15:12:48.413+0800 [initandlisten] options: { net: { port: 10001 }, slave: true, source: "localhost:10000", storage: { dbPath: "/home/linuxidc/mongodb-linux-x86_64-2.6.4/data2" } }
2014-09-05T15:12:48.417+0800 [initandlisten] journal dir=/home/linuxidc/mongodb-linux-x86_64-2.6.4/data2/journal
2014-09-05T15:12:48.417+0800 [initandlisten] recover : no journal files present, no recovery needed
2014-09-05T15:12:48.434+0800 [initandlisten] waiting for connections on port 10001
2014-09-05T15:12:49.438+0800 [replslave] repl: syncing from host:localhost:10000
2014-09-05T15:13:48.454+0800 [clientcursormon] mem (MB) res:51 virt:584
2014-09-05T15:13:48.454+0800 [clientcursormon] mapped (incl journal view):320
2014-09-05T15:13:48.454+0800 [clientcursormon] connections:0
2014-09-05T15:14:04.315+0800 [replslave] repl: checkpoint applied 285 operations
2014-09-05T15:14:04.316+0800 [replslave] repl: syncedTo: Sep 5 15:13:54 540962b2:1
3:显示数据
[linuxidc@linuxidc04 ~]$ mongo localhost:10000
MongoDB shell version: 2.6.4
connecting to: localhost:10000/test
> db.master.find()
{ "_id" : ObjectId("540942bed89f094a5fbd9b5a"), "uid" : 1000 }
{ "_id" : ObjectId("540946bcd89f094a5fbd9b5b"), "uid" : 1001 }
{ "_id" : ObjectId("540956b7789903d8baf6b1b3"), "uid" : 1002 }
>
从
[linuxidc@linuxidc04 mongodb-linux-x86_64-2.6.4]$ mongo localhost:10001
MongoDB shell version: 2.6.4
connecting to: localhost:10001/test
> db.master.find()
{ "_id" : ObjectId("540942bed89f094a5fbd9b5a"), "uid" : 1000 }
{ "_id" : ObjectId("540946bcd89f094a5fbd9b5b"), "uid" : 1001 }
{ "_id" : ObjectId("540956b7789903d8baf6b1b3"), "uid" : 1002 }
4:主写数据
> db.master.insert({uid:1004})
WriteResult({ "nInserted" : 1 })
> db.master.find()
{ "_id" : ObjectId("540942bed89f094a5fbd9b5a"), "uid" : 1000 }
{ "_id" : ObjectId("540946bcd89f094a5fbd9b5b"), "uid" : 1001 }
{ "_id" : ObjectId("540956b7789903d8baf6b1b3"), "uid" : 1002 }
{ "_id" : ObjectId("5409638c0a6617467df195ec"), "uid" : 1004 }
>
从查询数据
[linuxidc@linuxidc04 ~]$ cd mongodb-linux-x86_64-2.6.4
[linuxidc@linuxidc04 mongodb-linux-x86_64-2.6.4]$ mongo localhost:10001
MongoDB shell version: 2.6.4
connecting to: localhost:10001/test
> db.master.find()
{ "_id" : ObjectId("540942bed89f094a5fbd9b5a"), "uid" : 1000 }
{ "_id" : ObjectId("540946bcd89f094a5fbd9b5b"), "uid" : 1001 }
{ "_id" : ObjectId("540956b7789903d8baf6b1b3"), "uid" : 1002 }
> db.master.find()
{ "_id" : ObjectId("540942bed89f094a5fbd9b5a"), "uid" : 1000 }
{ "_id" : ObjectId("540946bcd89f094a5fbd9b5b"), "uid" : 1001 }
{ "_id" : ObjectId("540956b7789903d8baf6b1b3"), "uid" : 1002 }
{ "_id" : ObjectId("5409638c0a6617467df195ec"), "uid" : 1004 }
>
--------------------------------------分割线 --------------------------------------
CentOS编译安装MongoDB
CentOS 编译安装 MongoDB与mongoDB的php扩展
CentOS 6 使用 yum 安装MongoDB及服务器端配置
Ubuntu 13.04下安装MongoDB2.4.3
MongoDB入门必读(概念与实战并重)
《MongoDB 权威指南》(MongoDB: The Definitive Guide)英文文字版[PDF]
--------------------------------------分割线 --------------------------------------
从机日志

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
