Ir al contenido principal

Entradas

Mostrando las entradas etiquetadas como Tomcat

Google compute engine autoinstall script

Lately I've been following several security blogs in order to be notified about the state of art of cryptography standards compliance in the browsers. One of them,  Charles Engelke's Blog , published a series of posts about getting a Google SaaS up and running with its own SSL certificate. This series is composed of:  -  Let’s Encrypt on Google Compute Engine  -  Creating a Compute Engine Instance  -  Setting up Apache Web Server  -  Getting a Certificate from Let’s Encrypt Since my last project, autoinstall , fits into this task quite good, I've decided to extend it to accomplish these goals:  - Install and config a Tomcat server, in the default 80 and 443 ports, with its manager prepared for remote maven deploys.  - Install and config a daemon, which it's given the task of renewing the let's encrypt SSL cert when it's necessary.  - Install mysql 5.5 database.  - Install other tools: ftpd, nmap, tree, etc. So...

Deploy pseudo Tomcat 7 to OpenShift arquitecture

Hi everybody. I have been playing with PaaS services lately, and the best for me is OpenShift , for clear reasons: no strings attached, nice interfaces, all built from Red Hat up, etc. The other side of the coin is that the appliances and all the application servers come with the OpenShift flavor, and that's not what I need. I need a plain Tomcat or JBoss in case that I want to go on the hunt for better tides. With a little bit of research I managed to have my half-out-of-the-box Tomcat server running on top of the OpenShift platform , and take advantage of the hot deploying that my beloved Tomcat 7-Maven plugin gave me. Here are the steps. First of all, create an OpenShift account . You can apply for these accounts at https://www.openshift.com/app/account/new , and they offer you 3 gears for free, which means that you can run up to 3 app servers/appliances/whatever. Every gear comes with candies, like relational databases and several tools. You should really ch...