HSQLDB migration to MySQL is not out of the box supported by mysql. The MySQL Workbench can only handle with dumps made by other mysql server. HSQLDB Transfer Tool is no longer bundled with the standard hsqldb jar file in the 1.8.x or later releases. After downloading and building with ant hsqldbutil you get in [...]
With Powershell you can easily start or stop specific windows services depending on current status. An example is starting the VMWare Services only if they are currently stopped. The command get-service list all windows service with their status, short – and display name. Create a new File startVMWare.ps1 and paste the following foreach ($svc in [...]
Continue reading about Start and stop windows services with powershell scripts
Windows command line scripts was for a long time the only way for scripting windows. With the Windows PowerShell you have can write scripts more like an program in object oriented way. Starting with Windows 7 it is preinstalled with version 2.0 but can as well installed under Windows XP or Vista. Windows 8 will [...]
Continue reading about Howto run self signed powershell scripts
As follow up post to setting up solr i show you how to integrate tomcat into Apache as main web server: The setup was made under ubuntu 11.10 with the following prerequisites: CATALINA_HOME is /usr/share/tomcat7 JAVA_HOME is /usr/lib/jvm/default-java HOSTNAME in my case is ubuntu-vm.localdomain apt-get install libapache2-mod-jk nano /etc/apache2/workers.properties with the following contents workers.tomcat_home=/usr/share/tomcat7 workers.java_home=/usr/lib/jvm/default-java ps=/ [...]
Continue reading about Configuring solr, tomcat 7 with mod_jk and apache 2.2
Solr is a open source Enterprise Search Engine. It can be deployed as war file in servlet containers like tomcat or jetty. This short howto show you run solr with the current Tomcat 7 version: Download Solr as Zip Unzip it e.g. in /usr/share/ with folder structure mv apache-solr-3.5.0.zip /usr/share cd /usr/share unzip apache-solr-3.5.0.zip result is a [...]