内容へ移動
ClownWiki
ユーザ用ツール
ログイン
サイト用ツール
検索
ツール
文書の表示
以前のリビジョン
バックリンク
最近の変更
メディアマネージャー
サイトマップ
ログイン
>
最近の変更
メディアマネージャー
サイトマップ
トレース:
mongodb:install_old
この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。
====== Install from 10gen.repo ====== ※古い情報です。 <code> # vi /etc/yum.repos.d/10gen.repo </code> 64bit <code> [10gen] name=10gen Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64 gpgcheck=0 enabled=1 </code> 32bit <code> [10gen] name=10gen Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/i686 gpgcheck=0 enabled=1 </code> <code> # yum -y install mongo-10gen mongo-10gen-server </code> <code> # vi /etc/mongod.conf </code> <code> # mongo.conf #where to log logpath=/var/log/mongo/mongod.log logappend=true # fork and run in background fork = true #port = 27017 dbpath=/var/lib/mongo # location of pidfile pidfilepath = /var/run/mongodb/mongod.pid # Disables write-ahead journaling # nojournal = true # Enables periodic logging of CPU utilization and I/O wait #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) #objcheck = true # Enable db quota management #quota = true # Set oplogging level where n is # 0=off (default) # 1=W # 2=R # 3=both # 7=W+some reads #diaglog = 0 # Ignore query hints #nohints = true # Disable the HTTP interface (Defaults to localhost:27018). #nohttpinterface = true # Turns off server-side scripting. This will result in greatly limited # functionality #noscripting = true # Turns off table scans. Any query that would do a table scan fails. #notablescan = true # Disable data file preallocation. #noprealloc = true # Specify .ns file size for new databases. # nssize = <size> # Accout token for Mongo monitoring server. #mms-token = <token> # Server name for Mongo monitoring server. #mms-name = <server-name> # Ping interval for Mongo monitoring server. #mms-interval = <seconds> # Replication Options # in replicated mongo databases, specify here whether this is a slave or master #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 </code> <code> # chkconfig mongod on </code> <code> # /etc/rc.d/init.d/mongod start|stop|status </code> ====== Tips ====== MongoDBの起動に失敗する <code> # /etc/rc.d/init.d/mongod start Starting mongod: about to fork child process, waiting until server is ready for connections. all output going to: /var/log/mongo/mongod.log forked process: 1409 ERROR: child process failed, exited with error number 100 [FAILED] </code> ログを見ていると以下のようなエラーが <code> # less /var/log/mongo/mongod.log ~ [initandlisten] ERROR: Insufficient free space for journal files [initandlisten] Please make at least 3379MB available in /var/lib/mongo/journal or use --smallfiles ~ </code> journal filesの作成領域の空き容量が足りないとのことなので、あきらめてjournal filesを作らない。 <code> # vi /etc/mongod.conf ~ -) # nojournal = true +) nojournal = true ~ </code> 起動成功 <code> # /etc/rc.d/init.d/mongod start Starting mongod: about to fork child process, waiting until server is ready for connections. all output going to: /var/log/mongo/mongod.log forked process: 1425 child process started successfully, parent exiting [ OK ] </code>
mongodb/install_old.txt
· 最終更新: 2025/02/16 13:53 by
127.0.0.1
ページ用ツール
文書の表示
以前のリビジョン
バックリンク
文書の先頭へ