After creating an instance, you'll get:
eu.arctickey.com
6379
ak_xxxxxxxxxxxx
rediss://:PASSWORD@HOST:PORT
Note: rediss:// (with double 's') indicates TLS/SSL. Regular redis:// won't work.
rediss://
redis://
Example:
rediss://:ak_abc123xyz@eu.arctickey.com:6379
All Arctickey connections require TLS. Most clients support this out of the box:
const redis = new Redis({ host: 'eu.arctickey.com', port: 6379, password: 'your-password', tls: { rejectUnauthorized: false, // Required for self-signed certs }, });
r = redis.Redis( host='eu.arctickey.com', port=6379, password='your-password', ssl=True, ssl_cert_reqs=None, # Required for self-signed certs )
redis-cli --tls -h eu.arctickey.com -p 6379 -a YOUR_PASSWORD
For TablePlus, RedisInsight, Medis, etc.:
We recommend storing credentials in environment variables:
# .env ARCTICKEY_HOST=eu.arctickey.com ARCTICKEY_PORT=6379 ARCTICKEY_PASSWORD=ak_your_password_here # Or as a URL ARCTICKEY_URL=rediss://:ak_your_password@eu.arctickey.com:6379
Connecting to Arctickey
Connection Details#
After creating an instance, you'll get:
eu.arctickey.com6379(varies per instance)ak_xxxxxxxxxxxxConnection String Format#
rediss://:PASSWORD@HOST:PORTExample:
rediss://:ak_abc123xyz@eu.arctickey.com:6379TLS/SSL Configuration#
All Arctickey connections require TLS. Most clients support this out of the box:
Node.js (ioredis)#
const redis = new Redis({ host: 'eu.arctickey.com', port: 6379, password: 'your-password', tls: { rejectUnauthorized: false, // Required for self-signed certs }, });Python (redis-py)#
r = redis.Redis( host='eu.arctickey.com', port=6379, password='your-password', ssl=True, ssl_cert_reqs=None, # Required for self-signed certs )redis-cli#
redis-cli --tls -h eu.arctickey.com -p 6379 -a YOUR_PASSWORDGUI Clients#
For TablePlus, RedisInsight, Medis, etc.:
Environment Variables#
We recommend storing credentials in environment variables:
# .env ARCTICKEY_HOST=eu.arctickey.com ARCTICKEY_PORT=6379 ARCTICKEY_PASSWORD=ak_your_password_here # Or as a URL ARCTICKEY_URL=rediss://:ak_your_password@eu.arctickey.com:6379Troubleshooting#
"Connection refused" or timeout#
rediss://(TLS), notredis://"Authentication failed"#
"SSL/TLS handshake failed"#
Connection drops#