Is there a command for stopping all SO processes? #1767
-
Security Onion Version 2.3.2 Is there a command or procedure for stopping all SO processes on 2.3.2? Background My plan is to manually config sdb to hold the /nsm partition (had to do it before on the old setup due to my own typo). I want to make sure I stop all writing to the current /nsm so I can copy the files I've got there now to the new drive, then configure the mount and etc. But I'm not finding a way to cleanly stop everything. Thanks in advance. -Steve Hershman |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Try: When the minion service starts it will bring up all the components. I will test the install code again to make sure it is still using both disks but it was working fine as of a couple of days ago. |
Beta Was this translation helpful? Give feedback.
Try:
sudo service salt-minion stop
sudo service salt-master stop
sudo service docker stop
sudo mv nsm nsm.old
do your stuff so that nsm mounts to your new disk
sudo rsync -av /nsm.old/ /nsm/
sudo service docker start
sudo service salt-master start
sudo service salt-minion start
When the minion service starts it will bring up all the components. I will test the install code again to make sure it is still using both disks but it was working fine as of a couple of days ago.