Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I know that this is not good question but i am asking please help me any suggestion or solution .Is it possible to see the tables,
structure and data like phpmyadmin or parse.com provide the GUI.
I install the mongodb in my Ubuntu OS but i fetch the data through queries. Is it possible to use a tool like GUI based application so that i can see the data,table structure and other information.
i am new in mongodb if there is any solution to setup the gui based application that can interact with mongodb like MySQL and phpmyadmin
please provide the relevant information.
thanks
You can't beat RoboMongo. It's free, reliable and intuitive. Exactly what you want.
MongoDB Compass is a GUI for MongoDB.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I made a sort of currency system in my discord bot using MongoDB (Mongoose) and it works perfectly, but I have no idea how to host the bot 24/7. Maybe I should use a VPS? Maybe I could do something in the MongoDB itself because right now I use localhost. I'd prefer something free, but I could try and buy something cheap.
Thanks for your help!
You can use Repl.it to host your bot 24/7, it includes database support so once you transfer your files and everything. There's a little section about installing Mongo.
Discord.py: https://repl.it/talk/learn/Hosting-discordpy-bots-with-replit/11008
Discord.js: https://repl.it/talk/learn/Hosting-discordjs-bots-on-replit-Works-for-both-discordjs-and-Eris/11027
EDIT: And keep in mind this is all free.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
We've fed up with instability and unpredictability of ELK stack but still in love with the Kibana dashboards.
Hence I'm looking for some potential migration paths. MongoDB looks very promising: huge track record, lots of docs, ability to cope with json easily etc.
Is there some equivalent to Kibana working on top of MongoDB? Some web app which lets you easily run search queries over indexed data, make them into dashboards, add nice maps and diagrams etc.
I've looked into https://docs.mongodb.org/ecosystem/tools/administration-interfaces/ but this seems to be more about managing MongoDB itself rather than playing with data in it.
you could have a look at mongodb-compass click here
if you would want more, the new mongodb 3.2 has features to connect to any BI tool, like talend. Read more here
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am fairly new to golang, and trying to identify the best tools for the job. Currently I am evaluating the following packages:
https://github.com/mattes/migrate
https://github.com/DavidHuie/gomigrate
https://bitbucket.org/liamstask/goose/
I was wondering if anyone had any experience with these (or other packages) and could provide some comments.
We use mattes/migrate at work and are very happy with it. It works with plain SQL files, handles file naming by itself and can easily be automated via CLI. It doesn't do anything Go specific.
With gomigrate you need to create the files yourself and write code for executing the migrations.
Take a look at https://github.com/pressly/goose, a maintained fork of https://bitbucket.org/liamstask/goose/.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I have a lot of logged data stored into a database by a data logger. Basically i have a lot of rows with a timestamp and some values. I want to store this data into a db that has performance and can scale on a multi node structure to support fault tolerance behaviour (and balance requests). Typically i use MySQL but i find its scalability not simple for this type of application. This time, i want offer other db scenarios.
So: Mongo, Redis, Couchdb?
Thanks all.
This is a hard question to answer and not something we can really give answers to on SO.
Redis is quick for getting the data in, but you can not query on the values of the keys so searching would be harder.
MongoDB & CouchDB would both work well as they are document stores and can be used to store any format for the logs.
There are other options. I know Cassandra is used a lot for this task, but there is also ElasticSearch as in (ElasticSearch, Log Stash, Kibana) which is a great solution for central logging.
In the end it probably down to what you want to do with the data.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Is there a Mongoose alternative for MongoDB as when I use it in WebMatrix 2, it seems to cause it to crash all the time, but I really like the idea of mongoose, so is there an alternative around?
You can also try waterline, which has been seeing a lot of development lately. Make sure you use the MongoDb adapter.
Disclosure: I'm the creator of Camo.
I'd suggest Camo, which is a class-based ES6 ODM for Mongo.
Some features:
ES6 based (classes, promises, generators/iterators, etc)
Supports NeDB, which is the SQLite-equivalent for Mongo
Simple schema inheritance