CM common exception handling

Exception 1

Error message: The Parcel directory of Cloudera Manager Agent is located on a file system with less than 10.0 gigabytes of free space. /opt/cloudera/parcels (available: 8.4 gigabytes (16.86%), capacity: 50.0 gigabytes)

deal with


[root@fan102 ~]# cd /var/log
[root@fan102 ~]# find ./ -type f -size +100M -name "*log*" -print0 | xargs -0 du -h
[root@fan102 ~]# find ./ -type f -size +100M -name "*log*" -print0 | xargs -0 rm -rf

Guess you like

Origin blog.csdn.net/shenyuye/article/details/113495670