-
Notifications
You must be signed in to change notification settings - Fork 649
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
Comments
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)). |
sorry ,i do not know how to do that,can you explain a little more clear |
You'll just need to |
thanks,sorry too busy these days |
@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 |
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)
The text was updated successfully, but these errors were encountered: