"Can't start redis server" Displayed When Compiling embedded-redis
Symptom
The mvn install command fails to be executed during the embedded-redis compilation. The message "Can't start redis server" is displayed.

Key Process and Cause Analysis
The port is occupied.
Conclusion and Solution
- View the Redis process.
ps -ef | grep redis
- Stop the Redis process.
pkill redis
- View the Redis process again.
ps -ef | grep redis
- Recompile embedded-redis.
Parent topic: Troubleshooting