ok, support blame shoutcast BUT we didnt have this problem before. looks like shoutcast start reading from wrong log example error.log.1 instead of error.log and access.log.1 instead access.log the number can varies.
here is what you need to do. via ssh access the account folder.
cd /usr/local/centovacast/var/vhosts/USERNAME/var/log
then check the pid number of that account (pid number will be next to ccuser, THAT LINE WILL END WITH etc/server.conf USERNAME)
ps aux | grep USERNAME
check the process ruining
lsof -p PIDNUMBER
then check if is writing/reading from some file other that a clean error.log and access.log
if that is not the case, KILL it
kill -HUP PIDNUMBER
then verify again
lsof -p PIDNUMBER
If you still see a error.log.1 or access.log.1 (number can varies) try to kill it again and verify.
if does not work and you still see it then go to the account log folder
cd /usr/local/centovacast/var/vhosts/USERNAME/var/log
and delete the logs that ended in a .log.1 , .log.2 etc just leave clean .log files
from centova cast access the account stop / start and verify again if you still see a .log.1 when you check run:
lsof -p PIDNUMBER
REMEMBER: after you restart the account the PID number will change, you will need to check the new PID number again by using ps aux | grep USERNAME
IF ALL THIS THAT IS A PAIN DOESN'T WORK, OPEN A SUPPORT TICKET
all this start it after the last update and is a pain to do this per affected account.
I hope this help.
UPDATE: SHORT VERSION BUT STILL A PAIN.
stop the account from centova cast
GO TO account log folder
cd /usr/local/centovacast/var/vhosts/USERNAME/var/log
delete the logs that ended in a .log.1 , .log.2 etc just leave clean .log files
from centova cast start the account
then via ssh access check the account folder
cd /usr/local/centovacast/var/vhosts/USERNAME/var/log
then check the pid number of that account (pid number will be next to ccuser, THAT LINE WILL END WITH etc/server.conf USERNAME)
ps aux | grep USERNAME
check the process ruining
lsof -p PIDNUMBER
then check if is writing/reading from some file other that a clean error.log and access.log
if not and all you see is error.log and access.log then ig fine now.
again I hop this help