需求
自定义 mongodb 配置,希望原生离线安装启动,使用该配置
在离线安装服务的过程时,自动生成配置文件并启动该服务
写配置文件
echo "[+] 开始写配置文件"cat > /etc/mongodb/conf/mongodb.conf << EOF
systemLog:destination: filepath: /data/mongodb/log/mongodb.loglogAppend: true
storage:dbPath: /data/mongodbengine: wiredTigerjournal:enabled: true
net:bindIp: 0.0.0.0port: 27017
processManagement:fork: true
EOFecho "[+] 结束写配置文件"