Coldfusion
Clear ColdFusion Cache
ColdFusion class cache files are located at
${COLDFUSION_ROOT}/wwwroot/WEB-INF/cfclasses
Stop cold fusion, delete the class files in this directory, and start cold fusion.
ColdFusion class cache files are located at
${COLDFUSION_ROOT}/wwwroot/WEB-INF/cfclasses
Stop cold fusion, delete the class files in this directory, and start cold fusion.
more system:running-config
To enable realtime logging to the current terminal connection
terminal monitor
And, to disable them
terminal no monitor
show processes cpu
debug icmp trace
Disable debugging
awk '{$1="";$0=substr($0,2)}1'
awk '{$NF=""; NF--; print}'
ps -ylC apache2 --sort:rss
ps -ylC apache2 --sort:rss |\ awk '{sum+=$8; ++n} END {print "Tot="sum"("n")="sum/1024" MB";print "Avg="sum"/"n"="sum/n/1024" MB"}'
netstat -ant | grep :80\ | awk '{print $5}' | awk -F : '{$NF="";}1' | \ sort | uniq -c | sort -n