proxy: HTTP: disabled connection for (localhost)

I had a problem with Jenkins on fresh installed centos. Jenkins drops with http 503 error. In log file i found such message proxy: HTTP: disabled connection for (localhost) There are to ways to solve it: 1) Disable SELinux edit /etc/selinux/config and change SELINUX=disabled dont forget to reboot 2) Without disabling SELinux sestatus -b | […]

install latest git on centos 6.4

First of all you need an rpmforge repository installed on your system. Than you should enable rpmforge-extras repo. yum provides git In output you will find something like Loaded plugins: fastestmirror, presto Loading mirror speeds from cached hostfile * base: ftp.colocall.net * epel: ftp.colocall.net * extras: ftp.colocall.net * rpmforge: apt.sw.be * rpmforge-extras: apt.sw.be * updates: […]

Setup apache2 with ssl on ubuntu

First of all we should install apache web server and add mod_ssl sudo apt-get install apache2 sudo a2enmod ssl Create folder for storing ssl certificates sudo mkdir /etc/apache2/ssl Now we generate self signed certificate for one year sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/apache2/ssl/server.key -out /etc/apache2/ssl/server.crt This command will ask you […]

alloc magic is broken Ubuntu

So i fixed this grub problem with Ubutnu boot repair disk located at http://sourceforge.net/projects/boot-repair-cd/?source=dlp I’ve download iso image, burn in into my flash using Unetbootin, a then simply boot computer using this flash. After boot process appear new window called “Boot Repair”. In that window to fix “alloc magic is broken” i click on  button […]