A follow up on using zabbix30 on el6 . zabbix 3.0.2 packages for RHEL6.x64 has been pushed out.
I have switched to IUS repository, over webtatic.
I have switched to IUS repository, over webtatic.
...
File "/usr/lib/python2.6/site-packages/requests/adapters.py", line 447, in send
raise SSLError(e, request=request)
requests.exceptions.SSLError: [Errno 1] _ssl.c:492: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
[root@fb7a3cd8c69d ~]# vim my_script.pyt
...
context = None
try:
# Disabling SSL certificate verification
context = ssl.SSLContext(ssl.PROTOCOL_SSLv3)
context.verify_mode = ssl.CERT_NONE
except AttributeError:
rget = requests.get
requests.get = lambda obj, *args,**kwargs: rget(obj,verify=False)
requests.packages.urllib3.disable_warnings()
si = SmartConnect(host=args.host,
user=user,
pwd=args.password,
port=int(args.port), sslContext=context)
As part of your pipeline, you may need to perform browser testing across different platforms/environments. To minimize testing time, it'...