依照 Ubuntu 18.04.3 安裝 MongoDB 4.0 此篇安裝完成後,
執行 sudo service mongod start後,
出現錯誤訊息:Failed to start mongod.service: Unit mongod.service not found.
解決方法:
1 2 3 4 5 |
// ubuntu 啟動 mongod.service $ sudo systemctl enable mongod.service // 使用service方式 $ sudo service mongod start |
Reference