Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I am trying to follow your tutorial to install and run a Python program on a RIAK single-node cluster with Ubuntu 14.04 OS. While I try running the python script python ~/test/app.py, I get this huge error message
/usr/local/lib/python3.4/dist-packages/riak/security.py:45: UserWarning: OpenSSL 1.0.1f 6 Jan 2014 (>= 1.0.1g required), TLS 1.2 support: True warnings.warn(msg, UserWarning) Traceback (most recent call last): File “/usr/local/lib/python3.4/dist-packages/riak/client/transport.py”, line 162, in _with_retries raise BadResource(e) riak.transports.pool.BadResource: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File “/root/test/app.py”, line 14, in <module> key1.store() File “/usr/local/lib/python3.4/dist-packages/riak/riak_object.py”, line 267, in store timeout=timeout) File “/usr/local/lib/python3.4/dist-packages/riak/client/transport.py”, line 223, in wrapper return self._with_retries(pool, thunk) File “/usr/local/lib/python3.4/dist-packages/riak/client/transport.py”, line 172, in _with_retries raise e.args[0] File “/usr/local/lib/python3.4/dist-packages/riak/client/transport.py”, line 153, in _with_retries return fn(transport) File “/usr/local/lib/python3.4/dist-packages/riak/client/transport.py”, line 221, in thunk return fn(self, transport, *args, **kwargs) File “/usr/local/lib/python3.4/dist-packages/riak/client/operations.py”, line 537, in put timeout=timeout) File “/usr/local/lib/python3.4/dist-packages/riak/transports/tcp/transport.py”, line 151, in put codec = self._get_codec(msg_code) File “/usr/local/lib/python3.4/dist-packages/riak/transports/tcp/transport.py”, line 76, in _get_codec codec = self._get_pbuf_codec() File “/usr/local/lib/python3.4/dist-packages/riak/transports/tcp/transport.py”, line 53, in _get_pbuf_codec self.client_timeouts(), self.quorum_controls(), File “/usr/local/lib/python3.4/dist-packages/riak/transports/feature_detect.py”, line 145, in client_timeouts return self.server_version >= versions[1.4] File “/usr/local/lib/python3.4/dist-packages/riak/util.py”, line 98, in get value = self.fget(obj) File “/usr/local/lib/python3.4/dist-packages/riak/transports/feature_detect.py”, line 197, in server_version return LooseVersion(self._server_version()) File “/usr/local/lib/python3.4/dist-packages/riak/transports/tcp/transport.py”, line 81, in _server_version server_info = self.get_server_info() File “/usr/local/lib/python3.4/dist-packages/riak/transports/tcp/transport.py”, line 115, in get_server_info resp_code, resp = self._request(msg, codec) File “/usr/local/lib/python3.4/dist-packages/riak/transports/tcp/transport.py”, line 549, in _request resp_code, data = self._send_recv(msg_code, data) File “/usr/local/lib/python3.4/dist-packages/riak/transports/tcp/connection.py”, line 36, in _send_recv self._send_msg(msg_code, data) File “/usr/local/lib/python3.4/dist-packages/riak/transports/tcp/connection.py”, line 65, in _send_msg self._connect() File “/usr/local/lib/python3.4/dist-packages/riak/transports/tcp/connection.py”, line 241, in _connect self._socket = socket.create_connection(self._address) File “/usr/lib/python3.4/socket.py”, line 512, in create_connection raise err File “/usr/lib/python3.4/socket.py”, line 503, in create_connection sock.connect(sa) ConnectionRefusedError: [Errno 111] Connection refused