Skip to content

Tag Archives: ubuntu

Ubuntu: Making resolv.conf entries permanent

Edit following file: root@ubuntu:/etc/dhcp# vim /etc/dhcp/dhclient.conf Change/Add (uncomment) following line: prepend domain-name-servers 8.8.8.8; Note that you may need to change 8.8.8.8 to your own DNS server ip.

Share

apache + mod_jk + tomcat6 setup on ubuntu karmic and ubuntu lucid

sudo apt-get install libapache2-mod-jk sudo cp /usr/share/doc/libapache2-mod-jk/httpd_example_apache2.conf /etc/apache2/conf.d/mod-jk.conf sudo vi /etc/apache2/sites-enabled/000-default (could be different in your case) In your virtual host block add following line: JkMount /hudson* ajp13_worker Note: I am trying to map hudson here.. but app context could be different in your case. (simply replace hudson with your app name) Check for syntax [...]

Share