Getting started with Redis for Rackspace Dedicated Platform ============================================================ .. meta:: :description: Getting started guide for the ObjectRocket Redis offering for the Rackspace Dedicated Platform. This section explains how to get started with the Redis offering for the Rackspace Dedicated Platform hosted at app.objectrocket.com. Use the `ObjectRocket Dedicated Platform `_ to create a Redis instance for the Rackspace Dedicated Cloud. You can access the ObjectRocket Dedicated Platform by visiting the URL directly, ``_, or by using single sign-on (SSO) from the Mission Control user interface. Creating a Redis instance with SSO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #. Log in to `Mission Control `_. #. Select **Redis** from the **Service, Region, and Provider** section. #. Select **Rackspace Cloud** from the **Cloud Provider** section. This link redirects you to ``_. #. Select **Instances**. #. Select **Create Instance**. #. Enter a name for your Redis instance. #. Select **Redis** from the **Service** section. This Redis service is currently only available with high availability. .. image:: images/createredis.png :align: center :width: 400px #. Select **Configuration**. #. Select a version from the drop-down menu. Review the :ref:`ObjectRocket cloud platform supported versions table ` for a list of supported Redis versions. #. Select a zone from the drop-down menu. Zones are Rackspace and AWS Direct Connect zones. They are labeled by airport codes in that region. For more information about the ObjectRocket data-centers, visit `FAQ `_ or our `zone map `_. #. Select a plan size. For more details, visit `plans and pricing `_. .. image:: images/createredis_2.png :align: center :width: 400px #. Select **ACLs**. Access Control Lists (ACLs) limit who connects to your instance. .. note:: ObjectRocket denies access by default so you need to add any appropriate ACLs for servers that are connecting to ObjectRocket. #. Enter an IP address or CIDR block and a description. You can also choose to add your ACLs later. Only the IP address is mandatory, but descriptions can help when maintaining larger lists. Select **Add ACL** to include more entries. .. image:: images/addacl_mongo.png :align: center :width: 400px #. Select **Add Credit Card** and enter your payment information. #. Select **Create Instance** to spin up your Redis instance. Connecting to your Redis instance ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ After creating a database with user authentication and adding an ACL, you're ready to test basic connectivity in a terminal session with redis-cli:: $ redis-cli -h '' -p '' -a '' hostname:port> set my_key my_value OK hostname:port> get my_key "my_value" You can also connect with netcat/telnet:: $ nc '' '' auth +OK set my_key my_value +OK get my_key $8 my_value If you see similar results, you're connected to the instance and can perform database operations. If you have any issues or just need guidance, contact the `Support team `_.