Skip to content

docker mongodb replica keyfile Permission denied #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Jaware opened this issue Jan 5, 2015 · 5 comments
Closed

docker mongodb replica keyfile Permission denied #13

Jaware opened this issue Jan 5, 2015 · 5 comments

Comments

@Jaware
Copy link

Jaware commented Jan 5, 2015

i use keyfile as docker mongodb replica security tool, however when run with -v /data/mongo/keyfile:/data/keyfile,it showed keyfile Permission denied ,the keyfile is 600(mongo need)

@yosifkit
Copy link
Member

yosifkit commented Jan 5, 2015

The permission mask should be fine, but the file will need to be owned by the mongodb user in the container (uid=999(mongodb) gid=999(mongodb)).

@Jaware
Copy link
Author

Jaware commented Jan 6, 2015

sorry ,i do not know how to do that,can you explain a little more clear

@yosifkit
Copy link
Member

yosifkit commented Jan 6, 2015

You'll just need to chown 999:999 keyfile before you run the docker container (you probably need sudo in there).

@Jaware Jaware closed this as completed Feb 7, 2015
@Jaware
Copy link
Author

Jaware commented Feb 7, 2015

thanks,sorry too busy these days

@oxr463
Copy link

oxr463 commented Jan 6, 2021

@yosifkit how can I do that from my docker-compose.yml file?

  db:
    image: mongo:4.4.3
    hostname: mongo-db-001
    command: --replSet bg0 --keyFile /etc/mongodb.key
    volumes:
      - ./mongodb.key:/etc/mongodb.key
    ports:
      - "27017:27017"
    restart: always
    environment:
      MONGO_INITDB_ROOT_USERNAME: 'foo'
      MONGO_INITDB_ROOT_PASSWORD: 'bar'
      MONGO_INITDB_DATABASE: baz

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants