Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. Node not found: pulp.agent.23eec3dd-62c1-41e7-86fb-6760de665ec4 errors..
  2.  
  3. Please restart goferd service on all affected systems and re-create the qpidd que
  4. su - postgres -c "psql foreman -c \"select uuid,name from katello_systems;\"" > katello_systems.txt
  5.  
  6. for uuid in $(journalctl --all --this-boot | grep "error Error on attach: Node not found" | awk -F "error Error on attach: Node not found: " '{ print $2 }' | cut -d. -f3 | sort -u); do
  7. if [ $(grep -c $uuid katello_systems.txt) -gt 0 ]; then
  8. grep $uuid katello_systems.txt
  9. qpid-config --ssl-certificate=/etc/pki/katello/qpid_client_striped.crt -b amqps://localhost:5671 add queue pulp.agent.$uuid --durable
  10. fi
  11. done
  12.  
  13.  
  14. # restorecon -RFvv /var/cache/pulp/
  15. # katello-service restart
  16. # cd /var/cache/pulp/
  17. # ls -lZart
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement