PEN LOAD BALANCER WITH 2 NODES APACHE WEB SERVER

Size: px
Start display at page:

Download "PEN LOAD BALANCER WITH 2 NODES APACHE WEB SERVER"

Transcription

1 Alternate Titles: MYSQL SSL Encryption Based Replication Setup Author: Muhammad Zeeshan Bhatti [LPI, VCP-DCV5, OCP (DBA), MCSA, SUSE CLA, RHCSA-7] ( PEN LOAD BALANCER WITH 2 NODES APACHE WEB SERVER Install Pen to configure Load Balance server. Pen is a light weight simple load balancer. This example shows to configure on the environment like follows (1) rackspace-jon [ ] - Pen Server (2) rackspace-nfs01 [ ] - Web Server#1 (3) rackspace-nfs02 [ ] - Web Server#2 [root@rackspace-jon ~]# yum -y install Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: centos-mirror.magsnet.net * extras: centos-mirror.magsnet.net * updates: centos-mirror.magsnet.net Setting up Install Process epel-release-6-8.noarch.rpm 14 kb 00:00 Examining /var/tmp/yum-root-g_ghvp/epel-release-6-8.noarch.rpm: epel-release-6-8.noarch Marking /var/tmp/yum-root-g_ghvp/epel-release-6-8.noarch.rpm to be installed Resolving Dependencies ---> Package epel-release.noarch 0:6-8 will be installed --> Finished Dependency Resolution Dependencies Resolved ================== Package Arch Version Repository Size ================== Installing: epel-release noarch 6-8 /epel-release-6-8.noarch 22 k Transaction Summary ================== Install 1 Package(s) Total size: 22 k Installed size: 22 k

2 Downloading Packages: Running rpm_check_debug Running Transaction Test Transaction Test Succeeded Running Transaction Installing : epel-release-6-8.noarch 1/1 Verifying : epel-release-6-8.noarch 1/1 Installed: epel-release.noarch 0:6-8 Complete! [root@rackspace-jon ~]# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/epel.repo [root@rackspace-jon ~]# yum --enablerepo=epel install pen Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile epel/metalink 5.7 kb 00:00 * base: centos-mirror.magsnet.net * epel: mirrors.nayatel.com * extras: centos-mirror.magsnet.net * updates: centos-mirror.magsnet.net epel 4.4 kb 00:00 epel/primary_db 6.2 MB 00:03 Setting up Install Process Resolving Dependencies ---> Package pen.x86_64 0: el6 will be installed --> Processing Dependency: libgeoip.so.1()(64bit) for package: pen el6.x86_64 ---> Package GeoIP.x86_64 0: el6 will be installed --> Finished Dependency Resolution Dependencies Resolved ================== Package Arch Version Repository Size ================== Installing: pen x86_ el6 epel 71 k Installing for dependencies: GeoIP x86_ el6 epel 21 M Transaction Summary ================== Install 2 Package(s) Total download size: 21 M

3 Installed size: 42 M Is this ok [y/n]: y Downloading Packages: (1/2): GeoIP el6.x86_64.rpm 21 MB 00:11 (2/2): pen el6.x86_64.rpm 71 kb 00: Total 1.7 MB/s 21 MB 00:12 warning: rpmts_hdrfromfdno: Header V3 RSA/SHA256 Signature, key ID 0608b895: NOKEY Retrieving key from file:///etc/pki/rpm-gpg/rpm-gpg-key-epel-6 Importing GPG key 0x0608B895: Userid : EPEL (6) <epel@fedoraproject.org> Package: epel-release-6-8.noarch (@/epel-release-6-8.noarch) From : /etc/pki/rpm-gpg/rpm-gpg-key-epel-6 Is this ok [y/n]: y Running rpm_check_debug Running Transaction Test Transaction Test Succeeded Running Transaction Installing : GeoIP el6.x86_64 1/2 Installing : pen el6.x86_64 2/2 Verifying : pen el6.x86_64 1/2 Verifying : GeoIP el6.x86_64 2/2 Installed: pen.x86_64 0: el6 Dependency Installed: GeoIP.x86_64 0: el6 Complete! Lets Start Configure PEN. [root@rackspace-jon ~]# vi /etc/pen.conf ################################### #WRITE BY MUHAMMAD ZEESHAN BHATTI # #Sr. Linux System Administrator # ################################### # log file LOGFILE=/var/log/pen.log # output file of status WEBFILE=/var/www/pen/webstats.html # control port CONTROL= :10080 # max connections

4 MAX_CONNECTIONS=500 # listen port PORT=80 # number of backend servers BACKEND=2 # IP address of a backend SERVER1= :80 # IP address of a backend SERVER2= :80 :wq! Next we can make Stratup Script for Pen. [root@rackspace-jon ~]# vi /etc/rc.d/init.d/pend #!/bin/bash # pend: Start/Stop Pend # chkconfig: # description: Pen is a light weight simple load balancer. # pidfile: /var/run/pen.pid. /etc/rc.d/init.d/functions. /etc/sysconfig/network. /etc/pen.conf LOCKFILE="/var/lock/subsys/pen" PID=/var/run/pen.pid PROG=/usr/bin/pen RETVAL=0 start() { echo -n $"Starting Pend: " SERVER=`grep "^SERVER" /etc/pen.conf cut -d= -f2` daemon $PROG -w $WEBFILE -x $MAX_CONNECTIONS -p $PID -l $LOGFILE -C $CONTROL -S $BACKEND -r $PORT $SERVER RETVAL=$? echo [ $RETVAL -eq 0 ] && touch $LOCKFILE return $RETVAL } stop() { echo -n $"Stopping Pend: " killproc $PROG RETVAL=$? echo

5 [ $RETVAL -eq 0 ] && rm -f $PID $LOCKFILE return $RETVAL } case "$1" in start) start ;; stop) stop ;; status) status pend ;; restart) stop start ;; *) echo $"Usage: $0 {start stop status restart}" exit 1 esac exit $? :wq! Next we can Set Logrotate Setting. [root@rackspace-jon ~]# vi /etc/logrotate.d/pen # this is an example /var/log/pen.log { daily copytruncate compress notifempty missingok postrotate /etc/rc.d/init.d/pend restart 2>&1 > /dev/null true endscript } :wq! [root@rackspace-jon ~]# chmod 755 /etc/rc.d/init.d/pend [root@rackspace-jon ~]# /etc/rc.d/init.d/pend start Starting Pend: [ OK ] [root@rackspace-jon ~]# chkconfig --add pend

6 ~]# chkconfig pend on Verify pen logs ~]# tail -f /var/log/pen.log GET / HTTP/ GET / HTTP/1.1 Great Pen is Runing. WEB SERVER 01 [root@rackspace-nfs01 ~]# yum isntall httpd Loaded plugins: fastestmirror No such command: isntall. Please use /usr/bin/yum --help [root@rackspace-nfs01 ~]# yum install httpd Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.nayatel.com * extras: mirrors.nayatel.com * updates: mirrors.nayatel.com base 3.7 kb 00:00 extras 3.4 kb 00:00 updates 3.4 kb 00:00 updates/primary_db 3.8 MB 00:03 Setting up Install Process Resolving Dependencies ---> Package httpd.x86_64 0: el6.centos will be updated --> Processing Dependency: httpd = el6.centos for package: httpd-devel el6.centos.x86_64 ---> Package httpd.x86_64 0: el6.centos will be an update --> Processing Dependency: httpd-tools = el6.centos for package: httpd el6.centos.x86_64 ---> Package httpd-devel.x86_64 0: el6.centos will be updated ---> Package httpd-devel.x86_64 0: el6.centos will be an update ---> Package httpd-tools.x86_64 0: el6.centos will be updated ---> Package httpd-tools.x86_64 0: el6.centos will be an update --> Finished Dependency Resolution Dependencies Resolved ================== Package Arch Version Repository Size ================== Updating: httpd x86_ el6.centos updates 824 k

7 Updating for dependencies: httpd-devel x86_ el6.centos updates 151 k httpd-tools x86_ el6.centos updates 73 k Transaction Summary ================== Upgrade 3 Package(s) Total download size: 1.0 M Is this ok [y/n]: y Downloading Packages: (1/3): httpd el6.centos.x86_64.rpm 824 kb 00:00 (2/3): httpd-devel el6.centos.x86_64.rpm 151 kb 00:00 (3/3): httpd-tools el6.centos.x86_64.rpm 73 kb 00: Total 1.0 MB/s 1.0 MB 00:00 Running rpm_check_debug Running Transaction Test Transaction Test Succeeded Running Transaction Warning: RPMDB altered outside of yum. Updating : httpd-tools el6.centos.x86_64 1/6 Updating : httpd el6.centos.x86_64 2/6 Updating : httpd-devel el6.centos.x86_64 3/6 Cleanup : httpd-devel el6.centos.x86_64 4/6 Cleanup : httpd el6.centos.x86_64 5/6 Cleanup : httpd-tools el6.centos.x86_64 6/6 Verifying : httpd el6.centos.x86_64 1/6 Verifying : httpd-tools el6.centos.x86_64 2/6 Verifying : httpd-devel el6.centos.x86_64 3/6 Verifying : httpd el6.centos.x86_64 4/6 Verifying : httpd-tools el6.centos.x86_64 5/6 Verifying : httpd-devel el6.centos.x86_64 6/6 Updated: httpd.x86_64 0: el6.centos Dependency Updated: httpd-devel.x86_64 0: el6.centos httpd-tools.x86_64 0: el6.centos Complete! [root@rackspace-nfs01 ~]# /etc/init.d/httpd start Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using for ServerName [ OK ]

8 we can verify httpd logs to load balning is working. ~]# tail -f /var/log/httpd/access_log [19/Jul/2014:11:09: ] "GET /pen/westatus HTTP/1.1" "-" [19/Jul/2014:11:11: ] "GET / HTTP/1.1" "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:11: ] "GET /icons/powered_by_rh.png HTTP/1.1" " "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:11: ] "GET / HTTP/1.1" "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:12: ] "GET / HTTP/1.1" "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:12: ] "GET / HTTP/1.1" "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:12: ] "GET /icons/powered_by_rh.png HTTP/1.1" " "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:16: ] "GET / HTTP/1.1" "-" [19/Jul/2014:11:17: ] "GET / HTTP/1.1" "-" [19/Jul/2014:11:18: ] "GET / HTTP/1.1" "-" [19/Jul/2014:11:22: ] "GET / HTTP/1.1" "-" "ELinks/0.12pre5 (textmode; Linux; 134x31-2)" Great Working Fine. First Request Pen Server send on Port server1 port 80. WEB SERVER 02 [root@rackspace-nfs02 ~]# yum install httpd Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.nayatel.com * extras: mirrors.nayatel.com * updates: mirrors.nayatel.com base 3.7 kb 00:00 extras 3.4 kb 00:00 updates 3.4 kb 00:00 updates/primary_db 3.8 MB 00:02 Setting up Install Process Resolving Dependencies

9 ---> Package httpd.x86_64 0: el6.centos will be updated --> Processing Dependency: httpd = el6.centos for package: httpd-devel el6.centos.x86_64 ---> Package httpd.x86_64 0: el6.centos will be an update --> Processing Dependency: httpd-tools = el6.centos for package: httpd el6.centos.x86_64 ---> Package httpd-devel.x86_64 0: el6.centos will be updated ---> Package httpd-devel.x86_64 0: el6.centos will be an update ---> Package httpd-tools.x86_64 0: el6.centos will be updated ---> Package httpd-tools.x86_64 0: el6.centos will be an update --> Finished Dependency Resolution Dependencies Resolved ================== Package Arch Version Repository Size ================== Updating: httpd x86_ el6.centos updates 824 k Updating for dependencies: httpd-devel x86_ el6.centos updates 151 k httpd-tools x86_ el6.centos updates 73 k Transaction Summary ================== Upgrade 3 Package(s) Total download size: 1.0 M Is this ok [y/n]: y Downloading Packages: (1/3): httpd el6.centos.x86_64.rpm 824 kb 00:00 (2/3): httpd-devel el6.centos.x86_64.rpm 151 kb 00:00 (3/3): httpd-tools el6.centos.x86_64.rpm 73 kb 00: Total 957 kb/s 1.0 MB 00:01 Running rpm_check_debug Running Transaction Test Transaction Test Succeeded Running Transaction Warning: RPMDB altered outside of yum. Updating : httpd-tools el6.centos.x86_64 1/6 Updating : httpd el6.centos.x86_64 2/6 Updating : httpd-devel el6.centos.x86_64 3/6

10 Cleanup : httpd-devel el6.centos.x86_64 4/6 Cleanup : httpd el6.centos.x86_64 5/6 Cleanup : httpd-tools el6.centos.x86_64 6/6 Verifying : httpd el6.centos.x86_64 1/6 Verifying : httpd-tools el6.centos.x86_64 2/6 Verifying : httpd-devel el6.centos.x86_64 3/6 Verifying : httpd el6.centos.x86_64 4/6 Verifying : httpd-tools el6.centos.x86_64 5/6 Verifying : httpd-devel el6.centos.x86_64 6/6 Updated: httpd.x86_64 0: el6.centos Dependency Updated: httpd-devel.x86_64 0: el6.centos httpd-tools.x86_64 0: el6.centos Complete! [root@rackspace-nfs02 ~]# /etc/init.d/httpd start Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using for ServerName [ OK ] now we can verify httpd access to 2nd request pen server send on where.. [root@rackspace-nfs02 tmp]# tail -f /var/log/httpd/access_log [19/Jul/2014:11:10: ] "GET /pen/westatus HTTP/1.1" "-" [19/Jul/2014:11:11: ] "GET /icons/apache_pb.gif HTTP/1.1" " "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:11: ] "GET /favicon.ico HTTP/1.1" "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:11: ] "GET /icons/powered_by_rh.png HTTP/1.1" " "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:12: ] "GET /icons/powered_by_rh.png HTTP/1.1" " "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:12: ] "GET /icons/apache_pb.gif HTTP/1.1" " "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/ (KHTML, like Gecko) Chrome/ Safari/537.36" [19/Jul/2014:11:16: ] "GET / HTTP/1.1" "-" [19/Jul/2014:11:17: ] "GET / HTTP/1.1" "-" [19/Jul/2014:11:18: ] "GET / HTTP/1.1" "-"

11 [19/Jul/2014:11:18: ] "GET / HTTP/1.1" "-" [19/Jul/2014:11:24: ] "GET / HTTP/1.1" "-" 4 Great That's Load Blancer Working Perfectly Fine.

VCP-DCV5, OCP (DBA), MCSA, SUSE CLA, RHCSA-7]

VCP-DCV5, OCP (DBA), MCSA, SUSE CLA, RHCSA-7] Alternate Titles: APACHE V-HOST SETUP Author: Muhammad Zeeshan Bhatti [LPI, VCP-DCV5, OCP (DBA), MCSA, SUSE CLA, RHCSA-7] (http://zeeshanbhatti.com) (admin@zeeshanbhatti.com) APACHE V-HOST SETUP [root@zeeshanbhatti

More information

~]# uname -a Linux app el6.x86_64 #1 SMP Tue Mar 25 19:59:55 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

~]# uname -a Linux app el6.x86_64 #1 SMP Tue Mar 25 19:59:55 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux Alternate Titles: VPN Client Setup on Centos Author: Muhammad Zeeshan Bhatti [LPI, VCP, OCP (DBA), MCSA, SUSE CLA,] (http://zeeshanbhatti.com) (admin@zeeshanbhatti.com) [root@app-01 ~]# uname -a Linux

More information

mod_ssl.x86_64 1: el6.centos Complete! Start the Webserver service httpd start Starting httpd: [ OK ]

mod_ssl.x86_64 1: el6.centos Complete! Start the Webserver service httpd start Starting httpd: [ OK ] Total download size: 1.7 M Is this ok [y/n]: y Downloading Packages: Setting up and reading Presto delta metadata updates/prestodelta 210 kb 00:00 Processing delta metadata Download delta size: 525 k (1/4):

More information

Install Apache, PHP And MySQL On CentOS 7 (LAMP)

Install Apache, PHP And MySQL On CentOS 7 (LAMP) Install Apache, PHP And MySQL On CentOS 7 (LAMP) Version 1.0 Authors: Till Brehm , Falko Timme Updates: Srijan Kishore Follow Howtoforge

More information

Download the current release* of VirtualBox for the OS on which you will install VirtualBox. In these notes, that's Windows 7.

Download the current release* of VirtualBox for the OS on which you will install VirtualBox. In these notes, that's Windows 7. Get VirtualBox Go to www.virtualbox.org and select Downloads. VirtualBox/CentOS Setup 1 Download the current release* of VirtualBox for the OS on which you will install VirtualBox. In these notes, that's

More information

EURECOM Virtual Desktop Client Usage and Installation Guide V /05/2011 Sébastien Courché

EURECOM Virtual Desktop Client Usage and Installation Guide V /05/2011 Sébastien Courché EURECOM Virtual Desktop Client Usage and Installation Guide V 2.0 14/05/2011 Sébastien Courché Contents 1. Introduction :... 2 2. Microsoft Windows (ex : Internet Explorer 7)... 4 3. Apple MacOS (ex :

More information

Docker. Master the execution environment of your applications. Aurélien Dumez. Inria Bordeaux - Sud-Ouest. Tuesday, March 24th 2015

Docker. Master the execution environment of your applications. Aurélien Dumez. Inria Bordeaux - Sud-Ouest. Tuesday, March 24th 2015 Docker Master the execution environment of your applications Aurélien Dumez Inria Bordeaux - Sud-Ouest Tuesday, March 24th 2015 Aurélien Dumez Docker 1 / 34 Content 1 The bad parts 2 Overview 3 Internals

More information

GestióIP IPAM v3.0 IP address management software Installation Guide v0.4

GestióIP IPAM v3.0 IP address management software Installation Guide v0.4 GestióIP IPAM v3.0 IP address management software Installation Guide v0.4 www.gestioip.net GestióIP Copyright Marc Uebel 2014 Table of Contents 1 Introduction... 3 2 Requirements... 3 3 System preparation...

More information

Tiebreaker Software 1.21 Installation and Configuration Guide

Tiebreaker Software 1.21 Installation and Configuration Guide ONTAP 9 Tiebreaker Software 1.21 Installation and Configuration Guide January 2018 215-09567_G0 doccomments@netapp.com Updated for ONTAP 9.3 Table of Contents 3 Contents Deciding whether to use this guide...

More information

GestióIP IPAM. v3.2. Installation Guide. v0.12. IP address management software.

GestióIP IPAM. v3.2. Installation Guide. v0.12. IP address management software. GestióIP IPAM v3.2 IP address management software Installation Guide v0.12 www.gestioip.net GestióIP Copyright Marc Uebel 2017 Table of Contents 1 Introduction...3 2 Requirements...3 3 System preparation...3

More information

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the other 3(4) nodes.

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the other 3(4) nodes. Network setup As the root user execute the command "ifconfig" on each host. Take a note of ipaddress's of all machines I have a home LAN so my addresses are class C which might be in the format 192.168.192.x.

More information

SQL SERVER INSTALLATION AND CONFIGURATION ON RED HAT LINUX. Details to the Presentation

SQL SERVER INSTALLATION AND CONFIGURATION ON RED HAT LINUX. Details to the Presentation SQL SERVER INSTALLATION AND CONFIGURATION ON RED HAT LINUX Details to the Presentation INSTALLING SQL SERVER ON RED HAT LINUX [ckim@sql100.ssh]$ sudo curl -o /etc/yum.repos.d/mssql-server.repo https://packages.microsoft.com/config/rhel/7/mssql-server-2017.repo

More information

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the all nodes.

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the all nodes. Network setup As the root user execute the command "ifconfig" on each host. Take a note of ipaddress's of all machines I have a home LAN so my addresses are class C which might be in the format 192.168.192.x.

More information

Note: - the OS on which you will install VirtualBox is called the host OS. - the OS you will install on VirtualBox (later) is called the guest OS.

Note: - the OS on which you will install VirtualBox is called the host OS. - the OS you will install on VirtualBox (later) is called the guest OS. Get VirtualBox Go to www.virtualbox.org and select Downloads: VirtualBox/CentOS Setup 1 Note: - the OS on which you will install VirtualBox is called the host OS. - the OS you will install on VirtualBox

More information

MySQL Real Time Single DB Replication & SSL Encryption on CENTOS 6.3

MySQL Real Time Single DB Replication & SSL Encryption on CENTOS 6.3 Alternate Titles: MYSQL SSL Encryption Based Replication Setup Author: Muhammad Zeeshan Bhatti [LPI, VCP, OCP (DBA), MCSA, SUSE CLA,] (http://zeeshanbhatti.com) (admin@zeeshanbhatti.com) MySQL Real Time

More information

Elastix Smart Assistant

Elastix Smart Assistant Elastix Smart Assistant Administrator Manual Objective: Allow the administrator to set up the initial configuration of Smart Assistant in an Elastix server. Description: Smart Assistant is an application

More information

EDB Backup and Recovery Tool Guide

EDB Backup and Recovery Tool Guide EDB Backup and Recovery Tool 1.1 July 22, 2015 , Version 1.1.1 by EnterpriseDB Corporation Copyright 2014-2015 EnterpriseDB Corporation. All rights reserved. EnterpriseDB Corporation, 34 Crosby Drive,

More information

ClamAV 설치 ( 큐잉서버 ) serverb

ClamAV 설치 ( 큐잉서버 ) serverb ClamAV 설치 ( 큐잉서버 ) serverb 2009 년 10 월 23 일금요일 오전 10:42 Server B 의기존 dovecot 삭제 ( 큐잉서버로사용 ) Sendmail-cf sendmail-devel 설치 Sendmail SMTP AUTH 및 Daemon 리스닝주소변경 Sendmail.cf 수정 Sendmail milter 기능제공여부파악 Clamav

More information

Getting Started with MySQL

Getting Started with MySQL A P P E N D I X B Getting Started with MySQL M ysql is probably the most popular open source database. It is available for Linux and you can download and install it on your Linux machine. The package is

More information

Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On CentOS 6.4

Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On CentOS 6.4 Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On CentOS 6.4 Version 1.0 Author: Falko Timme Follow me on Twitter Last edited 03/22/2013 This

More information

YUM plugins on AIX. fastestmirror: sorts each repository's mirrorlist by connection speed prior to downloading packages.

YUM plugins on AIX. fastestmirror: sorts each repository's mirrorlist by connection speed prior to downloading packages. YUM plugins on AIX Plugins are the python modules provided with a separate package and these modules are loaded when yum starts. Individual package needs to be installed to enable the required plugins.

More information

GVP Deployment Guide. Maintaining GVP

GVP Deployment Guide. Maintaining GVP GVP Deployment Guide Maintaining GVP 11/19/2017 Maintaining GVP Learn how to stop, start, and uninstall Genesys Voice Platform components. Starting and Stopping the Components Uninstalling the Components

More information

Bacula Server Installation and Configuration on Centos 6.2

Bacula Server Installation and Configuration on Centos 6.2 Bacula Server Installation and Configuration on Centos 6.2 Author : Birjesh Kumar Categories : Backup Server, Backup tools, Linux Tools, Uncategorized Date : Apr 24, 2015 Facebook Twitter Google+ Gmail

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

(U) Hive Infrastructure Installation and Configuration Guide

(U) Hive Infrastructure Installation and Configuration Guide (U) Hive Infrastructure Installation and Configuration Guide November 11, 2012 Classified By: 0706993 Reason: 1.4(c) Declassify On: 20371105 Derived From: COL S-06 ii //20371105 November 2012 (U) Table

More information

HTTPS Setup using mod_ssl on CentOS 5.8. Jeong Chul. tland12.wordpress.com. Computer Science ITC and RUPP in Cambodia

HTTPS Setup using mod_ssl on CentOS 5.8. Jeong Chul. tland12.wordpress.com. Computer Science ITC and RUPP in Cambodia HTTPS Setup using mod_ssl on CentOS 5.8 Jeong Chul tland12.wordpress.com Computer Science ITC and RUPP in Cambodia HTTPS Setup using mod_ssl on CentOS 5.8 Part 1 Basic concepts on SSL Step 1 Secure Socket

More information

RG-MACC_2.0 Installation Manual

RG-MACC_2.0 Installation Manual RG-MACC_2.0 Installation Manual Ruijie Networks Co., Ltd all rights reserved 1 Copyright Clarify Copyright ownership belongs to Ruijie, shall not be reproduced, copied, or used in other ways without permission.

More information

Enable Auditing in Open LDAP on Linux Server

Enable Auditing in Open LDAP on Linux Server Enable Auditing in Open LDAP on Linux Server EventTracker v7.x Publication Date: Apr 15, 2014 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract This document describes

More information

Web Server ( ): FTP, SSH, HTTP, HTTPS, SMTP, POP3, IMAP, POP3S, IMAPS, MySQL (for some local services[qmail/vpopmail])

Web Server ( ): FTP, SSH, HTTP, HTTPS, SMTP, POP3, IMAP, POP3S, IMAPS, MySQL (for some local services[qmail/vpopmail]) The following firewall scripts will help you secure your web and db servers placed on the internet. The scenario is such that the MySQL db server is desired to receive db connections / traffic only from

More information

Configure Sensu and other Actions to Register Clients

Configure Sensu and other Actions to Register Clients Configure Sensu and other Actions to Register Clients Contents Introduction Prerequisites Requirements Components Used Background Information Configure Install Epel Repository Install Erlang Install Redis,

More information

System Programming. Session 6 Shell Scripting

System Programming. Session 6 Shell Scripting System Programming Session 6 Shell Scripting Programming C Programming vs Shell Programming C vs Shell Programming Compilation/Direct execution C Requires compilation while shell script can be directly

More information

T.A.D / ABS - Installation

T.A.D / ABS - Installation T.A.D / ABS - Installation Technical Architecture Document / Installation Topic : This document aims to expose the architecture to set up for the installation of ABS. It exposes all the tools that make

More information

Installing MyDNS And The MyDNSConfig Control Panel On Fedora 8

Installing MyDNS And The MyDNSConfig Control Panel On Fedora 8 By Falko Timme Published: 2007-12-06 19:24 Installing MyDNS And The MyDNSConfig Control Panel On Fedora 8 Version 1.0 Author: Falko Timme Last edited 12/03/2007 In this tutorial

More information

LAMP Stack with VirtualHosts On Centos 6.x

LAMP Stack with VirtualHosts On Centos 6.x LAMP Stack with VirtualHosts On Centos 6.x This article illustrates how to install the Apache Mysql PHP Stack on Centos 6.x. Additionally, with this configuration, you can serve Multiple Domains using

More information

FTP server with PureFTPd, MariaDB and Virtual Users (incl. Quota and Bandwidth Management) on CentOS 7.2

FTP server with PureFTPd, MariaDB and Virtual Users (incl. Quota and Bandwidth Management) on CentOS 7.2 FTP server with PureFTPd, MariaDB and Virtual Users (incl. Quota and Bandwidth Management) on CentOS 7.2 This tutorial exists for these OS versions CentOS 7 CentOS 6.5 CentOS 6.4 CentOS 6.2 CentOS 5.3

More information

About yum. Front-end to rpm. Replacement for up2date. Designed to resolve package dependencies Can locate packages across multiple repositories 1-19

About yum. Front-end to rpm. Replacement for up2date. Designed to resolve package dependencies Can locate packages across multiple repositories 1-19 About yum Front-end to rpm Designed to resolve package dependencies Can locate packages across multiple repositories Replacement for up2date 1-19 Development of RPM cemented the future of Linux by greatly

More information

Ganglia is monitring system for high performance computing systems. We have two node potter.isb.ots.com and harry.isb.ots.com both are HPC nodes.

Ganglia is monitring system for high performance computing systems. We have two node potter.isb.ots.com and harry.isb.ots.com both are HPC nodes. Date : 13-Oct-2009 Ganglia installation Howto By Syed Asim Abbas For comments and suggestions : asimabbas31 at gmail dot com ------------------------------------------------------ Ganglia is monitring

More information

CentOS 6.7 with Vault MySQL 5.1

CentOS 6.7 with Vault MySQL 5.1 CentOS 6.7 with Vault MySQL 5.1 OS Middleware Installation Web Server, MySQL and PHP Other Middleware Middleware Setup and Configuration Database PHP NetCommons2 Before Install Preparation Installation

More information

Using the MySQL Yum Repository

Using the MySQL Yum Repository Using the MySQL Yum Repository Abstract This document provides some basic instructions for using the MySQL Yum Repository to install and upgrade MySQL. It is excerpted from the MySQL 5.6 Reference Manual.

More information

IBM Platform Load-Sharing Facility (LSF) Integration with NetApp Storage

IBM Platform Load-Sharing Facility (LSF) Integration with NetApp Storage \ Technical Report IBM Platform Load-Sharing Facility (LSF) Integration with NetApp Storage An Implementation and Configuration Guide Bikash Roy Choudhury, NetApp October 2013 TR-4237 Abstract IBM Platform

More information

Homework 2 50 points. CSE422 Computer Networking Spring 2018

Homework 2 50 points. CSE422 Computer Networking Spring 2018 Homework 2 50 points ATM Application-Level Protocol (10 points) Design and describe an application-level protocol to be used between an automatic teller machine and a bank s centralized computer. Your

More information

Spacewalk. Installation Guide for CentOS 6.4

Spacewalk. Installation Guide for CentOS 6.4 Spacewalk Installation Guide for CentOS 6.4 Contents Spacewalk Overview... 3 Spacewalk Project Architecture... 3 System Prerequisites... 3 Installation... 4 Spacewalk Components... 4 Prerequisites Install

More information

RG-MACC-BASE_v2.01. Installation Guide

RG-MACC-BASE_v2.01. Installation Guide RG-MACC-BASE_v2.01 Preface Thank you for using our products. Audience This manual is intended for: Network engineers Technical support and servicing engineers Network administrators Symbols Important information.

More information

Running various Bigtop components

Running various Bigtop components Running various Bigtop components Running Hadoop Components One of the advantages of Bigtop is the ease of installation of the different Hadoop Components without having to hunt for a specific Hadoop Component

More information

Eucalyptus User Guide

Eucalyptus User Guide Eucalyptus 4.4.2 User Guide 2017-09-18 2017 Ent. Services Development Corporation LP Eucalyptus Contents 2 Contents Eucalyptus Overview...6 Getting Started...8 Getting Started with the Eucalyptus Management

More information

TEAMWORK SYSTEM. version user guide

TEAMWORK SYSTEM. version user guide version 17.0.1 user guide No Magic, Inc. 2011 All material contained herein is considered proprietary information owned by No Magic, Inc. and is not to be shared, copied, or reproduced by any means. All

More information

Isilon InsightIQ. Version Installation Guide

Isilon InsightIQ. Version Installation Guide Isilon InsightIQ Version 4.1.0 Installation Guide Copyright 2009-2016 EMC Corporation All rights reserved. Published October 2016 Dell believes the information in this publication is accurate as of its

More information

Deploying BigFix Patches for Red Hat

Deploying BigFix Patches for Red Hat Deploying BigFix Patches for Red Hat IBM SECURITY SUPPORT OPEN MIC Reminder: You must dial-in to the phone conference to listen to the panelists. The web cast does not include audio. USA toll-free: 866-803-2141

More information

Using HP Vertica on Amazon Web Services

Using HP Vertica on Amazon Web Services HP Vertica Analytics Platform 6.1.x Using HP Vertica on Amazon Web Services Doc Revision 3 Copyright 2006-2013 Hewlett-Packard Date of Publication: Monday, September 23, 2013 Contents Syntax Conventions

More information

Administrating TeamForge 6.1 on CentOS

Administrating TeamForge 6.1 on CentOS Administrating TeamForge 6.1 on CentOS 2 OpenTopic TOC Contents Help for system administrators...7 Install CollabNet TeamForge 6.1 on CentOS...7 Plan your CollabNet TeamForge 6.1 installation...7 Install

More information

NICE Desktop Cloud Visualization. Administrator Guide

NICE Desktop Cloud Visualization. Administrator Guide NICE Desktop Cloud Visualization Administrator Guide NICE Desktop Cloud Visualization: Administrator Guide Copyright 2018 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's

More information

Aspera Orchestrator Admin Guide 3.0.3

Aspera Orchestrator Admin Guide 3.0.3 Aspera Orchestrator Admin Guide 3.0.3 Linux Revision: 768 Generated: 10/09/2018 13:49 Contents ii Contents Introduction... 4 Single Node Installation... 4 Requirements...4 Installing Orchestrator... 5

More information

Identifying Operating System Using Flow-based Traffic Fingerprinting

Identifying Operating System Using Flow-based Traffic Fingerprinting Identifying Operating System Using Flow-based Traffic Fingerprinting Tomáš Jirsík, Pavel Čeleda {jirsik celeda}@ics.muni.cz Institute of Computer Science, Masaryk University EUNICE 2014 September, 1. 5.,

More information

Bash. About Bash. Guidelines and Limitations

Bash. About Bash. Guidelines and Limitations About, page 1 Guidelines and Limitations, page 1 Accessing, page 2 Escalate Privileges to Root, page 3 Examples of Commands, page 4 Managing Feature RPMs, page 5 Managing Patch RPMs, page 8 Persistently

More information

UA-Tester.... or why Web-Application Penetration Testers are only getting half the story

UA-Tester.... or why Web-Application Penetration Testers are only getting half the story UA-Tester... or why Web-Application Penetration Testers are only getting half the story UA-Tester... or why Web-Application Penetration Testers are only getting half the story... or time to PIMP your tool!

More information

Managing MySQL Version Upgrades. Operating Systems. About the Author OTN TOUR years with MySQL / 26 years with RDBMS

Managing MySQL Version Upgrades. Operating Systems. About the Author OTN TOUR years with MySQL / 26 years with RDBMS About the Author Ronald BRADFORD Managing MySQL Version Upgrades Ronald Bradford http://ronaldbradford.com @RonaldBradford 16 years with MySQL / 26 years with RDBMS Senior Consultant at MySQL Inc (06-08)

More information

An internal CA that is part of your IT infrastructure, like a Microsoft Windows CA

An internal CA that is part of your IT infrastructure, like a Microsoft Windows CA Purpose This document will describe how to setup to use SSL/TLS to provide encrypted connections to the. This document can also be used as an initial point for troubleshooting SSL/TLS connections. Target

More information

simplevisor Documentation

simplevisor Documentation simplevisor Documentation Release 1.2 Massimo Paladin June 27, 2016 Contents 1 Main Features 1 2 Installation 3 3 Configuration 5 4 simplevisor command 9 5 simplevisor-control command 13 6 Supervisor

More information

High-Availability Storage with GlusterFS on CentOS 7 - Mirror across two storage servers

High-Availability Storage with GlusterFS on CentOS 7 - Mirror across two storage servers High-Availability Storage with GlusterFS on CentOS 7 - Mirror across two storage servers This tutorial exists for these OS versions CentOS 6.3 CentOS 5.4 On this page 1 Preliminary Note 2 Enable additional

More information

Automating Linux App Startup

Automating Linux App Startup Automating Linux App Startup David Boyes Sine Nomine Associates Agenda Runlevels, init, and symlinks, oh, my! Sequence of events during startup A sample application startup script Caveats on insserv, yast

More information

Spacewalk. Installation Guide RHEL 5.9

Spacewalk. Installation Guide RHEL 5.9 Spacewalk Installation Guide RHEL 5.9 Contents Spacewalk Overview... 3 Spacewalk Project Architecture... 3 System Prerequisites... 3 Installation... 4 Spacewalk Components... 4 Prerequisites Install for

More information

Isilon InsightIQ. Version Installation Guide

Isilon InsightIQ. Version Installation Guide Isilon InsightIQ Version 4.0.1 Installation Guide Copyright 2009-2016 EMC Corporation. All rights reserved. Published in the USA. Published May, 2016 EMC believes the information in this publication is

More information

Oracle R Enterprise Installation and Usage

Oracle R Enterprise Installation and Usage Oracle R Enterprise Installation and Usage This work may be reproduced and redistributed, in whole or in part, without alteration and without prior written permission, provided all copies contain the following

More information

EDB Postgres Enterprise Manager Installation Guide Version 6.0

EDB Postgres Enterprise Manager Installation Guide Version 6.0 EDB Postgres Enterprise Manager Installation Guide Version 6.0 March 7, 2016 EDB Postgres Enterprise Manager Installation Guide by EnterpriseDB Corporation Copyright 2013-2016 EnterpriseDB Corporation.

More information

Automating Linux App Startup

Automating Linux App Startup Automating Linux App Startup David Boyes Session L55 2006 Sine Nomine Associates Agenda Runlevels, init, and symlinks, oh, my! Sequence of events during startup A sample application startup script Separating

More information

Hortonworks DataFlow

Hortonworks DataFlow Hortonworks DataFlow Installing HDF Services on a New HDP Cluster (February 28, 2018) docs.hortonworks.com Hortonworks DataFlow: Installing HDF Services on a New HDP Cluster Copyright 2012-2018 Hortonworks,

More information

ULTEO OPEN VIRTUAL DESKTOP CENTOS 6.0 SUPPORT

ULTEO OPEN VIRTUAL DESKTOP CENTOS 6.0 SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 CENTOS 6.0 SUPPORT Contents 1 Prerequisites: CentOS 6.0 3 1.1 System Requirements.............................. 3 1.2 SELinux....................................... 3

More information

MRCP. RPM Installation Manual. Administrator Guide. Powered by Universal Speech Solutions LLC

MRCP. RPM Installation Manual. Administrator Guide. Powered by Universal Speech Solutions LLC Powered by Universal Speech Solutions LLC MRCP RPM Installation Manual Administrator Guide Revision: 55 Created: February 7, 2015 Last updated: August 30, 2017 Author: Arsen Chaloyan Powered by Universal

More information

EDB Postgres Enterprise Manager Installation Guide Version 7

EDB Postgres Enterprise Manager Installation Guide Version 7 EDB Postgres Enterprise Manager Installation Guide Version 7 June 1, 2017 EDB Postgres Enterprise Manager Installation Guide by EnterpriseDB Corporation Copyright 2013-2017 EnterpriseDB Corporation. All

More information

ULTEO OPEN VIRTUAL DESKTOP SUSE LINUX ENTERPRISE SERVER (SLES) 11 SP1 SUPPORT

ULTEO OPEN VIRTUAL DESKTOP SUSE LINUX ENTERPRISE SERVER (SLES) 11 SP1 SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 SUSE LINUX ENTERPRISE SERVER (SLES) 11 SP1 SUPPORT Contents 1 Prerequisites: SUSE Linux Enterprise Server (SLES) 11 SP1 3 1.1 System Requirements..............................

More information

OpenNebula 4.8 Quickstart CentOS 6 and Xen

OpenNebula 4.8 Quickstart CentOS 6 and Xen OpenNebula 4.8 Quickstart CentOS 6 and Xen Release 4.8 OpenNebula Project August 12, 2014 CONTENTS 1 Package Layout 3 2 Step 1. Installation in the Frontend 5 2.1 1.1. Install the repo............................................

More information

Windows Could Not Start Apache 2.2 Error Code

Windows Could Not Start Apache 2.2 Error Code Windows Could Not Start Apache 2.2 Error Code 1 Windows could not start the Apache Tomcat Confluence on Local Computer. service, contact the service vendor, and refer to service-specific error code 0.

More information

IBM Cloudant Version 1 Release 0. Installing and Maintaining IBM Cloudant Data Layer Local Edition IBM

IBM Cloudant Version 1 Release 0. Installing and Maintaining IBM Cloudant Data Layer Local Edition IBM IBM Cloudant Version 1 Release 0 Installing and Maintaining IBM Cloudant Data Layer Local Edition IBM IBM Cloudant Version 1 Release 0 Installing and Maintaining IBM Cloudant Data Layer Local Edition

More information

Integration of UNICORE Components into Linux Systems

Integration of UNICORE Components into Linux Systems Mitglied der Helmholtz-Gemeinschaft Integration of UNICORE Components into Linux Systems 15.12.2009 Rebecca Breu UNICORE Installation as of Now tgz or graphical installer all files installed into one directory

More information

Installing Alfresco components one by one. Angel Borroy

Installing Alfresco components one by one. Angel Borroy Installing Alfresco components one by one Angel Borroy developer@keensoft Alfresco components (201702) https://community.alfresco.com/docs/doc-6641-alfresco-community-edition-file-list-201702 Alfresco

More information

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment NetBrain Integrated Edition 7.1 Upgrade Instructions Two-Server Deployment Version 7.1a Last Updated 2018-09-04 Copyright 2004-2018 NetBrain Technologies, Inc. All rights reserved. Contents 1. Upgrading

More information

HP IT Operations Compliance Community Edition

HP IT Operations Compliance Community Edition HP IT Operations Compliance Community Edition Software Version: 00.14.1200 - Getting Started Guide Document Release Date: January 2015 Software Release Date: January 2015 Legal Notices Warranty The only

More information

Use Software Collections for PHP 5.6 support on RHEL and CentOS 6 and 7

Use Software Collections for PHP 5.6 support on RHEL and CentOS 6 and 7 Use Software Collections for PHP 5.6 support on RHEL and CentOS 6 and 7 Introduction Audience Disclaimer Software Collections and PHP Installation Install MySQL Enable Software Collections Add repositories

More information

LOGROTATE(8) System Administrator s Manual LOGROTATE(8)

LOGROTATE(8) System Administrator s Manual LOGROTATE(8) NAME logrotate - rotates, compresses, and mails system logs SYNOPSIS logrotate [ dv] [ f force] [ s state file] config_file.. DESCRIPTION logrotate is designed to ease administration of systems that generate

More information

FGCP PHP+PostgreSQL Web Platform Template

FGCP PHP+PostgreSQL Web Platform Template FGCP PHP+PostgreSQL Web Platform Template An introductory guide to deploying the FGCP PHP+PostgreSQL(TypeA) Web Platform Template The FGCP Platform as a Service library now includes several new Web Platform

More information

Illustrated Steps to create greggroeten.net with AWS

Illustrated Steps to create greggroeten.net with AWS Illustrated Steps to create greggroeten.net with AWS Screenshots of each step Table of Contents 1. CREATE VPC 10.10.0/16.... 3 2. CREATE 1 PUBLIC SUBNET IN DEFAULT AZ, EX BELOW... 4 3. CREATE IGW, ATTACH

More information

Introduction Outline Preparation Set BIOS Passwords First Boot Procedures... 2

Introduction Outline Preparation Set BIOS Passwords First Boot Procedures... 2 CTP Series Security Deployment Guide Release 6.2 20 February 2012 TABLE OF CONTENTS Introduction... 2 Outline... 2 Preparation... 2 Set BIOS Passwords... 2 First Boot Procedures... 2 Configuration Actions

More information

Hortonworks DataFlow

Hortonworks DataFlow Hortonworks DataFlow Installing an HDF Cluster (June 9, 2017) docs.hortonworks.com Hortonworks DataFlow: Installing an HDF Cluster Copyright 2012-2017 Hortonworks, Inc. Some rights reserved. Except where

More information

Exercises. Cacti Installation and Configuration

Exercises. Cacti Installation and Configuration Exercises Cacti Installation and Configuration Exercises Your Mission... Install Cacti Create device entry for your local router Create device entries for your local servers Create entries for class router

More information

Exercises. Cacti Installation and Configuration

Exercises. Cacti Installation and Configuration Exercises Cacti Installation and Configuration Exercises Your Mission... Install Cacti Create device entry for your local router Create device entries for your local servers Create entries for class router

More information

Zephyr 4.6 Installation on RedHat Enterprise 5/6 Linux 64-Bit

Zephyr 4.6 Installation on RedHat Enterprise 5/6 Linux 64-Bit Sep 14 Zephyr 4.6 Installation on RedHat Enterprise 5/6 Linux 64-Bit Z e p h y r, 7 7 0 7 G a t e w a y B l v d, S u i t e 1 0 0, N e w a r k, C A 9 4 5 6 0, U S A Zephyr 4.6 Installation on RedHat Enterprise

More information

7.3 Install on Linux and Initial Configurations

7.3 Install on Linux and Initial Configurations 7.3 Install on Linux and Initial Configurations This section describes how to install SoftEther VPN Server to a Linux operating system. This assumes that in the Linux operating system, no extra application

More information

Getting SNORT working in CentOS 6.x/7.x and VirtualBox 4.x.x

Getting SNORT working in CentOS 6.x/7.x and VirtualBox 4.x.x Getting SNORT working in CentOS 6.x/7.x and VirtualBox 4.x.x Last Revised on March 21, 2015 The document below uses the following color codes for items/steps the user should be aware of during the conguration

More information

Check the FQDN of your server by executing following two commands in the terminal.

Check the FQDN of your server by executing following two commands in the terminal. LDAP or Lightweight Directory Access Protocol, is a protocol designed to manage and access related information in a centralized, hierarchical file and directory structure. An LDAP server is a non-relational

More information

Apache Manual Install Ubuntu Php Mysql. Phpmyadmin No >>>CLICK HERE<<<

Apache Manual Install Ubuntu Php Mysql. Phpmyadmin No >>>CLICK HERE<<< Apache Manual Install Ubuntu Php Mysql Phpmyadmin No Ubuntu 14.10 LAMP server tutorial with Apache 2, PHP 5 and MySQL (MariaDB) Additionally, I will install phpmyadmin to make MySQL administration easier.

More information

LAMP Stack - VMware Sample Blueprint

LAMP Stack - VMware Sample Blueprint LAMP Stack - VMware Sample Blueprint Goal and Overview The Microsoft SQL Server 2014 SP1 VMware sample blueprints is a working sample of provisioning a full Microsoft stack that includes IIS,.NET and Microsoft

More information

Hypertext Transport Protocol

Hypertext Transport Protocol Hypertext Transport Protocol CSE 333 Summer 2018 Instructor: Hal Perkins Teaching Assistants: Renshu Gu William Kim Soumya Vasisht Administriia Section tomorrow: pthread tutorial/demo Followup exercise

More information

Configuring Your Account (40 points)

Configuring Your Account (40 points) This assignment assumes you have read Chapters 2, 3, 4 and 5 of Sobell. Some specific cross-references may also be given in the questions below. Part I Configuring Your Account (40 points) For this part

More information

Purpose. Target Audience. Prerequisites. What Is An Event Handler? Nagios XI. Introduction to Event Handlers

Purpose. Target Audience. Prerequisites. What Is An Event Handler? Nagios XI. Introduction to Event Handlers Purpose This document describes how to use event handlers in to take predefined actions when the hosts or services you are monitoring change state. Event handlers are used to automate processes taken when

More information

IT STARTED WITH A KICKSTARTER CAMPAIGN

IT STARTED WITH A KICKSTARTER CAMPAIGN IT STARTED WITH A KICKSTARTER CAMPAIGN http://www.kickstarter.com/projects/224590870/the-guide-to-glorantha Wild success, raised much more than expected! Attracted a lot of traffic to the website Shared

More information

Integrate Apache Web Server

Integrate Apache Web Server Publication Date: January 13, 2017 Abstract This guide helps you in configuring Apache Web Server and EventTracker to receive Apache Web server events. The detailed procedures required for monitoring Apache

More information

CounterACT Macintosh/Linux Property Scanner Plugin

CounterACT Macintosh/Linux Property Scanner Plugin CounterACT Macintosh/Linux Property Scanner Plugin Version 7.0.1 and Above Table of Contents About the Macintosh/Linux Property Scanner Plugin... 4 Requirements... 4 Supported Operating Systems... 4 Accessing

More information

McAfee Endpoint Security Threat Prevention Installation Guide - Linux

McAfee Endpoint Security Threat Prevention Installation Guide - Linux McAfee Endpoint Security 10.5.1 - Threat Prevention Installation Guide - Linux COPYRIGHT Copyright 2018 McAfee, LLC TRADEMARK ATTRIBUTIONS McAfee and the McAfee logo, McAfee Active Protection, epolicy

More information

Red Hat Development Suite 2.1

Red Hat Development Suite 2.1 Red Hat Development Suite 2.1 Installation Guide Installing Red Hat Development Suite Last Updated: 2017-12-06 Red Hat Development Suite 2.1 Installation Guide Installing Red Hat Development Suite Petra

More information

Part 1 : Getting Familiar with Linux. Hours. Part II : Administering Red Hat Enterprise Linux

Part 1 : Getting Familiar with Linux. Hours. Part II : Administering Red Hat Enterprise Linux Part 1 : Getting Familiar with Linux Chapter 1 : Getting started with Red Hat Enterprise Linux Chapter 2 Finding Your Way on the Command Line Hours Part II : Administering Red Hat Enterprise Linux Linux,

More information