0
0
Redisquery~10 mins

Synchronization process in Redis - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to start a Redis synchronization with the master.

Redis
redis-cli [1]
Drag options to blanks, or click blank then click option'
Aconnect
Bstart
Cinit
Dsync
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'connect' instead of 'sync'.
Trying 'start' which is not a Redis command.
2fill in blank
medium

Complete the code to configure a Redis replica to connect to its master.

Redis
replicaof [1] [2]
Drag options to blanks, or click blank then click option'
A127.0.0.1
Blocalhost
Credis-master
D6379
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'localhost' instead of IP address.
Forgetting to specify the port.
3fill in blank
hard

Complete the command to stop replication.

Redis
replicaof [1] [2]
Drag options to blanks, or click blank then click option'
Ano
Bnone
Coff
Done
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'none' instead of 'no one'.
Omitting the second argument.
4fill in blank
hard

Fill both blanks to configure a Redis replica with IP and port.

Redis
replicaof [1] [2]
Drag options to blanks, or click blank then click option'
A192.168.1.100
Blocalhost
C6380
D6379
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong port like 6380.
Using 'localhost' instead of IP.
5fill in blank
hard

Fill all three blanks to create a Redis replica and start sync.

Redis
replicaof [1] [2]
redis-cli [3]
Drag options to blanks, or click blank then click option'
A10.0.0.5
B6379
Csync
Dno one
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'no one' in place of 'sync' command.
Using wrong port number.