Sponsored Content
Top Forums Shell Programming and Scripting Unable to open firewall port for external traffic. Post 303027422 by mohtashims on Saturday 15th of December 2018 08:53:04 AM
Old 12-15-2018
Neo helped resolve the issue. Changing MongoDB port to 0.0.0.0 and restarting works fine.
 

10 More Discussions You Might Find Interesting

1. Solaris

How to open SSH port on firewall?

Hi, So that potential responders will have an idea of what they're dealing with let me say that while I am a UNIX newbie I have been in IT for over 10 years. We have several SUN boxes running ver 5 of the OS that have been sitting dormant for some time as they were part of a now defunct... (3 Replies)
Discussion started by: pjewett
3 Replies

2. Linux

using firewall to block port

Hi, I will like to allow access to the mysql port (3306) to certain IP address. All other IP's should be automatically blocked. What is the best way to do this? (8 Replies)
Discussion started by: shantanuo
8 Replies

3. Solaris

Unable to open 3966 port in solaris

Unable to open 3966 port for buildforge in Solaris 10, anyone pls help me how to open the 3966 port in solaris. Thanks in Advance (1 Reply)
Discussion started by: durgaprasadr13
1 Replies

4. IP Networking

blocking traffic to destination network by port

I am trying to block ALL traffic except when from ports 9100,22,23 to destination network 192.0.0.0 (my WAN): 2 networks 192.0.3.0 with static route to 192.0.0.0 Shouldn't this work?: iptables -A INPUT -p tcp -d 192.0.0.0/24 --dport 22 -j ACCEPT iptables -A INPUT -p tcp -d 192.0.0.0/24... (3 Replies)
Discussion started by: herot
3 Replies

5. IP Networking

Tcp ip port open but no such process (merged: Release A Port)

i want to kill a tcp connection by killing its pid with netstat -an i got the tcp ip connection on port 5914 but when i type ps -a or ps-e there is not such process running on port 5914 is it possible that because i do not log on with proper user account i can not see that process running? (30 Replies)
Discussion started by: alinamadchian
30 Replies

6. UNIX for Advanced & Expert Users

Linux bridged firewall - monitor traffic & block IP

Hi All, I successfully configured a DEBIAN Lenny bridged firewall using ebtables. The bridged interface is br0. The ethernet interface are eth0 & eth1 respectively. All the traffic are transparently passing my firewall but i need to find & block temporarily the bandwidth abusers. Can... (1 Reply)
Discussion started by: coolatt
1 Replies

7. UNIX for Dummies Questions & Answers

Rsync port and firewall

hi guys I doing some collocation for a customer, customer requested to use other port for ssh not the default one. OK no problem and customer will be using rsync to sync backups among other things I know we have to open port let's say port 5999 for ssh since we are using that one now but I... (1 Reply)
Discussion started by: karlochacon
1 Replies

8. Red Hat

Unable to Open port 8080

Hi Experts, I am receiving below error while trying to connect port 8080. Could not open connection to the host, on port 8080 : connection refused. iptables configuration /etc/sysconfig/iptables # Firewall configuration written by system-config-firewall # Manual customization of... (1 Reply)
Discussion started by: sai_2507
1 Replies

9. Infrastructure Monitoring

How do I know what traffic is in network port?

If I would like to know what connection , data , traffic in a network port ( eth0 ) , what can I do ? ps. because I always found the network is very slow , so I would like what the network port is doing . Thanks Login ID ust3 is currently in read-only mode for multiple infractions. Creating... (0 Replies)
Discussion started by: ust03
0 Replies

10. AIX

How to re-route traffic from one port to another?

Hi Friends, How to do port forwarding in AIX? We would like to re route traffic from port A to port B on AIX LPAR. for example: my application is using 8080 port on LPAR and would like to use the 8081 instead of 8080. By default application was configured with 8080. But instead of changing... (2 Replies)
Discussion started by: System Admin 77
2 Replies
MONGODB(3)								 1								MONGODB(3)

The MongoDB class

INTRODUCTION
Instances of this class are used to interact with a database. To get a database: Example #1 Selecting a database <?php $m = new MongoClient(); // connect $db = $m->selectDB("example"); ?> Database names can use almost any character in the ASCII range. However, they cannot contain " ", "." or be the empty string. The name "system" is also reserved. A few unusual, but valid, database names: "null", "[x,y]", "3", """, "/". Unlike collection names, database names may contain "$". CLASS SYNOPSIS
MongoDB MongoDB Constants o const int$MongoDB::PROFILING_OFF0 o const int$MongoDB::PROFILING_SLOW1 o const int$MongoDB::PROFILING_ON2 Fields o public integer$w1 o public integer$wtimeout10000 Methods o public array MongoDB::authenticate (string $username, string $password) o public array MongoDB::command (array $command, [array $options = array()], [string &$hash]) o public MongoDB::__construct (MongoClient $conn, string $name) o public MongoCollection MongoDB::createCollection (string $name, [array $options]) o public array MongoDB::createDBRef (string $collection, mixed $document_or_id) o public array MongoDB::drop (void ) o public array MongoDB::dropCollection (mixed $coll) o public array MongoDB::execute (mixed $code, [array $args = array()]) o public bool MongoDB::forceError (void ) o public MongoCollection MongoDB::__get (string $name) o public array MongoDB::getCollectionInfo ([array $options = array()]) o public array MongoDB::getCollectionNames ([array $options = array()]) o public array MongoDB::getDBRef (array $ref) o public MongoGridFS MongoDB::getGridFS ([string $prefix = "fs"]) o public int MongoDB::getProfilingLevel (void ) o public array MongoDB::getReadPreference (void ) o public bool MongoDB::getSlaveOkay (void ) o public array MongoDB::getWriteConcern (void ) o public array MongoDB::lastError (void ) o public array MongoDB::listCollections ([array $options = array()]) o public array MongoDB::prevError (void ) o public array MongoDB::repair FALSE FALSE ([bool $preserve_cloned_files], [bool $backup_original_files]) o public array MongoDB::resetError (void ) o public MongoCollection MongoDB::selectCollection (string $name) o public int MongoDB::setProfilingLevel (int $level) o public bool MongoDB::setReadPreference (string $read_preference, [array $tags]) o public bool MongoDB::setSlaveOkay ([bool $ok = true]) o public bool MongoDB::setWriteConcern (mixed $w, [int $wtimeout]) o public string MongoDB::__toString (void ) PREDEFINED CONSTANTS
MONGODB LOG LEVELS
o MongoDB::PROFILING_OFF - 0 - Profiling is off. o MongoDB::PROFILING_SLOW - 1 - Profiling is on for slow operations (>100 ms). o MongoDB::PROFILING_ON - 2 - Profiling is on for all operations. FIELDS
o $w -1 - The number of servers to replicate a change to before returning success. Inherited by instances of MongoCollection derived from this. w functionality is only available in version 1.5.1+ of the MongoDB server and 1.0.8+ of the driver. w is used when- ever you need to adjust the acknowledgement level (MongoCollection.insert(3), MongoCollection.update(3), MongoCollec- tion.remove(3), MongoCollection.save(3), and MongoCollection.ensureIndex(3) all support this option). With the default value (1), an acknowledged operation will return once the database server has the operation. If the server goes down before the operation has been replicated to a secondary, it is possible to lose the operation forever. Thus, you can specify w to be higher than one and guarantee that at least one secondary has the operation before it is considered successful. For example, if w is 2, the primary and one secondary must have a record of the operation or the driver will throw a MongoCursorException. It is tempting to set w to the total number of secondaries + primary, but then if one secondary is down the operation will fail and an exception will be thrown, so usually w=2 is safest (primary and one secondary). o $wtimeout -10000 - The number of milliseconds to wait for MongoDB::$w replications to take place. Inherited by instances of MongoCollection derived from this. w functionality is only available in version 1.5.1+ of the MongoDB server and 1.0.8+ of the driver. Unless wtimeout is set, the server waits forever for replicating to w servers to finish. The driver defaults to waiting for 10 seconds, you can change this value to alter its behavior. SEE ALSO
MongoDB core docs on databases. PHP Documentation Group MONGODB(3)
All times are GMT -4. The time now is 10:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy