Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mongod(1) [centos man page]

MONGOD(1)							  Mongo Database							 MONGOD(1)

NAME
mongod - the Mongo Daemon SYNOPSIS
DESCRIPTION
mongod is a core MongoDB daemon. You are not supposed to call it directly, please refer to the wiki if necessary. COPYRIGHT
Copyright 2007-2009 10gen SEE ALSO
For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org. AUTHOR
Antonin Kral 10gen June 2009 MONGOD(1)

Check Out this Related Man Page

MONGO(3)								 1								  MONGO(3)

The Mongo class [deprecated]

INTRODUCTION
A connection between PHP and MongoDB. This class extends MongoClient and provides access to several deprecated methods. For backwards compatibility, it also defaults the "w" option of its constructor argument to 0, which does not require write operations to be acknowledged by the server. See MongoClient.__construct(3) for more information. Warning This class has been DEPRECATED as of version 1.3.0. Relying on this feature is highly discouraged. Please use MongoClient instead. CLASS SYNOPSIS
Mongo Mongoextends MongoClient Methods o protected bool Mongo::connectUtil (void ) o publicstatic int Mongo::getPoolSize (void ) o public string Mongo::getSlave (void ) o public bool Mongo::getSlaveOkay (void ) o public array Mongo::poolDebug (void ) o publicstatic bool Mongo::setPoolSize (int $size) o public bool Mongo::setSlaveOkay ([bool $ok = true]) o public string Mongo::switchSlave (void ) Inherited methods o public bool MongoClient::close ([boolean|string $connection]) o public bool MongoClient::connect (void ) o public array MongoClient::dropDB (mixed $db) o public MongoDB MongoClient::__get (string $dbname) o publicstatic array MongoClient::getConnections (void ) o public array MongoClient::getHosts (void ) o public array MongoClient::getReadPreference (void ) o public array MongoClient::getWriteConcern (void ) o public bool MongoClient::killCursor (string $server_hash, int|MongoInt64 $id) o public array MongoClient::listDBs (void ) o public MongoCollection MongoClient::selectCollection (string $db, string $collection) o public MongoDB MongoClient::selectDB (string $name) o public bool MongoClient::setReadPreference (string $read_preference, [array $tags]) o public bool MongoClient::setWriteConcern (mixed $w, [int $wtimeout]) o public string MongoClient::__toString (void ) PHP Documentation Group MONGO(3)
Man Page

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to get last record?

Hello all, I have an out put of ls -l as follow : drwxr-xr-x 3 pipeline pipeline 4096 Jun 15 2011 mongodb-linux-x86_64-1.8.2 drwxr-xr-x 3 root root 4096 Feb 27 2012 mongodb-linux-x86_64-2.0.3 now i would like to get 2.0.3 i have tred this and it did not work ls -l /path... (4 Replies)
Discussion started by: adam25ca
4 Replies

2. Homework & Coursework Questions

Network administration problem

Assuming there are 6 machines A,B,C,D,E, and F. I need to create user Lanson on machine A, Joanna on machine B, Jhonson on machine C, Levette on machine D, Jhon on machine E, and Emerson on machine F. a) Lanson, and Joanna must be in the same group. b) Levette must have all his the files... (5 Replies)
Discussion started by: Auser
5 Replies

3. Red Hat

What to buy?

Hi, I'm looking at buying two desktops (with no Opsys) to install RedHat and do remote installs and networking. I would also like to run MongoDB/Puppet/Chef and some other open source products. I would like to know the following please - 1. What processor and how much memory should I go for... (0 Replies)
Discussion started by: gow
0 Replies

4. Shell Programming and Scripting

Sorting of YYYY-MM-DD

Hi , I have a script which basically reports the following criteria when run with a directory as an argument Filecount size Directory name owner group owner last modified time Example entry 1 100189 bytes 97.8408 KB 0.0955477 MB /var/log/mongo mongod... (5 Replies)
Discussion started by: maverick_here
5 Replies

5. Solaris

Sudden Service Busy Alarms

Hi, I am getting service busy alarms on my machines which are using MongoDB every now and then. When the service busy alarm appears, I get the following errors on my mongo router logs. Tue Apr 7 08:01:08.445 dbclient_rs nodes.ok = true hxcslc-b05:27014 Tue Apr 7 08:01:08.445 dbclient_rs... (0 Replies)
Discussion started by: sni_engineer
0 Replies

6. Solaris

IPS custom package user source

Hello guys, I'm new to this forum and got a question which may be quite uncommon. I created a custom IPS package (using this How to) with some software I have to install frequently to different Solaris 11 zones (MongoDB to be precise). This software will be installed under "/opt/mongodb" and... (1 Reply)
Discussion started by: dheitepriem
1 Replies

7. Shell Programming and Scripting

Pgrep not showing desired output

I am searching for a process that should be up and running. Im using the following command ps -ef | grep elasticsearch to get elastic+ 1673 1 0 Jan29 ? 05:08:56 /bin/java -Xms4g -Xmx4g -Djava.awt.headless=true -XX:+UseParNewGC -XX:+UseConcMarkSweepGC... (1 Reply)
Discussion started by: Junaid Subhani
1 Replies

8. Shell Programming and Scripting

Running a command in another cli

I am writing a script to login to to a mongo DB node and get the status of that machine. The usual work flow is : # mongo admin -u root -p root MongoDB shell version: 3.0.11 connecting to: admin rs0:SECONDARY> Then in the new prompt I can run a command to check status : ... (0 Replies)
Discussion started by: Junaid Subhani
0 Replies

9. Shell Programming and Scripting

Unable to open firewall port for external traffic.

Below is what i did to open the firewall port on # sudo firewall-cmd --zone=public --add-port=27012/tcp --permanent Warning: ALREADY_ENABLED: 27012:tcp success # sudo firewall-cmd --reload success # firewall-cmd --list-all public target: default icmp-block-inversion: no ... (10 Replies)
Discussion started by: mohtashims
10 Replies

10. UNIX for Beginners Questions & Answers

UNIX Shell Script to Remove MongoDB Document-Based on Many inputs

Here I am in a position to write a Unix Shell script(.sh) to remove MongoDB collection documents. I know how to remove based on a condition like below and it works for me. eval 'db.Collection.remove({TimeStamp:{$lte: "'$var'"}}) But I need to change the remove statement based on a new parameter... (1 Reply)
Discussion started by: senthilmadhanT
1 Replies