File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
articles/azure-cache-for-redis Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -55,31 +55,31 @@ Open up a shell or terminal on a computer with the _Redis package_ installed. If
55
55
1 . Use the following command to connect to a Basic, Standard, or Premium tier Azure Cache for Redis instance using TLS:
56
56
57
57
``` console
58
- redis-cli.exe -p 6380 -h yourcachename.redis.cache.windows.net -a YourAccessKey --tls
58
+ redis-cli -p 6380 -h yourcachename.redis.cache.windows.net -a YourAccessKey --tls
59
59
```
60
60
61
61
1. Connect to a Basic, Standard, or Premium tier Azure Cache for Redis instance that doesn't use TLS:
62
62
63
63
```console
64
- redis-cli.exe -p 6379 -h yourcachename.redis.cache.windows.net -a YourAccessKey
64
+ redis-cli -p 6379 -h yourcachename.redis.cache.windows.net -a YourAccessKey
65
65
```
66
66
67
67
1. Connect to a Basic, Standard, or Premium tier Azure Cache for Redis instance using TLS and clustering:
68
68
69
69
```console
70
- redis-cli.exe -p 6380 -h yourcachename.redis.cache.windows.net -a YourAccessKey --tls -c
70
+ redis-cli -p 6380 -h yourcachename.redis.cache.windows.net -a YourAccessKey --tls -c
71
71
```
72
72
73
73
1. Connect to an Enterprise or Enterprise Flash tier cache instance using Enterprise cluster policy with TLS:
74
74
75
75
```console
76
- redis-cli.exe -p 10000 -h yourcachename.eastus.redisenterprise.cache.azure.net -a YourAccessKey --tls
76
+ redis-cli -p 10000 -h yourcachename.eastus.redisenterprise.cache.azure.net -a YourAccessKey --tls
77
77
```
78
78
79
79
1. Connect to an Enterprise or Enterprise Flash tier cache instance using OSS cluster policy without TLS:
80
80
81
81
```console
82
- redis-cli.exe -p 10000 -h yourcachename.eastus.redisenterprise.cache.azure.net -a YourAccessKey -c
82
+ redis-cli -p 10000 -h yourcachename.eastus.redisenterprise.cache.azure.net -a YourAccessKey -c
83
83
```
84
84
85
85
### Testing the connection
You can’t perform that action at this time.
0 commit comments