Hi LiFan,
Have you installed Redis on your server? Here are instructions on how to install Redis on Ubuntu
# install redis-server
sudo apt install redis-server
# start the redis-server
sudo service redis-server start
# set the notify-keyspace-events parameter which WISE requires
redis-cli config set notify-keyspace-events Egx
Once your redis-server is running, try to start Tomcat again.
Geoff