I had this issue and it was caused by the server not being shut down properly. My solution was to find the process ID and kill it. In linux this should look like:
Command:
ps -ejH | grep bedrock
Output:
1996 1996 1810 pts/1 00:00:08 bedrock_server
This is your bedrock server process. So to stop this you just kill the process using the PID, which in my case is 1996.
kill 1996
Then restart your server again and it should work just fine
I had this issue and it was caused by the server not being shut down properly. My solution was to find the process ID and kill it. In linux this should look like:
Command:
Output:
1996 1996 1810 pts/1 00:00:08 bedrock_server
This is your bedrock server process. So to stop this you just kill the process using the PID, which in my case is 1996.
Then restart your server again and it should work just fine