Linux

Installing targetcli on CentOS 6.8

Aug. 7, 2016 | Category: Linux

Installing the kernel-ml-4.5.4 on CentOS 6.8

yum install wget

mkdir /root/elrepo
cd /root/elrepo
wget http://www.elrepo.org/elrepo-release-6-6.el6.elrepo.noarch.rpm
yum install *

yum --enablerepo=elrepo-kernel install kernel-ml kernel-ml-devel 

nano /etc/grub.conf
default=0

reboot

Installing targetcli

yum install gcc gcc-c++ make automake autoconf ncurses-devel lsscsi git 

Deps:

  • for configshell: python-devel epydoc pyparsing python-urwid …

Building a central rsyslog server (CentOS 6)

June 16, 2016 | Category: Linux

A setup on CentOS 6 with rsyslog sending the logs to a MariaDB database in addition to storring them locally.

Steps

1. Installing rsyslog v8
2. Configuring rsyslog
3. Creating a config file for internal servers
4. Adding database logging
5. Adding iptables rules
6. Configuring clients


1. Installing rsyslog …