Skip to content

Commit a8da65a

Browse files
authored
Remove exe from Redis clI page
1 parent 80da17a commit a8da65a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-cache-for-redis/cache-how-to-redis-cli-tool.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,31 +55,31 @@ Open up a shell or terminal on a computer with the _Redis package_ installed. If
5555
1. Use the following command to connect to a Basic, Standard, or Premium tier Azure Cache for Redis instance using TLS:
5656

5757
```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
5959
```
6060

6161
1. Connect to a Basic, Standard, or Premium tier Azure Cache for Redis instance that doesn't use TLS:
6262

6363
```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
6565
```
6666

6767
1. Connect to a Basic, Standard, or Premium tier Azure Cache for Redis instance using TLS and clustering:
6868

6969
```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
7171
```
7272

7373
1. Connect to an Enterprise or Enterprise Flash tier cache instance using Enterprise cluster policy with TLS:
7474

7575
```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
7777
```
7878

7979
1. Connect to an Enterprise or Enterprise Flash tier cache instance using OSS cluster policy without TLS:
8080

8181
```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
8383
```
8484

8585
### Testing the connection

0 commit comments

Comments
 (0)