Upgrade to 6.1.2 fails
Hi, I am upgrading from 6.1.1 to 6.1.2 and get the failure below, thanks for helping. 192.168.31.18 /bin/bash 192.168.31.17 /bin/bash 192.168.31.16 /bin/bash 192.168.31.15 /bin/bash Installing rpm on 3 hosts.... installing node.... 192.168.31.18 Error: invalid literal for int() with base 10: '4%' Traceback (most recent call last): File "/opt/vertica/bin/verticaInstall.py", line 1232, in code, result = SSH.installNode( installerSSH, host, rootPassword, options.rpm_file_name, localhost, running_as ) File "/opt/vertica/oss/python/lib/python2.7/site-packages/vertica/network/SSH.py", line 1986, in installNode if int(data[1][0]) < sz: ValueError: invalid literal for int() with base 10: '4%' Installation failed.
0
Comments
Glad that you have been able to fix the issue.
This is a known bug that we have fixed in our next release. Can you tell us how didn you fix this? This will help the community.
The workaroud we know is as follows:
===============================
Edit /opt/vertica/oss/python/lib/python2.7/site-packages/vertica/network/SSH.py on node and goto line 1982. Change the command:
df /tmp | tail -1 | awk '{print $4}'
to
df -P /tmp | tail -1 | awk '{print $4}'
--
Pravesh