我无法使用配置文件通过复制启动 mongod 服务器。发出命令时
mongod --config /etc/mongod1.conf
抛出错误-
无法识别的选项:replSet
无法识别的选项:oplogSizeMB
MongoDB 版本:3.0
# 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/test
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: 27030 …Run Code Online (Sandbox Code Playgroud) 我正在使用webmail配置邮件服务。发送到任何外部邮件提供商(gmail、yahoo)的网络邮件不起作用。该服务在 webmail 到 webmail 帐户中工作正常。从研究中我发现谷歌云不允许SMTP在端口 25 上连接。
如何解决这个问题?