Tag messages matching shift-t -> “search string” Limit messages matching (pattern) l > ~T (tagged) l > ~A (all) l > ~N (new) l > ~U (unread) l > “search string” Random commands ;d > Delete tagged messages s > Move message ;s > Move tagged messages b > Bounce messages
On one of my two sle11 machines i had a java exception which i could not explain. java.lang.IllegalStateException: No Java compiler available org.apache.jasper.JspCompilationContext.createCompiler(JspCompilationContext.java:229) org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:581) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:317) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267) javax.servlet.http.HttpServlet.service(HttpServlet.java:717) org.mule.galaxy.web.ThreadLocalCacheFilter.doFilter(ThreadLocalCacheFilter.java:27) [...] # rpm -qa tomcat6 tomcat6-6.0.18-20.35.36.1 Oracle Java JDK 1.6.0_27 After i compared both, i’ve found some missing links on the second one. # ln -s [...]
If you getting errors like this one $ /path/to/program /usr/lib/libcrypto.so.0.9.8: no version information available you need a libcrypto.so and a libssl.so with version information. Here are some information about the problem. openssl has evolved to a very important library in Linux distribution. A lot of cryptographic applications link to it including system libraries like pam [...]
$SERVER/deploy/messaging/messaging-service.xml <attribute name="ServerPeerID">${jboss.messaging.ServerPeerID:0}</attribute> For clustered environment each jboss node need a unique ServerPeerID which must be a valid integer.
to save for later… mhvtl – A Linux Virtual Tape Library http://sites.google.com/site/linuxvtl2/ That could be a really nice backup solution.
Posted on November 5, 2010, 10:33, by rmichel, under
JBoss,
Linux,
Work.
Released check_ajp v1 – see here
Posted on October 11, 2010, 10:24, by rmichel, under
HowTo,
Linux,
Work.
To create a shared disk between two or more VMs, login into one of your ESX hosts and create a disk image. cd /vmfs/volumes/#volume-name#/#vm-name#/; vmkfstools -d thick -a lsilogic -c 50G shareddisk.vmdk; Add the new hardrive to the guest(s) and select a new SCSI bus (like SCSI 2:0). VMware create a new SCSI controller. Set [...]
Posted on August 31, 2010, 17:49, by rmichel, under
Linux,
Work.
Some linux distribution are shiped without a config for the catalina.out (Tomcat application server) $ cat /etc/logrotate.d/tomcat /var/log/tomcat/base/catalina.out { compress copytruncate create 644 tomcat tomcat rotate 30 size 4M } The catalina.out will be rotated after 4 mb and stored for 30 days (/var/log/tomcat/base/catalina.out.1; /var/log/tomcat/base/catalina.out.2.gz and so on)
Posted on February 11, 2010, 17:37, by rmichel, under
Linux,
Work.
Wozu gibt es zertifizierte Hardware(listen), wenns dann doch nicht geht ? Ein HP DL360-G6 mit einer NetXtreme BCM5709 Netzwerkkarte soll unter SLES10 (SP3) und SLES11 (GM) funktionieren (Quelle: HP und Novell). Aber irgendwie gehts dann doch nicht Selbst mit dem HP ProLiant Support Pack (Version 8.30) ging es nicht. Auch die md5sum vom bnx2.ko Modul, [...]
Posted on November 26, 2009, 12:47, by rmichel, under
Linux,
Work.
Generally it is much better to create a ramdisk for this benchmark: # mount -t tmpfs -o size=10G tmpfs /tmp/ramdisk; or # dd if=/dev/zero of=/dev/ram bs=1M count=10000; # mkfs.ext3 /dev/ram; # mount /dev/ram /tmp/ramdisk -o loop; Normally your harddisk is to slow for a LTO3/4 or a Jaguar2/3 drive Create a 5G or 10G file [...]