Не может запустить mongodb при открытии аутентификации на mongod.conf
Я не могу запустить mongod, когда раскомментирую параметры "security:authorization:enabled" в /etc/mongod.conf? на mongodb 3.4.2 на centos6.5;
это распечатка:
sudo service mongod restart
Stopping mongod: [ OK ]
Starting mongod: [FAILED]
это мой файл mongod.conf: вот распечатка:
# mongod.conf
# for documentation of all options, see:
# http://docs.mongodb.org/manual/reference/configuration-options/
# where to write logging data.
systemLog:
destination: file
logAppend: true
path: /var/log/mongodb/mongod.log
# Where and how to store data.
storage:
dbPath: /var/lib/mongo
journal:
enabled: true
# engine:
# mmapv1:
# wiredTiger:
# how the process runs
processManagement:
fork: true # fork and run in background
pidFilePath: /var/run/mongodb/mongod.pid # location of pidfile
# network interfaces
net:
port: 58018
bindIp: 127.0.0.1 # Listen to local interface only, comment to listen on all interfaces.
#security: <---uncomment here will start failed
# authorization:enabled <---uncomment here will start failed
#operationProfiling:
#replication:
#sharding:
## Enterprise-Only Options
#auditLog:
#snmp:
2 ответа
Решение
Все хорошо, вы просто пропустили пробел перед включенным ключевым словом. Пространство очень важно, прежде чем включен
`` `
security:
authorization: enabled
`` `
Замените свой фрагмент вышеупомянутым фрагментом для безопасности. Трудно найти и, надеюсь, поможет кому-то.
Я использую версию сервера MongoDB: 3.6.5, и этот работал для меня:
security.authorization: enabled