Skip to content

Commit

Permalink
Update STATUSERRORS.md
Browse files Browse the repository at this point in the history
added min_items error
  • Loading branch information
jullrich authored Oct 19, 2023
1 parent b2d62a6 commit 042ec71
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions STATUSERRORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,12 @@ missing this file usally indicates a failed install. Reinstall the honeypot.

see /var/log/dshield.log

## isc-agent running
## isc-agent running error

### Quick Fix ###

If the last line of /srv/log/isc-agent.err is ```ModuleNotFoundError: No module named 'twisted'``` try:

```
cd /srv/isc-agent
source virtenv/bin/activate
Expand All @@ -74,7 +76,18 @@ pip install -r requirements.txt
reboot
```

If that doesn't work, see below, or send the content of /srv/log/isc-agent.err to handlers@isc.sans.edu.
if the last line of /srv/log/isc-agent.err is ```TypeError: conlist() got an unexpected keyword argument 'min_items'``` try:

```
sudo su -
cd /srv/isc-agent/
source virtenv/bin/activate
pip uninstall pydantic
pip install pydantic==1.10
reboot
```

If that doesn't work, see below or send the content of /srv/log/isc-agent.err to handlers@isc.sans.edu.

### Details ###

Expand Down

0 comments on commit 042ec71

Please sign in to comment.