Complete the command to install Redis on Ubuntu using apt.
sudo apt-get [1] redis-serverThe install command is used with apt-get to install new packages like Redis.
Complete the command to start the Redis server service using systemctl.
sudo systemctl [1] redis-serverThe start command tells systemctl to launch the Redis server service.
Fix the error in the command to check Redis server status.
sudo systemctl [1] redis-serverThe correct command to check service status is status. 'stat' is not valid.
Fill both blanks to update package lists and upgrade Redis to the latest version.
sudo apt-get [1] && sudo apt-get [2] redis-server
First, update refreshes package lists. Then, install upgrades Redis to the latest version.
Fill all three blanks to enable Redis to start automatically on boot, start it now, and check its status.
sudo systemctl [1] redis-server && sudo systemctl [2] redis-server && sudo systemctl [3] redis-server
enable makes Redis start on boot, start launches it now, and status checks if it's running.