Questions tagged [mongo-express]
66 questions
0
votes
2 answers
Trying to connect to Mongo-express with Docker compose
im trying to create microservices with Spring Boot, so i prefered to use mongodb as a database for one of my microservices using docker compose :
here is my docker-compose.yml file content :
version: "3.8"
services:
postgres:
image: postgres
…

Ghàith Mn
- 35
- 1
- 2
- 7
0
votes
1 answer
Couldn't access mongo-express from Docker
I am trying to carry out some experiments with Docker, MongoDB, and mongo-express.
Here was what I did:
docker network create my-network
docker run -d -p 27017:27017 --network my-network --name my-mongo -e MONGO_INITDB_ROOT_USERNAME=admin -e…

Chong Lip Phang
- 8,755
- 5
- 65
- 100
0
votes
0 answers
How to run docker(s) with mogodb cluster?
I use this docker-compose which runs MongoDB+ mongo-express Web interface:
https://gist.github.com/adamelliotfields/cd49f056deab05250876286d7657dc4b
How can I run docker(s) with mongodb cluster and mongo-express as web interface?
A have attached my…

ZedZip
- 5,794
- 15
- 66
- 119
0
votes
1 answer
mongo-express connection problem with docker
I'm trying to set up docker running mongodb with docker-express and deployd.
Mongodb seems to be working just fine but mongo-express keeps throwing me the same error. I tried almost everything with the parameter as I am quite sure that there's…

sbluff
- 52
- 8
0
votes
0 answers
Not able to access EKS LoadBalancer external IP (link) of Mongo Express service
I am trying to deploy Moongo Express - MongoDB on EKS cluster. I have running pods of MongoDB and MongoExpress on EKS cluster. I have created internal service for MongoDB and external service for MongoExpress. Following is the description of my…

sandeep.ganage
- 1,409
- 2
- 21
- 47
0
votes
1 answer
Mongo-express base web authentication not working if credentials are stored as Kubernetes secrets
I have a mongo database and mongo-express running as Docker containers in Kubernetes Cluster.
I have enabled mongo-express base authentication by assigning the username and the password to ME_CONFIG_BASICAUTH_USERNAME and…

Mikolaj
- 1,231
- 1
- 16
- 34
0
votes
0 answers
Mongo express not loading porperly
I have been trying to learn "Docker Tutorial for Beginners [FULL COURSE in 3 Hours] by Tech world with Nana". I installed and configured everything as per the video, unfortunately I didn't get the actual output. which is, when I call the IP with…

Sreeju KS
- 39
- 9
0
votes
1 answer
How to expose a service in Kubernetes
I am trying to expose a service in a simple kubernetes cluster composed of a single worker and one master. In particular, I am using the descriptor below:
apiVersion: apps/v1
kind: Deployment
metadata:
name: mongodb-deployment
labels:
app:…

Roberto
- 1,281
- 3
- 16
- 23
0
votes
1 answer
How Generate an az container instance
a bit of context, I'm starting with the devOps, and create a docker-compose.yml to lift two containers, one with my mongodb and one with the express framework mongo-express, but now I want to bring it to my cloud in Azure, but the The truth is that…

Carlos Petit Quintero
- 11
- 1
- 3
0
votes
1 answer
cannot connect to mongo-express behind ingress k8s
I am trying to create the following:
Deployment for mongo
Deployment for mongo-express
ClusterIp for mongo
ClusterIp for mongo-express
An Ingress Service to route request to mongo-express
I want to be able to go to xyz.com/admin/auth-db-gui and…

keemahs
- 780
- 11
- 14
0
votes
3 answers
YAML provided on official Mongo Docker Image page doesn't work on CentOS
The YAML file below (originally provided here) works in a Windows and macOS docker environment. But when I run it in a CentOS environment, mongo-express can't connect to the MongoDB service and it doesn't show up in the browser at localhost:8081. I…

Osman
- 571
- 7
- 19
0
votes
0 answers
Improper Authentication with Docker Mongo Instance
I am trying to connect correctly to the mongo instance run by docker. I have the following config.yml
version: "3"
services:
mongo-server:
container_name: mongo-server
image: mongo:4.4.2
restart: always
ports:
-…

Josh Bowden
- 892
- 3
- 12
- 28
0
votes
1 answer
Problem running mongo and mongo-express in docker. What is the problem with docker-compose.yml file?
This is my doocker-compose.yml file
version: '3.1'
services:
mongo:
image: mongo
restart: always
container_name: mongo
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
…

Maksym Antoshkin
- 17
- 1
0
votes
0 answers
Mongo Express Error while using Basic Auth in Kubernetes
I am deploying a mongo-express pod in my kubernetes cluster in order to have a quick view of my db data.
I can use mongo-express normally if I do not config basic auth.
However, when I add the basic auth configuration to my Deployment yaml file. It…

potato
- 203
- 2
- 15
0
votes
0 answers
can't connect to azure cosmos mongodb api from mongo-express inside kubernetes
I have the following deployment settings for the mongo explored pod.
name: ME_CONFIG_MONGODB_CA_FILE
value: /usr/local/conf/test.pem
- name: ME_CONFIG_MONGODB_ENABLE_ADMIN
value: 'true'
- name: ME_CONFIG_OPTIONS_READONLY
value: 'true'
- name:…

sreenip
- 1