for people running into issues with the ipfs open connection stuff, this script has been extremely useful in preventing that issue from being a problem ```bash #! /bin/bash while true; do COUNT=$(sudo systemctl status ipfs | grep -ci "error: accept tcp4") if [[ "$COUNT" > 0 ]]; then echo "max files reached, restarting" sudo systemctl restart ipfs sleep 60 fi done ```