pdsh gives error "rcmd: socket: Permission denied"
Found the answer. rcmd_default needs an entry:
echo "ssh" > /etc/pdsh/rcmd_default
You can use PDSH_RCMD_TYPE=ssh
like:
PDSH_RCMD_TYPE=ssh pdsh -w host1,host2 tail -f /var/log/apache.log
Found the answer. rcmd_default needs an entry:
echo "ssh" > /etc/pdsh/rcmd_default
You can use PDSH_RCMD_TYPE=ssh
like:
PDSH_RCMD_TYPE=ssh pdsh -w host1,host2 tail -f /var/log/apache.log