I realised the HDD is red(100%)
I don't have many media files on the server.
Thinking something could be taking up space.
Logs maybe?
Has anyone encountered this? How do I free up space?
Where to look and what to delete..?
I can't recall when they changed it but one-X Portal used to stall servers if it was left on ALL or VERBOSE logging. Go into the portal admin to turn its logging off and use the web control/platform view Logs menus to delete the accumulated log files.
@sizbut
Thanks. Tried deleting the log files from that path but it doesn't take any effect.
@IPGuru
Will deleting this actually work?
I managed to delete some logs from root directory: /opt/witness/logs
It provided some free space.
But between Friday and Monday, the disk is full again.
If it is Linux then open a SSH session and login as root.
At the prompt enter 'find -ctime -5' without the quotes for a list of modified files in the last 5 days
If the list is too long then add '| more' to the command, then only one page at a time is shown.
If you want to delete older log files the following command can be used:
'find *.log* -mtime +5 -exec rm {} \;'
It removes all files with the extension .log older as 5 days.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.