MongoDB的安裝/配置(文件)/啟動(dòng) 問(wèn)題
公司主營(yíng)業(yè)務(wù):網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、移動(dòng)網(wǎng)站開(kāi)發(fā)等業(yè)務(wù)。幫助企業(yè)客戶(hù)真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)建站是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開(kāi)放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶(hù)帶來(lái)驚喜。創(chuàng)新互聯(lián)建站推出玉樹(shù)免費(fèi)做網(wǎng)站回饋大家。
下載地址:http://www.mongodb.org/downloads
[root@centos-1 software]# ll | grep mongodb-linux-x86_64-2.4.12.tar
-rw-r--r--. 1 root root 95267358 1月 6 11:02 mongodb-linux-x86_64-2.4.12.tar
[root@centos-1 software]# tar -xvf mongodb-linux-x86_64-2.4.12.tar
[root@centos-1 software]# cd mongodb-linux-x86_64-2.4.12
[root@centos-1 mongodb-linux-x86_64-2.4.12]# ll
總用量 64
drwxr-xr-x. 2 root root 4096 1月 7 13:13 bin
-rw-------. 1 nagios nagios 34520 8月 4 2013 GNU-AGPL-3.0
-rw-------. 1 nagios nagios 1359 8月 4 2013 README
-rw-------. 1 nagios nagios 18436 8月 4 2013 THIRD-PARTY-NOTICES
將ongodb-linux-x86_64-2.4.12 文件全部cp到 /usr/local/mongodb
[root@centos-1 mongodb-linux-x86_64-2.4.12]# cp -rf * /usr/local/mongodb/
[root@centos-1 mongodb]# cd /usr/local/mongodb
創(chuàng)建數(shù)據(jù)目錄:
[root@centos-1 mongodb]# mkdir data
創(chuàng)建日志文件:
[root@centos-1 mongodb]# touch logs
[root@centos-1 mongodb]# cd bin
[root@centos-1 bin]# pwd
/usr/local/mongodb/bin
[root@centos-1 bin]# ll
總用量 237824
-rwxr-xr-x. 1 root root 18316272 1月 6 14:30 bsondump
-rwxr-xr-x. 1 root root 9537192 1月 6 14:30 mongo
-rwxr-xr-x. 1 root root 18376872 1月 6 14:30 mongod
-rwxr-xr-x. 1 root root 18373328 1月 6 14:30 mongodump
-rwxr-xr-x. 1 root root 18328816 1月 6 14:30 mongoexport
-rwxr-xr-x. 1 root root 18377760 1月 6 14:30 mongofiles
-rwxr-xr-x. 1 root root 18340944 1月 6 14:30 mongoimport
-rwxr-xr-x. 1 root root 18320432 1月 6 14:30 mongooplog
-rwxr-xr-x. 1 root root 18320080 1月 6 14:30 mongoperf
-rwxr-xr-x. 1 root root 18381296 1月 6 14:30 mongorestore
-rwxr-xr-x. 1 root root 13868984 1月 6 14:30 mongos
-rwxr-xr-x. 1 root root 18286728 1月 6 14:30 mongosniff
-rwxr-xr-x. 1 root root 18366064 1月 6 14:30 mongostat
-rwxr-xr-x. 1 root root 18320944 1月 6 14:30 mongotop
將文件 mongo(客服端命令)/mongod(mongo啟動(dòng)命令)cp到/usr/bin(是這兩個(gè)命令成為全局命令)
[root@centos-1 bin]# cp mongod /usr/bin/
[root@centos-1 bin]# cp mongo /usr/bin/
創(chuàng)建mongo的配置文件:
[root@centos-1 bin]# touch /etc/mongodb.conf
文件中配置一下參數(shù)即可。
# 配置文件存放在/etc/mongod.conf
# ------------------------------一下是內(nèi)容---------------------------------------
# mongo.conf
# 數(shù)據(jù)庫(kù)文件保存位置
dbpath=/usr/local/mongodb/data
# 日志文件的保存位置
logpath=/usr/local/mongodb/logs
# 日志的記錄方式,日志以添加的方式保存
logappend=true
# 需要身份驗(yàn)證
auth=true
# 運(yùn)行端口
port=27017
# 在后臺(tái)運(yùn)行
fork=true
# pid 文件路徑
pidfilepath=/usr/local/mongodb/mongodb.pid
啟動(dòng)mongodb服務(wù):
[root@centos-1 bin]# mongod --config=/etc/mongodb.conf
about to fork child process, waiting until server is ready for connections.
forked process: 30913
all output going to: /usr/local/mongodb/logs
child process started successfully, parent exiting
查看服務(wù)是否成功啟動(dòng):
[root@centos-1 bin]# netstat -lanp | grep "27017"
unix 2 [ ACC ] STREAM LISTENING 211915 30932/mongod /tmp/mongodb-27017.sock
關(guān)閉mongodb服務(wù):
[root@centos-1 bin]# mongod --dbpath=/usr/local/mongodb/data --shutdown
killing process with pid: 30913
配置mongodb服務(wù)為開(kāi)機(jī)啟動(dòng):將 mongod --config=/etc/mongodb.conf 添加到/etc/rc.local
[root@centos-1 bin]# vi /etc/rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
mongod --config=/etc/mongodb.conf
touch /var/lock/subsys/local
/usr/local/net-snmp/sbin/snmpd -c /etc/snmpd.con
=======以上就是mongodb的配置和安裝===============================================================
mongodb.conf啟動(dòng)參數(shù)
配置文件存放在/etc/mongod.conf
#------------------------------一下是內(nèi)容---------------------------------------
# mongo.conf
# 日志文件存放位置
logpath=/var/log/mongo/mongod.log
# 以追加方式寫(xiě)入日志
logappend=true
# 是否已守護(hù)進(jìn)程方式運(yùn)行(后臺(tái)運(yùn)行)
fork = true
# 設(shè)置端口(默認(rèn)27017)
#port = 27017
# 數(shù)據(jù)庫(kù)文件保存位置
dbpath=/var/lib/mongo
# Enables periodic logging of CPU utilization and I/O wait
# 啟用定期記錄CPU利用率和 I/O 等待
#cpu = true
# Turn on/off security. Off is currently the default
# 是否以安全認(rèn)證方式運(yùn)行,默認(rèn)是不認(rèn)證的非安全方式
#noauth = true
#auth = true
# Verbose logging output.
# 詳細(xì)記錄輸出
#verbose = true
# Inspect all client data for validity on receipt (useful for
# developing drivers)用于開(kāi)發(fā)驅(qū)動(dòng)程序時(shí)的檢查客戶(hù)端接收數(shù)據(jù)的有效性
#objcheck = true
# Enable db quota management
# 啟用數(shù)據(jù)庫(kù)配額管理,默認(rèn)每個(gè)db可以有8個(gè)文件,可以用quotaFiles參數(shù)設(shè)置
#quota = true
# 設(shè)置oplog記錄等級(jí)
# Set oplogging level where n is
# 0=off (default)
# 1=W
# 2=R
# 3=both
# 7=W+some reads
#oplog = 0
# Diagnostic/debugging option 動(dòng)態(tài)調(diào)試項(xiàng)
#nocursors = true
# Ignore query hints 忽略查詢(xún)提示
#nohints = true
# 禁用http界面,默認(rèn)為localhost:28017
# Disable the HTTP interface (Defaults to localhost:27018).這個(gè)端口號(hào)寫(xiě)的是錯(cuò)的
#nohttpinterface = true
# 關(guān)閉服務(wù)器端腳本,這將極大的限制功能
# Turns off server-side scripting. This will result in greatly limited
# functionality
#noscripting = true
# 關(guān)閉掃描表,任何查詢(xún)將會(huì)是掃描失敗
# Turns off table scans. Any query that would do a table scan fails.
#notablescan = true
# 關(guān)閉數(shù)據(jù)文件預(yù)分配
# Disable data file preallocation.
#noprealloc = true
# 為新數(shù)據(jù)庫(kù)指定.ns文件的大小,單位:MB
# Specify .ns file size for new databases.
# nssize =
# Accout token for Mongo monitoring server.
#mms-token =
# mongo監(jiān)控服務(wù)器的名稱(chēng)
# Server name for Mongo monitoring server.
#mms-name =
# mongo監(jiān)控服務(wù)器的ping 間隔
# Ping interval for Mongo monitoring server.
#mms-interval =
# Replication Options 復(fù)制選項(xiàng)
# in replicated mongo databases, specify here whether this is a slave or master 在復(fù)制中,指定當(dāng)前是從屬關(guān)系
#slave = true
#source = master.example.com
# Slave only: specify a single database to replicate
#only = master.example.com
# or
#master = true
#source = slave.example.com
=====================================
個(gè)人對(duì)部分分重要參數(shù)的理解:
--dbpath:數(shù)據(jù)存放目錄,mongodb啟動(dòng)的必帶參數(shù)。
–logpath:日志存放文件,mongodb啟動(dòng)時(shí)如果沒(méi)有帶這個(gè)參數(shù)。
--logappend:日志以追加的方式寫(xiě)入日志文件。
--auth:登陸到mongo的用戶(hù)必須驗(yàn)證身份(提供密碼和賬號(hào)),空賬號(hào)可登陸但是無(wú)權(quán)限操作DB,
啟動(dòng)的時(shí)候如果沒(méi)有指定此參數(shù),那么登陸到mongo的用戶(hù)具有所有的權(quán)限(不安全),
admin架構(gòu)中的用戶(hù)權(quán)限最大,可以查詢(xún)其他任何架構(gòu)中的信息,其他架構(gòu)中的用戶(hù)只能查看自己架構(gòu)中的信息。
–-port:指定端口
--shutdown:關(guān)閉mongo服務(wù)
--fork:在后臺(tái)運(yùn)行,此參數(shù)必須同--logpath一起使用。
參考鏈接:
http://blog.csdn.net/yuwenruli/article/details/8529192
http://www.it165.net/database/html/201402/5303.html