centos7如何關(guān)閉mongodb服務(wù)

小晨
787
2021-07-27 14:28:10
欄目: 云計(jì)算

centos7中關(guān)閉mongodb服務(wù)的方法:1、打開centos7終端;2、輸入“systemctl start mongod.service”命令關(guān)閉mongodb服務(wù)即可。

centos7如何關(guān)閉mongodb服務(wù)

具體操作步驟:

1、在centos7系統(tǒng)桌面中使用快捷鍵【Ctrl+Alt+T】打開centos7終端命令行模式。

2、在centos7終端命令行中輸入以下命令關(guān)閉mongodb服務(wù)即可。

?systemctl stop mongod.service

相關(guān)命令:

systemctl start mongod.service #開啟MongoDB

chkconfig mongod on #加入開機(jī)啟動(dòng)

systemctl restart mongod.service #重啟MongoDB

ps -aux | grep mongod #查看數(shù)據(jù)庫的進(jìn)程是否存在

mongo #啟動(dòng)mongoshell

0