linux中可以使用下面的命令查看mongodb端口是否启动:
netstat -lanp | grep "27017"
可以看到已经启动了mongod服务。
然后关闭mongod服务
sudo service mongod stop