The problem I ran into was that too many Java processes were running. Somehow, it prevented Tomcat from starting and did not produce any errors.
To do this, I killed all the Java processes, and then restarted Tomcat, and it worked.
On Linux:
> ps -aux | grep java
> kill -9 [pid_from_last_command]
source
share