Microsoft ha annuciato la disponibilità di Window 8 Preview prima del rilascio definitivo. Questo nuovo sistema operativo si prefigge l’obiettivo di essere il fattor comune della strategia microsoft per mantenere il mercato PC ed avvicinarsi al mondo dei tablet al momento dominato da Google (con il fantastico Android) e da Apple con lo strepitoso iOS.…
Leggi tutto
Ciao tutti! Gestire più tomcat server tramite maven è semplicissimo. Nel vostro pom.xml aggiungete più profili, uno per ogni server su cui volete fare il deploy del vostro war, in questo modo:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<project> ... <profiles> <profile> <id>tomcat-pre</id> <activation/> <properties> <tomcat-server>tomcat-1</tomcat-server> <tomcat-url>http://192.168.###.###:8080/manager</tomcat-url> </properties> </profile> <profile> <id>tomcat-prod</id> <activation/> <properties> <tomcat-server>tomcat-2</tomcat-server> <tomcat-url>http://192.168.###.###:8080/manager</tomcat-url> </properties> </profile> </profiles> ... </project> |
E configurare il tomcat-maven-plugin in questo modo:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<project> ... <build> <pluginManagement> <plugins> ... <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId> <configuration> <server>${tomcat-server}</server> <url>${tomcat-url}</url> </configuration> </plugin> ... </plugins> </pluginManagement> </build> |
Fatto questo non vi resta che censire i server nel file ~/.m2/settings.xml. In questo…
Leggi tutto
I followed this steps in order to add some space to a virtual disk in kvm environment convert qcow2 disk to be expandend in raw format:
1 |
qemu-img convert -f qcow2 to-be-expandend.img -O raw to-be-expandend.raw |
create extra space, 30G in this case:
1 |
sudo qemu-img create -f raw addon.raw 30G |
merge the two files:
1 |
cat to-be-expandend.raw addon.raw >expanded.raw |
re-convert in qcow2 format:
1 |
qemu-img convert -f raw expanded.raw -O qcow2 expanded.img |
To be used, the extra space needs to be re-partitioned…
Leggi tutto
From the db that need to be synced (A), create a db link to the other db (B). Create a procedure like the following to import evereything from the db linked (B) to the target db (A). create or replace PROCEDURE import_prod_schema as JobHandle number; js varchar2(9); — COMPLETED or STOPPED q varchar2(1) := chr(39);…
Leggi tutto
In questi giorni comincio a metter mano su questo nuovo tool che Synaptica ha acquistato, e usandolo un pochino si scoprono belle cose. Tra cui il fatto che Embarcadero ha integrato delle funzioni cross per il supporto della compressione Zip direttamente nella RTL library. Nella libreria “System.Zip” sono presenti diversi metodi per gestire la compressione…
Leggi tutto
Quanti con le nuove versioni di Ubuntu si sono strincazzati perchè non riescono a scriver l’indirizzo (di un server remoto o di una location che sanno a memoria) perchè la barra degli indirizzi è stata sostituita da una specie di bottoniera naviga cartelle (a mio avviso di una scomodità totale). Beh nel caso vi serva…
Leggi tutto