spiderfoot
spiderfoot copied to clipboard
Unable to launch spiderfoot within a script.
I'm trying to launch spiderfoot within a bash script in order to have it run automatically when I turn on the machine, but I keep running to the error screen, when I try to access the web gui.
Basically the commands I've tried running within the script are as follows:
- python3 ~/spiderfoot/sf.py -l 0.0.0.0:5001
- python3 ~/spiderfoot/sf.py -l 0.0.0.0:5001 &
- /usr/bin/python3 ~/spiderfoot/sf.py -l 0.0.0.0:5001
- /usr/bin/python3 ~/spiderfoot/sf.py -l 0.0.0.0:5001 &
- nohup python3 ~/spiderfoot/sf.py -l 0.0.0.0:5001 &
- nohup /usr/bin/python3 ~/spiderfoot/sf.py -l 0.0.0.0:5001 &
I have had no success running these commands from the script, but if I run them outside of the script, I don't have any issues.
It also seems to get stuck on this part:
Any recommendations?
https://github.com/smicallef/spiderfoot/issues/82#issuecomment-689016158