Hi, The uptime is the percentage of time that one site is reachable, sometime uptime is a measure regulated by a contracts, in that case is important to track it. We need Hudson up and running with the SiteMonitor plugin installed. Every builds the site monitor checks if a site is up, if it is…
Leggi tutto
This is a tutorial to have cpu of a server monitored via Hudson. Is intented to be a guide line, not all the aspect are detailed. To achieve this you need the following software installed: Hudson system working Hudson Plot Plugin, to install this, from your Hudson instance go to “Configure Hudson”>”Plugin” and search for…
Leggi tutto
For only $450 milions , Novell will be acquired by Attachmate Corporation that is a consortium of technology companies organized by Microsoft Corporation. This is the official article : http://www.novell.com/news/press/novell-agrees-to-be-acquired-by-attachmate-corporation. rgds ivan
Per avviare una macchina virtuale con VMWare player in linux è possibile se sul server remoto ovviamente è startato il gdm , è sufficiente connettersi in ssh ed esportare il display gdm sulla sessione tramite il comando : user@server:~$ export DISPLAY=:0.0 gksudo gedit dopodichè bisogna avviare la macchina virtuale semplicemente : user@server:~$ vmplayer a presto…
Leggi tutto
Hi, a short post to show a simple tip useful when dealing with Java Maps. The following Function sorts a Map through a custom Comparator and returns a new ordered LinkedHashMap: public static Map sortMapByKey(Map map, Comparator comparator) { List list = new LinkedList(map.keySet()); Collections.sort(list, comparator); Map result = new LinkedHashMap(); for (Object o :…
Leggi tutto
Hi, Maybe the issue addressed by this article could appear slightly prosaic for a develper familiar with Eclipse IDE. But for me, coming from a Java development based on Netbeans IDE, this step was not so simple… This article absolutely should not be intended as a comparison between the two development IDEs! Having said that,…
Leggi tutto