This error happens when the service was executed manually and failed to create a pid file. The process was already running and it was not possible to spawn a new one.
Kill the running process and start the service again.
# ps -elf | grep [service] | grep -v grep | awk '{print $4}' | xargs kill -9
# systemctl start [service]