Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the copy-the-code domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/html/pcx3.com/wp-includes/functions.php on line 6121
How to enable remote access to MongoDB 🍃 in cPanel - PC✗3
How to enable remote access to MongoDB 🍃 in cPanel

How to enable remote access to MongoDB 🍃 in cPanel

Here is how to enable remote access to MongoDB in cPanel:

  1. Open port on the firewall
  2. Enable remote access in mongodb.conf
  3. Create a new admin user for mongodb

Open default MongoDB port 27017 on firewall

Default port for mongodb is 27017 so we need to allow incoming and outgoing connections to this port:

Under ConfigServer Firewall (CSF) go to Firewall Configuration and add port number 27017 in both TCP_IN and TCP_OUT

firewall configuration csf
firewall configuration csf
open port on firewall
open port on firewall

Save the changes and restart both lfd and csf services.


Enable remote connection to MongoDB

By default mongodb has remote access disabled and is configured to accept connections on localhost only.

nano /etc/mongod.conf

and under network interfaces put bindIp: 0.0.0.0 to accept connections on both hostname and the IP

Default mongod.conf

127.0.0.1
127.0.0.1

mongodb.conf to enable remote access

0.0.0.0
0.0.0.0

Create Admin User for MongoDB

  1. start mongod without access control
mongod --port 27017 --dbpath /data/db1

TIP: db_path can be found in the conf file: grep dbPath /etc/mongod.conf

2. connect to mongodb

mongo --port 27017

3. create new admin user for mongodb

use admin
db.createUser(

  {

    user: "USERNAME-HERE",

    pwd: "SOME-STRONG-PASSWORD-HERE",

    roles: [ { role: "userAdminAnyDatabase", db: "admin" } ]

  }

)

4. restart mongodb with access control

mongod --auth --port 27017 --dbpath /data/db1

5. now test the connection

mongo --port 27017 -u "USERNAME-HERE" -p "SOME-STRONG-PASSWORD-HERE" \
  --authenticationDatabase "admin"

To test the remote connection you can use a tool such as MongoDB Compass:

compass 1024x773 - How to enable remote access to MongoDB 🍃 in cPanel
compass2 1 1024x532 - How to enable remote access to MongoDB 🍃 in cPanel
whoami
Stefan Pejcic
Join the discussion

I enjoy constructive responses and professional comments to my posts, and invite anyone to comment or link to my site.