MikroWizard / mikroman

Mikrowizard back end
GNU Affero General Public License v3.0
27 stars 5 forks source link

Scanning devices in network #1

Open RILuse opened 6 days ago

RILuse commented 6 days ago

Can't stop scanning or chandge scanning parametres if scan is running. Need some more info about scanning - maybe it be "witch ip is scanning now" Adn stop button needed and modify scanning parametres button

s265925 commented 4 days ago

You can find scanning information after it is finished. To get live data you can check the logs in the docker container.

To stop the scanner in docker follow the steps:

  1. sudo docker exec mikroman bash -c "rm -rf /tmp/my_spooler/*" This will remove all jobs from spooler
  2. sudo docker exec -it MikroWizard-postgre psql -U USERNAME -d MikroWizardDB -c 'update tasks set status=false' This will change status of tasks in db
    ** Replase USERNAME with username of your database
  3. sudo docker exec mikroman bash -c "touch /app/reload" This will force mikroman server to reload ( only in docker installation mode )