Configuring Multiple Instances of Railo on Linux

Size: px
Start display at page:

Download "Configuring Multiple Instances of Railo on Linux"

Transcription

1 Configuring Multiple Instances of Railo on Linux The purpose of this guide is to explain how to set up multiple instances of Railo on a single instance of Linux. The instances can then be used for redundancy, development environments, etc. This guide was written specifically for CentOS 6, but setting up multiple instances on other versions of Linux should be quite similar. Feel free to adapt the commands and methods described here as necessary in order to accomplish the same processes for your specific environment. We will be using the Railo Linux 64-bit installers, as they are the most recent at the time this document was created. System Shortlist: CentOS 6 Linux 64-bit Apache 2.2 Railo (railo pl0-linux-x64-installer.run) Logged in as root Preplanning It will be necessary to do a small amount of pre-planning in order to organize our multiple instances of Railo using file names, directory names, and port numbers that we can easily identify as we use our system. In the following scenario, I will be naming my instances simply using numbers (railo instance 01, and so on). Using this naming convention makes it easy to identify which shared resource belongs to which instance. For example, the home folder of /opt/railo01/ is easily identified as the home folder for Railo instance 01. The control script is likewise easily identified as /etc/init.d/railo01_ctl. Using a numbering method is also useful in identifying ports: Tomcat HTTP default port: 8888 Tomcat AJP default port: 8009 Tomcat SHUTDOWN default port: 8005 We can rename these to match our numbering mechanism: Tomcat http custom port: 88nn Tomcat ajp custom port: 89nn Tomcat shutdown custom port: 85nn

2 In this way, we can easily identify which ports belong to which instance and what the port is connected to. You may also want to consider a naming mechanism for the home directories of each site that each instance will use. For example, sites that are run from the 01 instance, you may want to store in a directory that is named something similar to /var/www01/, however, this is less important as these files are not necessarily tied to a specific Railo instance. It would be purely for organizational purposes and would not be needed for anything functional like custom ports and railo home directories are. Installing the First Instance of Railo/Tomcat Installing the first instance of Railo is pretty strait-forward, with a few customizations: 1. Download the installer from 2. Change the permissions on the newly downloaded file to be executable by running the command: root@local# chmod 700 railo-4.1.*.run

3 3. Launch the installer, and set the installation directory to /opt/railo01/ - this will help us properly identify our separate installations later on. root@local#./railo pl0-linux-x86-installer.run 4. On the Tomcat Ports prompts, set the ports to the customized port numbers that we talked about earlier. Since this is our first install, I will use ports 8801, 8901, and 8501, to match our numbering convention: 5. You can customize the user Railo runs as also, but that is entirely up to you. In this example, since this is jut a dev machine, we'll keep things easy and run as root. 6. Do NOT select to start at boot time; we need to customize it first. 7. Do NOT install the Apache Connector at this time; we need to install it manually. Now that we have the first instance up and running, we should be able to run the netstat command to see our first Railo instance running happily on it's custom ports: root@local# netstat -ltpn

4 Customizing the Railo/Tomcat Daemon The next thing we need to customize is the Railo/Tomcat Daemon by customizing the railo_ctl file a little bit. Thankfully, the bulk of the customization is done by the installer, and we just need to tweak a couple small things in the file along with the file name: 1. Update the railo_ctl service description: 1. Open the railo_ctl file using the editor of your choice. I'll use vim here, but nano is also pretty popular due to it's easy control reference: root@local# cd /opt/railo01/ root@local# vim railo_ctl 2. At the top of the file, update the Provides file name to be railo01_ctl (or whichever instance you're working on) and update the description to be more specific. Updating these will ensure the service will be reported correctly if you're using a system that displays INIT INFO values.

5 2. Rename and Copy railo_ctl 1. Next we need to rename our railo_ctl file to match our Railo instance number. You can do that with the following command: mv railo_ctl railo01_ctl 2. After we've renamed the file, let's put a copy in the init.d directory so we can have that instance of Railo start at boot time: root@local# cp railo01_ctl /etc/init.d/ 3. Create the Railo Daemon 1. Last we need to add Railo to the list of deamons that start at boot time. We do this on CentOS using the chkconfig command: root@local# chkconfig railo01_ctl on 2. We can make sure the daemon was added by having chkconfig list out the runlevels that the daemon is set to start on using the --list parameter: # chkconfig railo01_ctl list root@local# chkconfig railo01_ctl --list Test that your new service starts correctly by giving your machine a quick restart. Repeat the above installation and deamon configuration steps for each instance you create on your server. Connecting an Apache VirtualHost to a Railo Instance Now that you have multiple Railo instances to work with, you need to connect your Apache VirtualHosts a specific Railo instance. I'm going to show you how to do that specifically in mod_proxy, since it's currently the default connector method of the Railo Installer,

6 however, every connection method I'm aware of has the ability to customize which port it connects to, and that's pretty much all we'll be doing here customizing the ports that each VirtualHost connects to. Install mod_cfml Mod_cfml is a helper module, which means it doesn't do any connecting on it's own. This is nice, in a way, because it gives us some flexibility in what actual Apache connector we use. Further, it also means that we only need to install mod_cfml ONCE. Since mod_cfml does not do any actual connecting on its own, the standard, global install of mod_cfml will work just fine when it comes to multiple instances of Railo. Each Railo instance you installed comes with a mod_cfml installation script. We can use any one of them in order to install it. For this example, I'll be using the mod_cfml install script that we installed with our first Railo01 instance. IMPORTANT: Try to use a Railo instance that you will not remove from your server, as mod_cfml will be point to files within that instance. If you ever remove that Railo instance from your system that mod_cfml is pointing to, your sites will not load and you will get errors from Apache until you re-point your mod_cfml config to files from an existing Railo install. The mod_cfml install script is located in the sys folder of any Railo install: root@local# cd /opt/railo01/sys/ The install script will need to know a few things, like where the Apache config file is, etc. Just run the script without any parameters to get usage information: We'll use the CentOS defaults in our command: root@local# /opt/railo01/sys/install_mod_cfml.sh -m install -l /opt/railo01 -f /etc/httpd/conf/httpd.conf -c /usr/sbin/apachectl

7 Well, the output could have been prettier, but it looks like it worked just fine. The install script is nice because it makes sure you have mod_perl installed as well. If you don't already have mod_perl installed, it will attempt to install it for you. Let's go check out our Apache config. Our mod_cfml code should be at the very bottom of it. Looks good. Notice how the mod_cfml.pm file it points to is in the Railo01 directory. This is important. If you ever remove the Railo01 instance, you will need to update this to either point to a Railo instance that exists, or put the mod_cfml.pm file in a more permanent location. Configure the Apache VirtualHosts Now that mod_cfml is installed, we need to configure our sites to connect to a specific Railo instance. As stated earlier, all we need to do to accomplish is customize our connector method to use the specific port of whichever instance we want it to use. In the following example, I've used the 8801 port to connect my railo01-testsite to my Railo 01 instance: <VirtualHost *:80> ServerName railo01-testsite

8 DocumentRoot /var/www/railo01-testsite/ DirectoryIndex index.cfm index.html ErrorLog logs/railo01-testsite-error_log CustomLog logs/railo01-testsite-access_log common <IfModule mod_proxy.c> <Proxy *> Allow from </Proxy> ProxyPreserveHost On ProxyPassMatch ^/(.+\.cf[cm])(/.*)?$ ProxyPassMatch ^/(.+\.cfchart)(/.*)?$ ProxyPassMatch ^/(.+\.cfml)(/.*)?$ ProxyPassReverse / </IfModule> </VirtualHost> Works like a charm! Customize your mod_proxy config and ports for each site/instance you want to connect to.

9 Note About Firewall Exceptions During install, CentOS will prompt you if you want to install a firewall. Most folks say yes because they want to be secure, and this is a good thing. However, this can block you from seeing your sites. To fix this, you may need to add an exception to your firewall rules. You can do this by modifying your /etc/sysconfig/iptables (on CentOS) file and adding an exception similar to the one in the attached screen shot:

10 Once you've added the exception, restart your firewall so your new exception takes effect: /etc/init.d/iptables restart Note on SELinux SELinux or, Security Enhanced Linux is suggested to be installed during the install process. While it is possible to run Railo with SELinux enabled and running, it is time-consuming to manage and generally not required for development environments. If you have difficulty getting your sites to work (IE: getting permission denied errors in your apache logs for mod_proxy, and Service Temporarily Unavailable from Apache), it is probably due to SELinux restricting access to your files. Managing your sites with SELinux enabled is outside the scope of this document, but you can disable SELinux and see if it is SELinux that is causing your problem by running the following command as root: echo 0 >/selinux/enforce If you want to permanently disable SELinux, you can modify the following file: /etc/selinux/config with SELINUX=disabled.

SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014

SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014 SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014 Introduction The expectation is that you will either have a virtual machine to use, or that you will revert any changes made to your machine

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

Lab 3a Using the vi editor

Lab 3a Using the vi editor Lab 3a Using the vi editor Objectives: Become familiar with the vi Editor Review the three vi Modes Review keystrokes to move between vi modes Create a new file with vi Editor Invoke vi with show mode

More information

Apparo Fast Edit. Installation Guide 3.1

Apparo Fast Edit. Installation Guide 3.1 Apparo Fast Edit Installation Guide 3.1 Linux & IBM AIX / Standalone version [1] Table of content 1 Prior to Installation 4 1.1 Hardware requirements... 4 1.2 Supported operating systems... 4 1.3 Supported

More information

Se#ng up your mul.- engine environment Apache, Railo and ColdFusion

Se#ng up your mul.- engine environment Apache, Railo and ColdFusion Se#ng up your mul.- engine environment Apache, Railo and ColdFusion Presented by Gavin Pickin Slides: http://gpickin.com/cfo2014/ Website: http://gpickin.com Twitter: @gpickin Introduc)on Follow along

More information

MODEM on HP-UX. Guy Van Sanden.

MODEM on HP-UX. Guy Van Sanden. MODEM on HP-UX Guy Van Sanden gvsanden@sckcen.be MODEM on HP-UX by Guy Van Sanden This document describes how to set up MODEM on HP-UX Table of Contents 1. Introduction...1 2. Apache and Tomcat...2 2.1.

More information

1 Installation 2 "Add New Printer"... Window 3 "Device for" Window "Device URI for"... Window. 7 Specify Printer... Model

1 Installation 2 Add New Printer... Window 3 Device for Window Device URI for... Window. 7 Specify Printer... Model Contents I Table of Contents Part I Document Overview 2 Part II Linux Installation Options 3 Part III CUPS Installation 4 1 Installation... 4 2 "Add New Printer"... Window 6 3 "Device for" Window... 6

More information

CTEC1863/2017F Lab #11, Part 1 Page 1 of 11. In this lab, we will be installing a popular solution for database-driven web sites.

CTEC1863/2017F Lab #11, Part 1 Page 1 of 11. In this lab, we will be installing a popular solution for database-driven web sites. CTEC1863/2017F Lab #11, Part 1 Page 1 of 11 Lab #11: LAMP In this lab, we will be installing a popular solution for database-driven web sites. This configuration is known as LAMP, an acronym standing for

More information

Certification. The HTTP Service

Certification. The HTTP Service Certification The HTTP Service UNIT 5 The HTTP Service 1 Objectives Learn the major features of the Apache HTTP server Be able to configure important Apache parameters Learn per-directory configuration

More information

ameh Documentation Release Eric Pierce

ameh Documentation Release Eric Pierce ameh Documentation Release 0.0.1 Eric Pierce July 17, 2012 CONTENTS 1 Motivation 3 2 Configuration 5 3 Usage 7 3.1 Permissions................................................ 7 3.2 init....................................................

More information

When talking about how to launch commands and other things that is to be typed into the terminal, the following syntax is used:

When talking about how to launch commands and other things that is to be typed into the terminal, the following syntax is used: Linux Tutorial How to read the examples When talking about how to launch commands and other things that is to be typed into the terminal, the following syntax is used: $ application file.txt

More information

macos High Sierra Apache Setup: Multiple PHP Versions First part in a multi-part blog series for Mac developers

macos High Sierra Apache Setup: Multiple PHP Versions First part in a multi-part blog series for Mac developers macos 10.13 High Sierra Apache Setup: Multiple PHP Versions First part in a multi-part blog series for Mac developers Andy Miller posted on 10/22/2017 in macos + sierra + apache + homebrew + php 14 mins

More information

Tomcat Load Balancing for Progress Application Server for OpenEdge

Tomcat Load Balancing for Progress Application Server for OpenEdge Tomcat Load Balancing for Progress Application Server for OpenEdge Valery Bashkatov November, 2017 PRAGUE 2017 Good afternoon! My name is Valery Bashkatov. I am working for Progress Technologies company,

More information

This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time.

This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time. This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time. Running your own server lets you play together with your friends and family with your own set

More information

Definition Center Installation for Linux

Definition Center Installation for Linux Definition Center 10.2.0 - Installation for Linux These are instructions to install, configure, upgrade, start, stop and uninstall Definition Center 10.2.0 (DC) on a Linux system. In this installation,

More information

Tungsten Dashboard for Clustering. Eric M. Stone, COO

Tungsten Dashboard for Clustering. Eric M. Stone, COO Tungsten Dashboard for Clustering Eric M. Stone, COO In this training session 1. Tungsten Dashboard Welcome 2. Tungsten Dashboard Overview 3. Tungsten Dashboard Prerequisites 4. Tungsten Dashboard Security

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

#Uncomment the second line to enable any form of FTP write command. #write_enable=yes

#Uncomment the second line to enable any form of FTP write command. #write_enable=yes Installing and configuring Apache 2 in Linux Please note that dashes (-) are used to indicate what you should type, they should not be included in the command. Install Linux on an old desktop, dual core

More information

Purpose. Target Audience. Install SNMP On The Remote Linux Machine. Nagios XI. Monitoring Linux Using SNMP

Purpose. Target Audience. Install SNMP On The Remote Linux Machine. Nagios XI. Monitoring Linux Using SNMP Purpose This document describes how to monitor Linux machines with using SNMP. SNMP is an agentless method of monitoring network devices and servers, and is often preferable to installing dedicated agents

More information

[UNIT 1 <Continued>]: <Understanding Apache>

[UNIT 1 <Continued>]: <Understanding Apache> [UNIT 1 ]: Directives DocumentRoot This directive specifies the root directory of the server s content hierarchy, Syntax DocumentRoot dir Where dir is the directory s

More information

Installation Guide. Apparo Fast Edit. For Linux / IBM AIX. IBM Cognos Analytics. Version Single Instance

Installation Guide. Apparo Fast Edit. For Linux / IBM AIX. IBM Cognos Analytics. Version Single Instance Installation Guide Apparo Fast Edit For Linux / IBM AIX IBM Cognos Analytics Version 3.0.7.1 Single Instance [1] 1 Prior to Installation 4 1.1 Hardware requirements... 4 1.2 Supported operating systems...

More information

Installation Guide. Apparo Fast Edit. Version 3.1

Installation Guide. Apparo Fast Edit. Version 3.1 Installation Guide Apparo Fast Edit For Linux & IBM AIX / IBM Cognos BI Version 3.1 [1] 1 Prior to Installation 4 1.1 Hardware requirements... 4 1.2 Supported operating systems... 4 1.3 Supported IBM Cognos

More information

Nagios User Guide. You can use apt-get to install these packages by running the following commands:

Nagios User Guide. You can use apt-get to install these packages by running the following commands: Nagios User Guide This guide will cover the installation process of Nagios on Ubuntu Operating System and will also serve as a user guide on how to configure Nagios. If any command does not work there

More information

GNU/Linux: An Essential Guide for Students Undertaking BLOSSOM

GNU/Linux: An Essential Guide for Students Undertaking BLOSSOM Copyright: The development of this document is funded by Higher Education of Academy. Permission is granted to copy, distribute and /or modify this document under a license compliant with the Creative

More information

Load balancing configuration. Technical specification

Load balancing configuration. Technical specification Technical specification Table of contents Introduction... 3 I. Overview... 3 II. The Apache load balancer... 3 III. Limitations... 3 Prerequisites... 4 Configuration... 5 I. Portal configuration... 6 II.

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

Masternode Setup Guide

Masternode Setup Guide Masternode Setup Guide What this guide is This guide is aimed at anyone who wants to run a Reliance masternode on an Ubuntu 16.04 VPS. What this guide is not A tutorial for linux. What I mean by that,

More information

Managing Xen With Xen-Tools, Xen-Shell, And Argo

Managing Xen With Xen-Tools, Xen-Shell, And Argo By Falko Timme Published: 2006-10-21 20:35 Managing Xen With Xen-Tools, Xen-Shell, And Argo Version 1.0 Author: Falko Timme Last edited 10/21/2006 This guide describes how

More information

Apache Httpd Manual Conf Virtualhost Redirect

Apache Httpd Manual Conf Virtualhost Redirect Apache Httpd Manual Conf Virtualhost Redirect Most linux distributions setup Apache with set of Note that it used to be named httpd.conf, if you In an Apache config file you will likely have a VirtualHost

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

Post Ubuntu Install Exercises

Post Ubuntu Install Exercises Post Ubuntu Install Exercises PacNOG 3 June 18 Rarotonga, Cook Islands 1. Get used to using sudo 2. Create an ainst account 3. Learn how to install software 4. Install gcc and make 5. Learn how to control

More information

ViMP 2.0. Installation Guide. Verfasser: ViMP GmbH

ViMP 2.0. Installation Guide. Verfasser: ViMP GmbH ViMP 2.0 Installation Guide Verfasser: ViMP GmbH Table of contents About this document... 3 Prerequisites... 4 Preparing the server... 5 Apache2... 5 PHP... 5 MySQL... 5 Transcoding... 6 Configuration...

More information

Some Ubuntu Practice...

Some Ubuntu Practice... Some Ubuntu Practice... SANOG 10 August 29 New Delhi, India 1. Get used to using sudo 2. Create an inst account 3. Learn how to install software 4. Install gcc and make 5. Learn how to control services

More information

L.A.M.P. Stack Part I

L.A.M.P. Stack Part I L.A.M.P. Stack Part I By George Beatty and Matt Frantz This lab will cover the basic installation and some configuration of a LAMP stack on a Ubuntu virtual box. Students will download and install the

More information

A PAtCHy server: developed by the Apache group formed 2/95 around by a number of people who provided patch files for NCSA httpd 1.3 by Rob McCool.

A PAtCHy server: developed by the Apache group formed 2/95 around by a number of people who provided patch files for NCSA httpd 1.3 by Rob McCool. Outline q Introduction to Apache httpd web server q Basic Compilation, Installation and Configuration q Apache File system q Apache Logging & Status q Security & Performance Features q Virtual Hosting

More information

Installation Guide. Apparo Fast Edit. Multi Instance. Version 3.0

Installation Guide. Apparo Fast Edit. Multi Instance. Version 3.0 Installation Guide Apparo Fast Edit Multi Instance For Windows 2008 & 2012 / IBM Cognos BI Version 3.0 1 / 65 1 Prior to Installation 4 1.1 Installation strategy 6 1.2 Architecture 7 2 Preparation 9 2.1

More information

Metasploit. Installation Guide Release 4.4

Metasploit. Installation Guide Release 4.4 Metasploit Installation Guide Release 4.4 TABLE OF CONTENTS About this Guide Target Audience...1 Organization...1 Document Conventions...1 Support...2 Support for Metasploit Pro and Metasploit Express...2

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

Two factor authentication for Apache using mod_auth_xradius

Two factor authentication for Apache using mod_auth_xradius Two factor authentication for Apache using mod_auth_xradius sandbox-logintc.com/docs/connectors/apache_alt.html Introduction LoginTC makes it easy for administrators to add multi-factor to Apache. This

More information

Apache + PHP + MySQL. bdnog November 2017 Dhaka, Bangladesh

Apache + PHP + MySQL. bdnog November 2017 Dhaka, Bangladesh Apache + PHP + MySQL bdnog7 18-22 November 2017 Dhaka, Bangladesh Outline q Introduction to Apache httpd web server q Basic Compilation, Installation and Configuration q Apache File system q Apache Logging

More information

How To Start Mysql Use Linux Command Line Windows 7

How To Start Mysql Use Linux Command Line Windows 7 How To Start Mysql Use Linux Command Line Windows 7 How can I check the number of active MySQL connections on Linux based system? You can Open the terminal App or login to the remote server using ssh:

More information

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

Implementing load balancing for PAS for OpenEdge based on Tomcat Load Balancing

Implementing load balancing for PAS for OpenEdge based on Tomcat Load Balancing Version 2 Implementing load balancing for PAS for OpenEdge based on Tomcat Load Balancing Valeriy G. Bashkatov PROGRESS TECHNOLOGIES 2017/NOV 1 Table of Contents 2 INTRODUCTION... 2 3 WHY WE NEED LOAD

More information

Bitnami Ruby for Huawei Enterprise Cloud

Bitnami Ruby for Huawei Enterprise Cloud Bitnami Ruby for Huawei Enterprise Cloud Description Bitnami Ruby Stack provides a complete development environment for Ruby on Rails that can be deployed in one click. It includes most popular components

More information

CSN09101 Networked Services. Module Leader: Dr Gordon Russell Lecturers: G. Russell

CSN09101 Networked Services. Module Leader: Dr Gordon Russell Lecturers: G. Russell CSN09101 Networked Services Week 8: Essential Apache Module Leader: Dr Gordon Russell Lecturers: G. Russell This lecture Configuring Apache Mod_rewrite Discussions Configuring Apache Apache Very well known

More information

MAPLE 2017 STEP BY STEP INSTALLATION INSTRUCTIONS

MAPLE 2017 STEP BY STEP INSTALLATION INSTRUCTIONS MAPLE 2017 STEP BY STEP INSTALLATION INSTRUCTIONS STANDALONE INSTALLATION WINDOWS MACINTOSH LINUX NETWORK INSTALLATION WINDOWS MACINTOSH LINUX REDUNDANT SERVER SETUP TROUBLESHOOTING STANDALONE INSTALLATION

More information

ModSecurity2 Installation, and Configuration

ModSecurity2 Installation, and Configuration ModSecurity2 Installation, and Configuration Hi, I actually searched a lot of times through Mr. Google looking for a ModSecurity2 HOWTO, but unfortunately I didn't find any. So I decided to write this

More information

Servers for Hackers. Server Administration for Programmers. Chris Fidao. This book is for sale at

Servers for Hackers. Server Administration for Programmers. Chris Fidao. This book is for sale at Servers for Hackers Server Administration for Programmers Chris Fidao This book is for sale at http://leanpub.com/serversforhackers This version was published on 2018-06-19 This is a Leanpub book. Leanpub

More information

Digital Free Library. Created by Kirby Griese. Last updated on :35:15 PM UTC

Digital Free Library. Created by Kirby Griese. Last updated on :35:15 PM UTC Digital Free Library Created by Kirby Griese Last updated on 2018-01-04 04:35:15 PM UTC Guide Contents Guide Contents Overview Parts Needed Preparation Prepare Micro SD Card Install Apache Configure Access

More information

[ Due: N.A ] [ Points: PRICELESS ] [ Date: 2/9/2016] [ Goings, Jesse ] Computer Network Specialist Center For Arts and Technology College Kelowna BC

[ Due: N.A ] [ Points: PRICELESS ] [ Date: 2/9/2016] [ Goings, Jesse ] Computer Network Specialist Center For Arts and Technology College Kelowna BC [UNIT 1]: This course will be implemented strictly with Linux operating systems Upcoming Topics: MySQL PHP Apache Books required for classes LPICK Foundations of CentOS Apache Apache

More information

Protection! User Guide. A d m i n i s t r a t o r G u i d e. v L i c e n s i n g S e r v e r. Protect your investments with Protection!

Protection! User Guide. A d m i n i s t r a t o r G u i d e. v L i c e n s i n g S e r v e r. Protect your investments with Protection! jproductivity LLC Protect your investments with Protection! User Guide Protection! L i c e n s i n g S e r v e r v 4. 9 A d m i n i s t r a t o r G u i d e tm http://www.jproductivity.com Notice of Copyright

More information

Getting Started with PetaLinux SDK

Getting Started with PetaLinux SDK Getting Started with PetaLinux SDK November 26, 2009 Table of Contents Table of Contents...2 About This Guide...3 Related PetaLinux Documents...3 Getting Started...3 Prerequisites...3 Installation...4

More information

WA2572 Introduction to Responsive Web Development for Mac. Classroom Setup Guide. Web Age Solutions Inc.

WA2572 Introduction to Responsive Web Development for Mac. Classroom Setup Guide. Web Age Solutions Inc. WA2572 Introduction to Responsive Web Development for Mac Classroom Setup Guide Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software Requirements...3

More information

Ubuntu Practice and Configuration Post Installation Exercises interlab at AIT Bangkok, Thailand

Ubuntu Practice and Configuration Post Installation Exercises interlab at AIT Bangkok, Thailand Ubuntu Practice and Configuration Post Installation Exercises interlab at AIT Bangkok, Thailand 1. Get used to using sudo 2. Create an inst account 3. Learn how to install software 4. Update /etc/apt/sources.list

More information

Precursor Steps & Storage Node

Precursor Steps & Storage Node Precursor Steps & Storage Node In a basic HPC cluster, the head node is the orchestration unit and possibly the login portal for your end users. It s one of the most essential pieces to get working appropriately.

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

EX200 Q&A. DEMO Version

EX200 Q&A. DEMO Version Red Hat Certified System Administrator (RHCSA) Exam Q&A DEMO Version Copyright (c) 2015 Chinatag LLC. All rights reserved. Important Note Please Read Carefully For demonstration purpose only, this free

More information

Communication protocols and services

Communication protocols and services This chapter describes various protocols and that may be enabled on Modberry. SSH Connection SSH service is started up on boot and already preinstalled and configured. You may access your device through

More information

SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU BY RAMI

SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU BY RAMI SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU 14.04 BY RAMI SETTING UP 3 WORDPRESS SITES ON APACHE SERVER AND UBUNTU 14.04 THE SET UP This may be a little rough in some places because not all the terms

More information

Linux Systems Administration Getting Started with Linux

Linux Systems Administration Getting Started with Linux Linux Systems Administration Getting Started with Linux Network Startup Resource Center www.nsrc.org These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International

More information

This material is based on work supported by the National Science Foundation under Grant No

This material is based on work supported by the National Science Foundation under Grant No Source: http://en.wikipedia.org/wiki/file:firewall.png This material is based on work supported by the National Science Foundation under Grant No. 0802551 Any opinions, findings, and conclusions or recommendations

More information

Overview LEARN. History of Linux Linux Architecture Linux File System Linux Access Linux Commands File Permission Editors Conclusion and Questions

Overview LEARN. History of Linux Linux Architecture Linux File System Linux Access Linux Commands File Permission Editors Conclusion and Questions Lanka Education and Research Network Linux Architecture, Linux File System, Linux Basic Commands 28 th November 2016 Dilum Samarasinhe () Overview History of Linux Linux Architecture Linux File System

More information

Buzztouch Server 2.0 with Amazon EC2

Buzztouch Server 2.0 with Amazon EC2 Buzztouch Server 2.0 with Amazon EC2 This is for those that want a step by step instructions on how to prepare an Amazon's EC2 instance for the Buzztouch server. This document only covers the amazon EC2

More information

Physics REU Unix Tutorial

Physics REU Unix Tutorial Physics REU Unix Tutorial What is unix? Unix is an operating system. In simple terms, its the set of programs that makes a computer work. It can be broken down into three parts. (1) kernel: The component

More information

Apache MySQL PHP PHPAdmin Install

Apache MySQL PHP PHPAdmin Install Apache MySQL PHP PHPAdmin Install Installing Apache 2 To only install the apache2 webserver, use any method to install apache2 It requires a restart for it to work sudo /etc/init.d/apache2 restart Checking

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

Open a browser and download the Apache Tomcat 7 and Oracle JDBC 6 JAR from these locations. The Oracle site may require that you register as a user.

Open a browser and download the Apache Tomcat 7 and Oracle JDBC 6 JAR from these locations. The Oracle site may require that you register as a user. Installing Tomcat 7 on CentOS 7 David J. Walling, March 8 th, 2017 Email: david@davidjwalling.com This how to describes a process to download and install Apache Tomcat 7 on a CentOS 7 virtual machine using

More information

Installation Guide. Apparo Fast Edit. Version 3.1

Installation Guide. Apparo Fast Edit. Version 3.1 Installation Guide Apparo Fast Edit For Windows Server 2008-2016 / IBM Cognos BI Version 3.1 [1] 1 Prior to Installation 4 1.1 Hardware requirements... 4 1.2 Supported operating systems... 4 1.3 Supported

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

Linux Quick Installation Guide

Linux Quick Installation Guide 2009 Aradial This document contains proprietary and confidential information of Aradial and shall not be reproduced or transferred to other documents, disclosed to others, or used for any purpose other

More information

Installing LAMP on Ubuntu and (Lucid Lynx, Maverick Meerkat)

Installing LAMP on Ubuntu and (Lucid Lynx, Maverick Meerkat) Installing LAMP on Ubuntu 10.04 and 10.10 (Lucid Lynx, Maverick Meerkat) April 29, 2010 by Linerd If you're developing websites, it's nice to be able to test your code in the privacy of your own computer

More information

IDOL Site Admin. Software Version Installation Guide

IDOL Site Admin. Software Version Installation Guide IDOL Site Admin Software Version 12.0 Installation Guide Document Release Date: June 2018 Software Release Date: June 2018 Legal notices Copyright notice Copyright 2015-2018 Micro Focus or one of its affiliates.

More information

GMU Specifications And Installation Procedures Page 1 04/04/08. JBM Gateway Management Utility Server Specifications And Installation Procedures

GMU Specifications And Installation Procedures Page 1 04/04/08. JBM Gateway Management Utility Server Specifications And Installation Procedures And Installation Procedures Page 1 04/04/08 JBM Gateway Management Utility Server Specifications And Installation Procedures And Installation Procedures Page 2 04/04/08 GMU Specifications... 3 Recommended

More information

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1 More on file systems, Booting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 bind mounts quotas Booting process and SysVinit Installation Disk rescue mode 2 A bind mount is used to mount

More information

Installing FreePBX 14 on CentOS 7

Installing FreePBX 14 on CentOS 7 Installing FreePBX 14 on CentOS 7 READ FIRST Manual installations of FreePBX is considered an EXPERTS ONLY exercise. This method of installation is enough to get CORE functionality of FreePBX. Non-commercial

More information

PHEWR Installation Guide (version 3)

PHEWR Installation Guide (version 3) PHEWR Installation Guide (version 3) Introduction Included in this Zip File: Database - sql scripts to install database objects Admin - directory structure containing the files necessary to run the PHEWR

More information

Setting Up PHPlist (Open-Source Newsletter Manager)

Setting Up PHPlist (Open-Source Newsletter Manager) By Oliver Meyer Published: 2008-05-25 18:48 Setting Up PHPlist (Open-Source Newsletter Manager) Version 1.0 Author: Oliver Meyer Last edited 04/23/2008 This document

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

Apache Manually Install Ubuntu Alongside Windows 7 Step By Step

Apache Manually Install Ubuntu Alongside Windows 7 Step By Step Apache Manually Install Ubuntu 12.10 Alongside Windows 7 Step By Step How do I install Ubuntu alongside Windows 8.1? Apache Tomcat If I install Ubuntu 12.04 on an SSD, are there any steps I should take

More information

KillTest 䊾 䞣 催 ࢭ ད ᅌ㖦䊛 ᅌ㖦䊛 NZZV ]]] QORRZKYZ TKZ ϔᑈܡ䊏 ᮄ ࢭ

KillTest 䊾 䞣 催 ࢭ ད ᅌ㖦䊛 ᅌ㖦䊛 NZZV ]]] QORRZKYZ TKZ ϔᑈܡ䊏 ᮄ ࢭ KillTest Exam : 117-202 Title : LPI Level 2 Exam 202 Version : DEMO 1 / 6 1.Given this excerpt from an Apache configuration file, which of the numbered lines has INCORRECT syntax? 1:

More information

Bitnami Re:dash for Huawei Enterprise Cloud

Bitnami Re:dash for Huawei Enterprise Cloud Bitnami Re:dash for Huawei Enterprise Cloud Description Re:dash is an open source data visualization and collaboration tool. It was designed to allow fast and easy access to billions of records in all

More information

INSTALLATION GUIDE.

INSTALLATION GUIDE. INSTALLATION GUIDE http://www.precurio.com Copyright 2008 2010 Klein Devort Ltd. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means electronic or

More information

DAY 2! Logs, Aliases, Redirects, Rewrites, and More! Oh My! Thursday, November 8, 12

DAY 2! Logs, Aliases, Redirects, Rewrites, and More! Oh My! Thursday, November 8, 12 DAY 2! Logs, Aliases, Redirects, Rewrites, and More! Oh My! VIRTUAL HOSTING OVERVIEW Virtual Hosting is an extremely popular feature of the Apache webserver. Virtual Hosting allows Apache to serve up more

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

NeXpose Software Installation Guide

NeXpose Software Installation Guide NeXpose Software Installation Guide Document version 2.3 Copyright 2010 Rapid7 LLC. Boston, Massachusetts, USA. All rights reserved. Rapid7 and NeXpose are trademarks of Rapid7, LLC. Other names appearing

More information

Services, logging, accounting Todd Kelley CST8177 Todd Kelley 1

Services, logging, accounting Todd Kelley CST8177 Todd Kelley 1 Services, logging, accounting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 services syslog logger command line utility psacct lastcomm ac, last, lastlog 2 chkconfig vs service (review)

More information

Raspberry Pi as an Ad Blocking Access Point

Raspberry Pi as an Ad Blocking Access Point Raspberry Pi as an Ad Blocking Access Point Created by Justin Cooper Last updated on 2017-12-05 07:26:38 PM UTC Guide Contents Guide Contents Overview Preparation Install Software Improving Performance

More information

: the User (owner) for this file (your cruzid, when you do it) Position: directory flag. read Group.

: the User (owner) for this file (your cruzid, when you do it) Position: directory flag. read Group. CMPS 12L Introduction to Programming Lab Assignment 2 We have three goals in this assignment: to learn about file permissions in Unix, to get a basic introduction to the Andrew File System and it s directory

More information

EX200 EX200. Red Hat Certified System Administrator RHCSA

EX200 EX200. Red Hat Certified System Administrator RHCSA EX200 Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 14.0 http://www.gratisexam.com/ EX200 Red Hat Certified System Administrator RHCSA EX200 QUESTION 1 Configure your Host Name, IP

More information

شرکت توسعه ارتباطات پردیس پارس. owncloud. The last file sharing platform you'll ever need

شرکت توسعه ارتباطات پردیس پارس. owncloud. The last file sharing platform you'll ever need شرکت توسعه ارتباطات پردیس پارس owncloud The last file sharing platform you'll ever need. Explore the Features: Click Sync and Share Your Data, with Ease A Safe Home for All Your Data Your Data is Where

More information

Genesys Administrator Extension Deployment Guide. Prerequisites for Genesys Administrator Extension Modules

Genesys Administrator Extension Deployment Guide. Prerequisites for Genesys Administrator Extension Modules Genesys Administrator Extension Deployment Guide Prerequisites for Genesys Administrator Extension Modules 7/1/2018 Prerequisites for Genesys Administrator Extension Modules Contents 1 Prerequisites for

More information

Shell Script Not Running Via Cron Runs Fine Manually

Shell Script Not Running Via Cron Runs Fine Manually Shell Script Not Running Via Cron Runs Fine Manually to run every 15 minutes. I can execute the script manually but Crontab will not launch it successfully. shell script not running via crontab, runs fine

More information

Deltek Maconomy. Installation Guide For Standard and PSO Installations

Deltek Maconomy. Installation Guide For Standard and PSO Installations Deltek Maconomy Installation Guide For Standard and PSO Installations April 9, 2018 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

APACHE INSTALLATION & BASIC CONFIGURATION. Thursday, November 8, 12

APACHE INSTALLATION & BASIC CONFIGURATION. Thursday, November 8, 12 APACHE INSTALLATION & BASIC CONFIGURATION OVERVIEW The Apache Webserver ( commonly just called Apache ) is an extremely popular open source web server. Most commonly run on Unix platforms, but also available

More information

DxR clinician INSTRUCTOR MANUAL STUDENT USER MANUAL TECHNICAL APPENDIX

DxR clinician INSTRUCTOR MANUAL STUDENT USER MANUAL TECHNICAL APPENDIX DxR clinician INSTRUCTOR MANUAL STUDENT USER MANUAL TECHNICAL APPENDIX Contents Browser Requirements...3 Screen Size and Monitor Resolution...3 Sound...3 Uploading Your Media Files to the Server...3 Acceptable

More information

Install and Configure Samba - CentOS 7

Install and Configure Samba - CentOS 7 CentOS 7 Samba Guide Page 1 of 11 Install and Configure Samba - CentOS 7 What is Samba and why should I use it? Samba is a service that allows Linux machines to access and share files, folders and printers

More information

Unix/Linux Basics. Cpt S 223, Fall 2007 Copyright: Washington State University

Unix/Linux Basics. Cpt S 223, Fall 2007 Copyright: Washington State University Unix/Linux Basics 1 Some basics to remember Everything is case sensitive Eg., you can have two different files of the same name but different case in the same folder Console-driven (same as terminal )

More information

Getting Started With Cpsc (Advanced) Hosted by Jarrett Spiker

Getting Started With Cpsc (Advanced) Hosted by Jarrett Spiker Getting Started With Cpsc (Advanced) Hosted by Jarrett Spiker Advanced? - Assuming that everyone has done at least a year of CPSC already, or has a strong base knowledge. - If not, there is a Beginners

More information

Exam Questions Demo LPI. Exam Questions Linux Networking Administration.

Exam Questions Demo   LPI. Exam Questions Linux Networking Administration. LPI Exam Questions 117-202 Linux Networking Administration Version:Demo 1.Given this excerpt from an Apache configuration file, which of the numbered lines has INCORRECT syntax? 1: 2:

More information

1 Installation (briefly)

1 Installation (briefly) Jumpstart Linux Bo Waggoner Updated: 2014-09-15 Abstract A basic, rapid tutorial on Linux and its command line for the absolute beginner. Prerequisites: a computer on which to install, a DVD and/or USB

More information