You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MongoDB is currently unprotected. In this way, if you access the mongo shell in your host machine using just the raspberry IP, you can operate on it and drop a database.
$ mongo <raspberry_ip>/knot_web
> db.dropDatabase()
> use knot_fog
> db.dropDatabase()
To solve this issue we need to follow the MongoDB Security Checklist, specially to enable the minimal security configuration: authentication and access control mechanisms.
The text was updated successfully, but these errors were encountered:
The MongoDB is currently unprotected. In this way, if you access the mongo shell in your host machine using just the raspberry IP, you can operate on it and drop a database.
To solve this issue we need to follow the MongoDB Security Checklist, specially to enable the minimal security configuration: authentication and access control mechanisms.
The text was updated successfully, but these errors were encountered: