中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

linux下安裝mongodb

發布時間:2020-02-27 23:00:06 來源:網絡 閱讀:461 作者:春暖花開RQW 欄目:MongoDB數據庫

1.下載安裝包
wget http://fastdl.mongodb.org/linux/mongodb-linux-i686-3.0.6.tgz
下載完成后解壓縮壓縮包
tar zxf mongodb-linux-i686-3.0.6.tgz

  1. 安裝準備
    將mongodb移動到/usr/local/mongodb文件夾
    mv mongodb-linux-i686-3.0.6 /usr/local/mongodb

創建數據庫文件夾與日志文件
mkdir /usr/local/mongodb/data
touch /usr/local/mongodb/logs

  1. 設置開機自啟動
    將mongodb啟動項目追加入rc.local保證mongodb在服務器開機時啟動
    echo "/usr/local/mongodb/bin/mongod --dbpath=/usr/local/mongodb/data –logpath=/usr/local/mongodb/logs –logappend --auth –port=27017" >> /etc/rc.local

  2. 啟動mongodb
    cd到mongodb目錄下的bin文件夾啟動mongodb
    //下面這個是需要權限的登錄方式, 用戶連接需要用戶名和密碼
    /usr/local/mongodb/bin/mongod --dbpath=/usr/local/mongodb/data --logpath=/usr/local/mongodb/logs --logappend --auth --port=27017 --fork

//這個是不需要密碼的
/usr/local/mongodb/bin/mongod --dbpath=/usr/local/mongodb/data --logpath=/usr/local /mongodb/logs --logappend --port=27017 --fork
通過配置文件啟動
啟動命令: /usr/local/mongodb/bin/mongod -f mongodb.conf
【代表端口號,如果不指定則默認為 27017 】

  1. 參數解釋: --dbpath 數據庫路徑(數據文件)
    --logpath 日志文件路徑
    --master 指定為主機器
    --slave 指定為從機器
    --source 指定主機器的IP地址
    --pologSize 指定日志文件大小不超過64M.因為resync是非常操作量大且耗時,最好通過設置一個足夠大的oplogSize來避免resync(默認的 oplog大小是空閑磁盤大小的5%)。
    --logappend 日志文件末尾添加
    --port 啟用端口號
    --fork 在后臺運行
    --only 指定只復制哪一個數據庫
    --slavedelay 指從復制檢測的時間間隔
    --auth 是否需要驗證權限登錄(用戶名和密碼)

-h [ --help ] show this usage information
--version show version information
-f [ --config ] arg configuration file specifying additional options
--port arg specify port number
--bind_ip arg local ip address to bind listener - all local ips
bound by default
-v [ --verbose ] be more verbose (include multiple times for more
verbosity e.g. -vvvvv)
--dbpath arg (=/data/db/) directory for datafiles 指定數據存放目錄
--quiet quieter output 靜默模式
--logpath arg file to send all output to instead of stdout 指定日志存放目錄
--logappend appnd to logpath instead of over-writing 指定日志是以追加還是以覆蓋的方式寫入日志文件
--fork fork server process 以創建子進程的方式運行
--cpu periodically show cpu and iowait utilization 周期性的顯示cpu和io的使用情況
--noauth run without security 無認證模式運行
--auth run with security 認證模式運行
--objcheck inspect client data for validity on receipt 檢查客戶端輸入數據的有效性檢查
--quota enable db quota management 開始數據庫配額的管理
--quotaFiles arg number of files allower per db, requires --quota 規定每個數據庫允許的文件數
--appsrvpath arg root directory for the babble app server
--nocursors diagnostic/debugging option 調試診斷選項
--nohints ignore query hints 忽略查詢命中率
--nohttpinterface disable http interface 關閉http接口,默認是28017
--noscripting disable scripting engine 關閉腳本引擎
--noprealloc disable data file preallocation 關閉數據庫文件大小預分配
--smallfiles use a smaller default file size 使用較小的默認文件大小
--nssize arg (=16) .ns file size (in MB) for new databases 新數據庫ns文件的默認大小
--diaglog arg 0=off 1=W 2=R 3=both 7=W+some reads 提供的方式,是只讀,只寫,還是讀寫都行,還是主要寫+部分的讀模式
--sysinfo print some diagnostic system information 打印系統診斷信息
--upgrade upgrade db if needed 如果需要就更新數據庫
--repair run repair on all dbs 修復所有的數據庫
--notablescan do not allow table scans 不運行表掃描
--syncdelay arg (=60) seconds between disk syncs (0 for never) 系統同步刷新磁盤的時間,默認是60s

Replication options:
--master master mode 主復制模式
--slave slave mode 從復制模式
--source arg when slave: specify master as <server:port> 當為從時,指定主的地址和端口
--only arg when slave: specify a single database to replicate 當為從時,指定需要從主復制的單一庫
--pairwith arg address of server to pair with
--arbiter arg address of arbiter server 仲裁服務器,在主主中和pair中用到
--autoresync automatically resync if slave data is stale 自動同步從的數據
--oplogSize arg size limit (in MB) for op log 指定操作日志的大小
--opIdMem arg size limit (in bytes) for in memory storage of op ids指定存儲操作日志的內存大小

Sharding options:
--configsvr declare this is a config db of a cluster 指定shard中的配置服務器
--shardsvr declare this is a shard db of a cluster 指定shard服務器

  1. 進入數據庫的CLI管理界面
    cd到mongodb目錄下的bin文件夾,執行命令./mongo
    運行如下:
    [root@namenode mongodb]# ./bin/mongo
    MongoDB shell version: 1.8.2
    connecting to: test

    use test;
    switched to db test

若數據庫出現如不能連上,則是一個data目錄下的mongod.lock文件的問題,可以用如下的修復的命令,
mongod --repair

向AI問一下細節

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

AI

资中县| 永修县| 错那县| 长丰县| 宝坻区| 古丈县| 绥江县| 玛多县| 海盐县| 山西省| 夏津县| 会宁县| 三江| 宁晋县| 建德市| 监利县| 柯坪县| 板桥市| 措勤县| 鲁山县| 江门市| 金塔县| 朔州市| 金山区| 含山县| 东海县| 新巴尔虎左旗| 石嘴山市| 石河子市| 白水县| 临湘市| 崇仁县| 静乐县| 喀喇沁旗| 大兴区| 本溪| 南漳县| 东兴市| 平阴县| 乌审旗| 陈巴尔虎旗|