Questions tagged [rockmongo]

RockMongo is a MongoDB administration tool, written in PHP 5.

RockMongo is a MongoDB administration tool, written in PHP 5.

https://github.com/iwind/rockmongo

20 questions
4
votes
2 answers

Cannot deploy my application on OpenShift: "Failed to execute: 'control deploy' for /var/lib/openshift/XXX/jbossews"

When pushing new changes to my OpenShift repository, the application gets well built but cannot get deployed: Repository ssh://XXX@myapp-mydomain.rhcloud.com/~/git/app.git/ The jbossews cartridge is already stopped Stopping MongoDB…
sp00m
  • 47,968
  • 31
  • 142
  • 252
3
votes
1 answer

Is there an process to connect AWS lightsail mongoDB with mongo Compass?

I'm created lightsail instance for MEAN stack web app. So I watched the tutorial, they use rockmongo with GUI login. I created MongoDB database and user to access the database. So I can use it only using the ssh command line. So are there any…
1
vote
0 answers

Unable to install MongoDB extension in PHP 7.1

I am trying to install a Mongo DB designer tool Rock Mongo which requires PHP. I tried installing the mongodb.dll in php.ini by downloading the driver from Windows.php.net downloads, specifically the file:…
1
vote
1 answer

Mean Stack RockMongo on Google Cloud Platform

I have a Mean stack instance deployed on Google Cloud Platform, App Engine. I'm able to open an ssh tunnel and view rockmongo from a webbrowser: http://127.0.0.1:8888/rockmongo/index.php?action=admin.index&host=0 I can login with root and default…
ldeluca
  • 934
  • 3
  • 12
  • 25
1
vote
1 answer

mongodb atlas - rockmongo

I am having huge issues connecting to atlas (mongodb) via rockmongo. Here is the configuration I have. $MONGO["servers"][$i]["mongo_options"] = array("replicaSet" => "LuxeMassage-shard-0"); $MONGO["servers"][$i]["mongo_name"] = "LuxeMassage…
RussellHarrower
  • 6,470
  • 21
  • 102
  • 204
1
vote
1 answer

rockmongo not working despite having mongodb driver for php

I have installed php7.0 in ubuntu 16.04 I installed the driver as shown here http://php.net/manual/en/mongodb.installation.manual.php $ git clone https://github.com/mongodb/mongo-php-driver.git $ cd mongo-php-driver $ git submodule sync && git…
shubhendu
  • 341
  • 2
  • 17
1
vote
0 answers

Sum over documents in Rockmongo Query UI (mongoDB)

I want to sum up a field over several documents like these: {"_id":ObjectId("123"), "steps" : 50}, {"_id":ObjectId("456"), "steps" : 15}, {"_id":ObjectId("789"), "steps" : 80} Goal: Give the sum of steps over all documents (should be 50+15+80=145…
Sorcerer
  • 854
  • 1
  • 8
  • 20
1
vote
1 answer

What are the options for web-based db administration for Mongo on a scalable OpenShift app?

When I try to install the RockMongo cartridge on our OpenShift app, I get an error that the cartridge is not supported on scalable apps. I'm not attached to using RockMongo particularly; I've been happy enough with mongo-express. Wondering how I can…
River Satya
  • 1,059
  • 12
  • 20
1
vote
0 answers

Newly created user not able to login from RockMongo

here is sample user which I have created by mongo shell, { "_id": "admin.root", "user": "root", "db": "admin", "credentials": { "MONGODB-CR": "81e657aa9d80e314f75b9271216262fc" }, "roles": [ { "role":…
Nilesh Mistry
  • 339
  • 2
  • 13
1
vote
0 answers

Rockmongo on Openshift not displaying inserted data

I have a Node.js/MongoDB application deployed on Openshift. I can fetch and save data into the database from the application but Rockmongo cartridge shows that I have no documents inside my MongoDB database. I tried removing the Rockmongo cartridge…
Shantanu Paul
  • 706
  • 10
  • 26
1
vote
1 answer

How to compare and count each value of element with condition in mongoDB pipeline after unwinding?

This is my command I ran in tools->command { aggregate : "hashtags", pipeline: [ {$unwind:"$time"}, {$match:{"$time":{$gte:NumberInt(1450854385), $lte:NumberInt(1450854385)}}}, {$group:{"_id":"$word","count":{$sum:1}}} ] } which gave us…
shubhendu
  • 341
  • 2
  • 17
1
vote
1 answer

Rockmongo entries shows empty

Here MongoDB entries shows 3889 , but it all shows empty. But if i try to get with api then it showing all data. How that is possible, and which case this things happen ??
Nishchit
  • 18,284
  • 12
  • 54
  • 81
0
votes
1 answer

RockMongo Collections View - Error Description make encrpytion

I have installed and implemented the rockmongo tool and auth things are going cool. but while viewing the collections description the popup shows to view the data which are simple text, i need to show it as encrypted.
pk_
  • 114
  • 6
0
votes
1 answer

How I can use MongoDB GUI tool like mongo-express or RockMongo on Kubernetes cluster

I have MongoDB running on Kuberenetes cluster and I am looking for a MongoDB GUI tool like PHPmyAdmin to run it as a pod on the cluster and , I have Rockmongo running as a pod but it doesn't connect to MongoDB and also I couldn't expose it, I need…
Olva Tito
  • 73
  • 1
  • 7
0
votes
0 answers

Why is RockMongo not showing my databases?

I followed all the instructions for installing mongodb and RockMongo from here: http://www.hackthesec.co.in/2016/05/how-to-install-mongodb-with-rockmongo.html Instead of showing the RockMongo login/password screen, I am just getting a display of…
chip
  • 155
  • 1
  • 1
  • 10
1
2