Overview
This article guides you on how to troubleshoot if you are unable to access Web UI.
Process
- Check if the database is running:
CLI command:show service databaseIf the database is not running:
CLI command:service database restart - If the database is running but still unable to access Web UI, restart JBoss:
CLI command:service jboss restart - If the database is still stopped after a restart, check if the monitor or var partition is full:
- Check the space partition using the shell command:
df -h - Check which files are using up space using the shell command:
du -x /var |sort -rn| head -20
- Check the space partition using the shell command:
- If /var/ is full or have 0% free space, remove the files that
du -x show??- Change directory to the folder where the file is located:
rm -rf [filename] - Repeat until
df -hshows free space in /var. - Once /var creates a free space, restart the database using the CLI command:
service database restart
- Change directory to the folder where the file is located:
- If /var is not full and the database still won't start or keeps crashing, it is most likely database corruption.
- Change directory to the monitor partition:
cd /var/data/monitor - Check if you are indeed in the monitor partition:
pwd - Clear the partition:
rm -rf *
- Change directory to the monitor partition:
- If it is the JBoss files that are filling up the var partition, stop the JBoss process using CLI command:
service jboss terminate - Clear the contents of var/data/jboss/tmp/vfs.
Priyanka Bhotika
Comments