欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

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

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

公司主營業(yè)務(wù):網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、移動網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)建站是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)建站推出玉樹免費(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啟動命令)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ù)庫文件保存位置

dbpath=/usr/local/mongodb/data

# 日志文件的保存位置

logpath=/usr/local/mongodb/logs

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

logappend=true

# 需要身份驗(yàn)證

auth=true

# 運(yùn)行端口

port=27017

# 在后臺運(yùn)行

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ù)為開機(jī)啟動:將 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

# 是否已守護(hù)進(jìn)程方式運(yùn)行(后臺運(yùn)行)

fork = true

# 設(shè)置端口(默認(rèn)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

# 是否以安全認(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)用于開發(fā)驅(qū)動程序時(shí)的檢查客戶端接收數(shù)據(jù)的有效性

#objcheck = true

# Enable db quota management

# 啟用數(shù)據(jù)庫配額管理,默認(rèn)每個(gè)db可以有8個(gè)文件,可以用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)試項(xiàng)

#nocursors = true

# Ignore query hints 忽略查詢提示

#nohints = true

# 禁用http界面,默認(rèn)為localhost:28017

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

#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ù)制選項(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è)人對部分分重要參數(shù)的理解:

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

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

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

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

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

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

–-port:指定端口

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

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

參考鏈接:

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

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

當(dāng)前題目:mongodb的安裝/配置(文件)/啟動問題
分享URL:http://aaarwkj.com/article44/jpoeee.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、網(wǎng)站設(shè)計(jì)公司、商城網(wǎng)站、做網(wǎng)站、軟件開發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
青青草国产成人自拍视频在线观看| 亚洲国产精品热久久网站| 中文字幕精品一区二区三区精品 | 亚洲午夜激情免费试看| 免费一区二区三区精品| 日韩av黄色制服在线网站| 日韩精品一区二区三区夜色| 乱色精品熟女一区二区三区| av在线亚洲网站区一| av中文字幕一区二区三区| 年轻的母亲韩国三级| 国内精品久久大型新型| 日韩三级av黄片在线| 欧美激情中文字幕日韩精品| 日韩欧美国产综合第一页| 欧美一区二区三区人妻熟妇| 日韩av一区二区人妻| 亚洲精品一区二区三区高潮| 日韩在线国产精品一区| 欧美午夜福利一级高清| 蜜臀av在线国产一区| 激情四射五月天亚洲婷婷| 东京热男人的av天堂| 日本熟妇中文字幕三级久久| 精品久久久久久久中文字幕| 久久久久精品激情三级| 国产成人综合在线观看网站| 日本一区二区中文字幕视频 | 久草国产免费福利在线视频| 91色综合久久久久婷婷| 尤物在线免费观看视频| 国产精致成人免费视频| 亚洲第一狼人天堂在线| 国内精品久久久久久2021| 韩日av一区二区三区| 国产成人亚洲欧美激情| 日韩精品成人亚洲天堂| av免费在线观看大全| 懂色粉嫩蜜臀久久一区二区| 国产一区在线视频无卡顿| 亚洲精品欧美日韩久久|