Unable to see server status
Seeing "Turn on admin in config.js to view server stats!" after specifying ME_CONFIG_MONGODB_ENABLE_ADMIN=true
Same. The solution was to install 0.54 rather than "latest". Latest is 1.0.0-alpha code which has no benefit over 0.54 for someone just learning.
Same problem here.
latest version have bug, can't show server status even set admin = true
Same. The solution was to install 0.54 rather than "latest". Latest is 1.0.0-alpha code which has no benefit over 0.54 for someone just learning.
For newbies (which i am), after pulling from docker ($ docker pull mongo-express:0.54.0), change your yaml deployment file configuration to:
image: mongo-express:0.54.0
for example (there's no indentation here, but your yaml file is indent-sensitive whether its spaces or tabs) :
apiVersion: apps/v1 kind: Deployment metadata: name: mongo-express labels: app: mongo-express spec: replicas: 1 selector: matchLabels: app: mongo-express template: metadata: labels: app: mongo-express spec: containers: - name: mongo-express image: mongo-express:0.54.0 <----------- apply it here ports: - containerPort: 8081 etc...
and when you delete and apply the yaml file, restart service and it should be able to fix the "Turn on admin in config.js to view server stats!" issue