Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/securingsincity/mongoadmin
An web-based admin tool for MongoDB.
https://github.com/securingsincity/mongoadmin
Last synced: about 12 hours ago
JSON representation
An web-based admin tool for MongoDB.
- Host: GitHub
- URL: https://github.com/securingsincity/mongoadmin
- Owner: securingsincity
- Created: 2015-02-11T01:32:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-10-07T18:55:11.000Z (about 4 years ago)
- Last Synced: 2024-11-08T02:10:21.091Z (about 2 months ago)
- Language: Go
- Homepage:
- Size: 12.4 MB
- Stars: 4
- Watchers: 16
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#MongoAdmin
This is a tool for simple administration of your MongoDB instance. You can add and remove indexes and run simple find and find by id queries. This is not a secure or production ready solution by any stretch of the imagination. But it is a good first start, especially if you want a UI for a remote (non-production) mongodb instance.
## Requirements
Bower is required to build the UI and Go required to build the binary.
To install bower, have node and npm install and run `npm install -g bower`
## Install & Setup
Get the Go depedencies
`go get .`
Install the bower dependencies
`bower install`
Compile the binary in your server environment.
`go build`
Use the `sample.toml` as an example for how to configure the databases. The `label` is what shows up in the UI. `database` is the actual DB name, and `connectionString` is the string to connect to the MongoDB server. You can use replica sets, etc, whatever `mgo` will accept in `mgo.Dial`.
## Running
Just run the binary and pass the relative path to your config file as the only argument.`./mongoadmin sample.toml`