Linux

PostgreSQL 9.3 Debian

To install PostgreSQL 9.3 I used the following steps as root: echo “deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -c | awk ‘{print $2}’`-pgdg main” > /etc/apt/sources.list.d/postgre.list && wget –quiet -O – https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add – apt-get update && apt-get dist-upgrade && apt-get install postgresql-9.3  

PostgreSQL 9.3 Debian Read More »

Bonding and Bridging

I set up a server with two network interfaces and wanted to use load balancing and bridging with cheap a cheap non 802.3ad capable switch. Thats why I chose mode 5. See https://help.ubuntu.com/community/UbuntuBonding for further information about bonding modes. Here is my /etc/network/interfaces file which is working fine till now: auto lo iface lo inet

Bonding and Bridging Read More »