Category Archives: Servers

Linux : Redirection with Apache Web server

Here is a two different redirection type you can do with Apache. There is quite a few more method possibles such as with rewrite rules as well which will be covered later. Redirect request made to a specific domain to a strict URL or domain. This will basically send the requests as is to the destination domain… Read More »

Linux : cPanel [rebuildhttpdconf] Missing owner for domain host.domain.tld, force lookup to root

Encountering the following error trying to manually rebuild your Apache cPanel config? info [rebuildhttpdconf] Missing owner for domain host.domain.tld, force lookup to root Built /usr/local/apache/conf/httpd.conf OK To fix this issue, simply edit : vi /var/cpanel/userdata/nobody/host.domain.tld And append the following at the bottom of the file : owner: ‘nobody’ Then restart try to rebuild again : /scripts/rebuildhttpdconf… Read More »

Linux : Unable to build R1Soft module on Debian 8

I recently end up with the following error trying to build the R1Soft agent module using “r1soft-setup –get-module” command : Checking if module needs updated Checking for binary module Waiting                       / No binary module found Gathering kernel information Gathering kernel information complete. Creating kernel… Read More »

Linux : Error failed dependencies updating kernel-3.10.63-11.el6.centos.alt.noarch

Having the following error trying to install/update kernel v3.10 from the Xen repository on CentOS 6? error: Failed dependencies: kernel-firmware < 3.10.63-11.el6.centos.alt conflicts with kernel-firmware-3.10.63-11.el6.centos.alt.noarch Well, you are probably trying to install using “rpm -i” command. You should use “rpm -Uvh” instead as followed : rpm -Uvh kernel-3.10.68-11.el6.centos.alt.x86_64.rpm kernel-firmware-3.10.68-11.el6.centos.alt.noarch.rpm