Mongodb Faydalı Bilgileri
Mongodb Servisini Enable/Startup Yapma
Enable/Startup olup olmadığını görmek için aşağıdaki komutu çalıştır.
is-enabled
1 | $ sudo systemctl is-enabled mongod |
Enable/Startup olarak ayarla.
enable
1 | $ sudo systemctl enable mongod |
Temel Mongodb Servis Komutları
status
Servisin çalışma durumunu öğren.
1 | $ sudo service mongod status |
start
Servisi çalıştır.
1 | $ sudo service mongod start |
stop
Servisi durdur.
1 | $ sudo service mongod stop |
restart
Servisi yeniden başlat.
1 | $ sudo service mongod restart |