溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mongodb的安裝/配置(文件)/啟動 問題

發(fā)布時間:2020-06-23 12:18:45 來源:網(wǎng)絡(luò) 閱讀:1447 作者:dengwang123 欄目:MongoDB數(shù)據(jù)庫


mongodb的安裝/配置(文件)/啟動 問題

下載地址: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啟動命令)cp到/usr/bin(是這兩個命令成為全局命令)

[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ù)庫文件保存位置

dbpath=/usr/local/mongodb/data


# 日志文件的保存位置

logpath=/usr/local/mongodb/logs


# 日志的記錄方式,日志以添加的方式保存

logappend=true


# 需要身份驗證

auth=true


# 運行端口

port=27017


# 在后臺運行

fork=true


# pid 文件路徑

pidfilepath=/usr/local/mongodb/mongodb.pid



啟動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ù)是否成功啟動:

[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ù)為開機啟動:將 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啟動參數(shù)


配置文件存放在/etc/mongod.conf

#------------------------------一下是內(nèi)容---------------------------------------

# mongo.conf


# 日志文件存放位置

logpath=/var/log/mongo/mongod.log


# 以追加方式寫入日志

logappend=true


# 是否已守護進程方式運行(后臺運行)

fork = true


# 設(shè)置端口(默認27017)

#port = 27017


# 數(shù)據(jù)庫文件保存位置

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

# 是否以安全認證方式運行,默認是不認證的非安全方式

#noauth = true

#auth = true


# Verbose logging output.

# 詳細記錄輸出

#verbose = true


# Inspect all client data for validity on receipt (useful for

# developing drivers)用于開發(fā)驅(qū)動程序時的檢查客戶端接收數(shù)據(jù)的有效性

#objcheck = true


# Enable db quota management

# 啟用數(shù)據(jù)庫配額管理,默認每個db可以有8個文件,可以用quotaFiles參數(shù)設(shè)置

#quota = true

# 設(shè)置oplog記錄等級

# Set oplogging level where n is

#   0=off (default)

#   1=W

#   2=R

#   3=both

#   7=W+some reads

#oplog = 0


# Diagnostic/debugging option 動態(tài)調(diào)試項

#nocursors = true


# Ignore query hints 忽略查詢提示

#nohints = true

# 禁用http界面,默認為localhost:28017

# Disable the HTTP interface (Defaults to localhost:27018).這個端口號寫的是錯的

#nohttpinterface = true


# 關(guān)閉服務(wù)器端腳本,這將極大的限制功能

# Turns off server-side scripting.  This will result in greatly limited

# functionality

#noscripting = true

# 關(guān)閉掃描表,任何查詢將會是掃描失敗

# 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ù)庫指定.ns文件的大小,單位:MB

# Specify .ns file size for new databases.

# nssize = <size>


# Accout token for Mongo monitoring server.

#mms-token = <token>

# mongo監(jiān)控服務(wù)器的名稱

# Server name for Mongo monitoring server.

#mms-name = <server-name>

# mongo監(jiān)控服務(wù)器的ping 間隔

# Ping interval for Mongo monitoring server.

#mms-interval = <seconds>


# Replication Options 復(fù)制選項


# in replicated mongo databases, specify here whether this is a slave or master 在復(fù)制中,指定當前是從屬關(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


=====================================

個人對部分分重要參數(shù)的理解:


--dbpath:數(shù)據(jù)存放目錄,mongodb啟動的必帶參數(shù)。

–logpath:日志存放文件,mongodb啟動時如果沒有帶這個參數(shù)。

--logappend:日志以追加的方式寫入日志文件。

--auth:登陸到mongo的用戶必須驗證身份(提供密碼和賬號),空賬號可登陸但是無權(quán)限操作DB,

啟動的時候如果沒有指定此參數(shù),那么登陸到mongo的用戶具有所有的權(quán)限(不安全),

admin架構(gòu)中的用戶權(quán)限最大,可以查詢其他任何架構(gòu)中的信息,其他架構(gòu)中的用戶只能查看自己架構(gòu)中的信息。

–-port:指定端口

--shutdown:關(guān)閉mongo服務(wù)

--fork:在后臺運行,此參數(shù)必須同--logpath一起使用。


參考鏈接:

http://blog.csdn.net/yuwenruli/article/details/8529192

http://www.it165.net/database/html/201402/5303.html




向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI