答案1
根据官方文档,MongoDB提供了2种在Ubuntu上启动服务的方式。https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-ubuntu/
方法 1
使用 systemd(systemctl)
启动 MongoDB。
sudo systemctl start mongod
验证MongoDB是否已成功启动
sudo systemctl status mongod
方法 2 使用 System V Init(服务)
启动 MongoDB。
sudo service mongod start
验证MongoDB是否已成功启动
sudo service mongod status
当我尝试启动 mongodb 时,在 Ubuntu 23.10 上获得“非活动”状态后,方法 2 对我有用。
希望这可以帮助。