PassBy[ME] - Bugzilla integration on

Size: px
Start display at page:

Download "PassBy[ME] - Bugzilla integration on"

Transcription

1 PassBy[ME] - Bugzilla integration on CentOS 6.5 operating system Document id: PBM_06 Version: 1.2 Author: Microsec Ltd. Date: February 2,

2 Table of contents 1 Introduction PassBy[ME] and Bugzilla architecture Installation of Bugzilla enviroment Operating System Network requirements PassBy[ME] account General operating system level operations Turn off syslog rate Turn off SELinux settings Enable Firewall Ports Required software components Installing Apache HTTP server Installing mod_ssl Apache module (optional) MySQL database Installing MySQL database Starting MySQL database Installing Perl enviroment Installing Bugzilla Creating directory structure Download Bugzilla Add PassByMe extension modul Installing necessary Perl modules Configure Bugzilla Configure Apache HTTP Server Configuring PassByMe second factor for Bugzilla

3 4.1 Setting authentication PFX Configure PassByMe on Bugzilla administration page Set PassBy[ME] configuration parameters Set PassBy[ME] CGI interface Turning off PassBy[ME] second factor authentication Creating other users

4 1 Introduction This documentation assumes that you are familiar with the basic working model of PassBy[ME] API interface and gives a detailed step by step tutorial to integrate the PassBy[ME] second channel authentication service into a free, and widespread webapplication. This document will describe the main technical characteristics to integrate the PassyBy[ME] second factor authentication mechanism into a Bugzilla Bug- Tracking system as a Service Provider (SP). 1.1 PassBy[ME] and Bugzilla architecture API interface trough certificate based authentication HTTPS channel PUB Server Bugzilla Certificate based Bug-Tracking System authentication HTTPS channel PassByMe Service HTTPS channel SCEP Server User MQTT Broker 4

5 2 Installation of Bugzilla enviroment Do all of the following steps with root rights!! 2.1 Operating System This document describes the installation process on a physical or virtual server machine with installed CentOS operating system. Version: CentOS release 6.5 (Final) x86-64 If you would like to integrate the PassBy[ME] second factor into Bugzilla, you can choose another system which is supported by Bugzilla. 2.2 Network requirements The physical or virtual server machine has to be connected to the internet. Ensure network availability to the PassBy[ME] Authentication API: The PassBy[ME] test service: Web based administration interface: Authentication API webservice: Management API webservice: The PassBy[ME] production service: Web based administration interface: Authentication API webservice: Management API webservice: PassBy[ME] account You'll need a PassBy[ME] account, an application key (ID) and a certificate to integrate you application into PassBy[ME]. To get this account data do the following steps: 1. Sign up for a PassBy[ME] account on the web based administration interface, and register a new organization if you haven t registered before. If you have already registered into the PassBy[ME] service, 5

6 please log in as an administrator with your previously created credential data (username/password and your PassBy[ME] ready mobile device). 2. Create a new Application under this organization by selecting "Register new Application" under the "Application" navigation menu. This will generate an application key (UUID). 3. Download and save the certificate by clicking on "Download PFX" under the "Application" navigation menu. Save the pfx s password by clicking the Show PFX password button. Client certificate authentication is enforced by the server. In order to have PassBy[ME] second factor you are required to use your authentication certificate during all PassBy[ME] second factor requests. 2.4 General operating system level operations Turn off syslog rate Create: /etc/rsyslog.d/noratelimit.conf $SystemLogRateLimitInterval 0 Reloading syslog configuration /etc/init.d/rsyslog reload Turn off SELinux settings Modifying /etc/sysconfig/selinux SELINUX=disabled Next step: reboot the system Enable Firewall Ports Installing system_config_firewall program yum install system_config_firewall-tui system-config-firewall-tui Trusted Services: www (HTTP) (80) www (HTTPS) (443) 6

7 2.5 Required software components The following software components should be installed on CentOS 6.5 operating system to run the Bugzilla application: Apache webserver (version ) MySQL Database (version: 5.1.x MySQL Community Server (GPL)) Perl Bugzilla Bug-Tracking System (version: 4.4.6) Perl modules for Bugzilla OpenSSL (built in) curl (built in) The next chapters will describe the step by step instructions for installing the necessary software components. 2.6 Installing Apache HTTP server Version: yum install apr el6_2.x86_64 apr-util el6_0.1.x86_64 httpdtools el6.centos.x86_64 apr-util-ldap el6_0.1.x86_64 httpd el6.centos.x86_64 Installing c_rehash yum install openssl-perl Installing mod_ssl Apache module (optional) yum install mod_ssl Setting mod_ssl parameters The content of /etc/httpd/conf.d/ssl.conf Listen 443 LoadModule ssl_module modules/mod_ssl.so SSLPassPhraseDialog builtin SSLSessionCache shmcb:/var/cache/mod_ssl/scache(512000) SSLSessionCacheTimeout 300 SSLMutex default SSLRandomSeed startup file:/dev/urandom 512 7

8 SSLRandomSeed connect file:/dev/urandom 512 SSLCryptoDevice builtin SSLHonorCipherOrder On SSLCipherSuite RC4:HIGH:MEDIUM:+TLSv1:!EDH:!aNULL:!eNULL:!LOW:!EXPORT:!ADH:!SSL v2 SSLProtocol all -SSLv2 SSLv3 2.7 MySQL database Version: 5.1.x MySQL Community Server (GPL) Create /etc/my.cnf (if not exist) [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock user=mysql # Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0 [mysqld_safe] log-error=/var/log/mysqld.log pid-file=/var/run/mysqld/mysqld.pid Installing MySQL database MySQL database enviroment installation process yum install mysql-server mysql yum install mysql-libs yum install unixodbc yum install mysql-connector-odbc yum install mysql-devel Starting MySQL database /etc/init.d/mysqld start 8

9 2.8 Installing Perl environment Create symlink to Perl interpreter cd /usr/local/bin ln -s /usr/bin/perl. Installing enviroment yum install perl-cpan yum install perl-xml-parser yum install perl-yaml yum install perl-xml-twig yum install mod_perl yum install perl-cgi-session yum install gcc autoconf automake bison flex libtool glibc-devel zlib-devel kernel-headers expat expat-devel 9

10 3 Installing Bugzilla The Bugzilla Bug-Tracking application is a free Software which can be downloaded from the following website: See the Bugzilla Guide Release: The PassBy[ME] capable version is: ( ) Do all of the following steps with root rights!! 3.1 Creating directory structure mkdir -p /msc/srv/www/bugzillademo/htdocs mkdir p /msc/srv/www/bugzillademo/pfx 3.2 Download Bugzilla cd /msc/srv/www/bugzillademo/htdocs wget tar xfz bugzilla tar.gz ln -s bugzilla bugzilla 3.3 Add PassBy[ME] extension module mkdir -p /msc/srv/www/bugzillademo/src cd /msc/srv/www/bugzillademo/src Download PassByMe2FA Perl client package: tar.gz Download PassByMe2FA Bugzilla extension package: 10

11 tar xzf passbyme2fa-client-perl-1.00.tar.gz tar xzf passbyme2fa-extension-1.00.tar.gz <<Now you have this content tree in the directory >> /msc/srv/www/bugzillademo/src/ bugzilla-passbyme2fa-extension/ bugzilla factor2-auth-hooks.patch PassByMe2FA/ Config.pm Extension.pm lib/ template/ web/. passbyme2fa-client-perl-1.00/ PassByMe2FA/ passbyme2fa.pl Copy PassByME2FA Perl client library to Bugzilla lib directory cp -r passbyme2fa-client-perl-1.00/passbyme2fa /msc/srv/www/bugzillademo/htdocs/bugzilla/lib Copy PassByMe2FA Bugzilla extension to Bugzilla extension directory cp -r bugzilla-passbyme2fa-extension/passbyme2fa /msc/srv/www/bugzillademo/htdocs/bugzilla/extensions Patch Bugzilla to enable PassByMe 2FA integration cd /msc/srv/www/bugzillademo/htdocs/bugzilla patch -p1 <../../src/bugzilla-passbyme2fa-extension/bugzilla factor2- auth-hooks.patch You will see this line on standard output: patching file Bugzilla/Auth.pm 11

12 3.4 Installing necessary Perl modules cd /msc/srv/www/bugzillademo/htdocs/bugzilla./checksetup.pl --check-modules ( In case of Can't locate version.pm run the following commands: perl -MCPAN -e shell cpan> install version ) Install the missing perl modules. cd /msc/srv/www/bugzillademo/htdocs/bugzilla /usr/bin/perl install-module.pl all Run again the./checksetup.pl (without --check-modules) cd /msc/srv/www/bugzillademo/htdocs/bugzilla./checksetup.pl 3.5 Configure Bugzilla Create database [root]#mysql mysql> create database passbyme_bugzilla character set utf8; mysql> grant all privileges on passbyme_bugzilla.* to 'pbm_bugzilla'@'localhost' identified by 'tmbyxk85#'; Edit Bugzilla config file cd /msc/srv/www/bugzillademo/htdocs/bugzilla vim localconfig Set the following parameters in localconfig $create_htaccess = 1; $webservergroup = 'apache'; $use_suexec = 0; $db_driver = 'mysql'; 12

13 $db_host = 'localhost'; $db_name = 'passbyme_bugzilla'; $db_user = 'pbm_bugzilla'; $db_pass = 'tmbyxk85#'; $db_port = 0; $db_sock = ''; $db_check = 1; $index_html = 0; $cvsbin = '/usr/bin/cvs'; $interdiffbin = ''; $diffpath = '/usr/bin'; Run again the./checksetup.pl (without --check-modules) cd /msc/srv/www/bugzillademo/htdocs/bugzilla./checksetup.pl If you the script can connect to the mysql database, you will be prompted to give some data (administrator , full name, password). Important: Your administrator will be your login name which have to be the same as your PassBy[ME] ID, which is registered in the PassBy[ME] system. 3.6 Configure Apache HTTP Server Edit the httpd.conf file cd /etc/httpd/conf vim httpd.conf Create VirtualHost at the and of the default httpd.conf file <VirtualHost *:80> ServerName bugzillademo.test.com ServerAlias bugzillademo2.test.com DocumentRoot /msc/srv/www/bugzillademo/htdocs ErrorLog logs/bugzillademo. test.com -error_log CustomLog logs/bugzillademo.test.com -access_log common RewriteEngine On RewriteRule ^/(bugzilla)?$ /bugzilla/ [R,L] 13

14 <Directory /msc/srv/www/bugzillademo/htdocs> AddHandler cgi-script.cgi Options +ExecCGI DirectoryIndex index.cgi index.html AllowOverride Limit FileInfo Indexes Options Allow from all </Directory> </VirtualHost> Start Apache http server /etc/init.d/httpd start Now you can access the installed Bugzilla website on the following url: 14

15 4 Configuring PassByMe second factor for Bugzilla 4.1 Setting authentication PFX See chapter PassBy[ME] account to know how you can have a PFX key file for using PassBy[ME] service. Copy the authentication pfx file to the following file path cd /msc/srv/www/bugzillademo/pfx/ cp <file>.pfx. 4.2 Configure PassBy[ME] on Bugzilla administration page Log in to Bugzilla as administrator Set PassBy[ME] configuration parameters Navigate to the Administration/Parameters/PassByMe2FA menu, and set the parameters below Name of the parameter passbyme2fa_enabled passbyme2fa_server_urlbase Description When this options is turned on, PassByMe 2nd factor authentication is enabled. The URL base of the PassByMe2FA server. For testing use the following url: passbyme2fa_application_id PassByMe2FA Application Id of this Bugzilla system. e.g.: 99d163df-efe8-4d58-8cb2-a8f3a76d5d84 passbyme2fa_auth_cert_pfx_file_path Path of the PFX file which contains the PassByMe2FA authentication certificate and key. e.g.: /msc/srv/www/bugzillademo/pfx/<file>.pfx passbyme2fa_auth_cert_pfx_password passbyme2fa_communication_timeout Password of the PFX file. Timeout (in seconds) for PassByME2FA server communication. e.g.: 10 passbyme2fa_status_refresh_interval Refresh interval (in seconds) of PassByMe2FA pending status page. e.g.: 2 15

16 passbyme2fa_authentication_message PassByMe2FA authentication message. {username} will be replaced with the username you are trying to log in with. This message will be shown during the authentication process in the PassBy[ME] application on the mobile device. e.g.: You are trying to authenticate to bugzillademo.test.com as user {username} Set PassBy[ME] CGI interface Navigate to the Administration/Parameters/User Authentication Name of the parameter user_info_class Description Mechanism(s) to be used for gathering a user's login information. More than one may be selected. If the first one returns nothing, the second is tried, and so on. Set the value of select to: CGI.PassByMe2FA Press Save Changes at the bottom of the page. Now your Bugzilla application is PassBy[ME] ready. During next log in you have to use your mobile device Turning off PassBy[ME] second factor authentication If you are the administrator, and you have lost your mobile device, you can t log in into the Bugzilla system. In this case, you can turn off the using of PassBy[ME] second factor at server side. Edit PassBy[ME] configuration file (use your file editor) /msc/srv/www/bugzillademo/bugzilla/extensions/passbyme2fa/ Config.pm Set AUTHENTICATION_DISABLED to 1 use constant AUTHENTICATION_DISABLED => 1; 16

17 Restart Apache webserver /etc/init.d/httpd restart Now you can log in without using PassBy[ME] second factor. At the Administration/Parameters/PassByMe2FA menu you will give the following alert message, if the PassByMe2FA was turned on trough the webpage before Creating other users If you create other users in the Bugzilla Bug-Tracking System, you should give for each user the same username as their PassBy[ME] ID in the PassBy[ME] system. 17

Creating X.509 Certificates With OpenSSL

Creating X.509 Certificates With OpenSSL Creating X.509 Certificates With OpenSSL Overview This procedure describes one of the ways to use OpenSSL to create an X.509 Certificate file and an associated RSA Key file to use for ssl/tls certificates.

More information

ViMP 3.0. SSL Configuration in Apache 2.2. Author: ViMP GmbH

ViMP 3.0. SSL Configuration in Apache 2.2. Author: ViMP GmbH ViMP 3.0 SSL Configuration in Apache 2.2 Author: ViMP GmbH Table of Contents Requirements...3 Create your own certificates with OpenSSL...4 Generate a self-signed certificate...4 Generate a certificate

More information

i2b2: Security Baseline

i2b2: Security Baseline i2b2: Security Baseline Contents Introduction... 3 CentOS Security Configuration... 4 SSL Configuration... 5 Database Configuration Files... 6 Revision History... 11 2 Introduction This document outlines

More information

Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2

Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2 Installing Rails 2.3 Under CentOS/RHEL 5 and Apache 2.2 Scott Taylor Tailor Made Software July 24, 2011 Version 1.2 1.0 Introduction Ruby On Rails (aka just Rails ) is a modern scripting system that allows

More information

LAMP Quickstart for Red Hat Enterprise Linux 4

LAMP Quickstart for Red Hat Enterprise Linux 4 LAMP Quickstart for Red Hat Enterprise Linux 4 Dave Jaffe Dell Enterprise Marketing December 2005 Introduction A very common way to build web applications with a database backend is called a LAMP Stack,

More information

This section describes how to use SSL Certificates with SOA Gateway running on Linux.

This section describes how to use SSL Certificates with SOA Gateway running on Linux. This section describes how to use with SOA Gateway running on Linux. Setup Introduction Step 1: Set up your own CA Step 2: SOA Gateway Server key and certificate Server Configuration Setup To enable the

More information

SecuritySpy Setting Up SecuritySpy Over SSL

SecuritySpy Setting Up SecuritySpy Over SSL SecuritySpy Setting Up SecuritySpy Over SSL Secure Sockets Layer (SSL) is a cryptographic protocol that provides secure communications on the internet. It uses two keys to encrypt data: a public key and

More information

owncloud 8 and DigitalOcean Matthew Davidson Bluegrass Linux User Group 03/09/2015

owncloud 8 and DigitalOcean Matthew Davidson Bluegrass Linux User Group 03/09/2015 owncloud 8 and DigitalOcean Matthew Davidson Bluegrass Linux User Group 03/09/2015 owncloud 8 and DigitalOcean The following slides are based off the notes that I used to build owncloud 8, on a server

More information

esync - Receiving data over HTTPS

esync - Receiving data over HTTPS esync - Receiving data over HTTPS 1 Introduction Natively, the data transfer between ewon and esync is done over an HTTP link. However when esync is hosted on Internet, security must be taken in account

More information

Server Installation/Upgrade Guide

Server Installation/Upgrade Guide Server Installation/Upgrade Guide System Version 3.8 2001-2009 Echo 360, Inc. Echo360 is a trademark of Echo360, Inc. Echo360 is a registered trademark of Echo360 Inc. in Australia. All other trademarks

More information

Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services

Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services MCN 2009: Cloud Computing Primer Workshop Charles Moad

More information

Configuring MassTransit for the Web Using Apache on Mac OS 10.2 and 10.3

Configuring MassTransit for the Web Using Apache on Mac OS 10.2 and 10.3 Using Version: 1.1 Date: 2/18/2004 Version History Version Date Author Changes 1.0 2/2/2004 Janie Longfellow Created from MassTransit Web Config doc. 1.1 2/18/2004 Janie Longfellow Added copyright information.

More information

TestCaseDB Administration Guide. Version 3.1

TestCaseDB Administration Guide. Version 3.1 TestCaseDB Administration Guide Version 3.1 TestCaseDB.com 1 Table of Contents 1 Table of Contents... 2 2 Overview... 8 3 Requirements... 9 3.1 Operating System Versions... 9 3.1.1 Ubuntu... 9 3.1.2 Cent

More information

User s guide. APACHE 2.0 + SSL Linux. Using non-qualified certificates with APACHE 2.0 + SSL Linux. version 1.3 UNIZETO TECHNOLOGIES S.A.

User s guide. APACHE 2.0 + SSL Linux. Using non-qualified certificates with APACHE 2.0 + SSL Linux. version 1.3 UNIZETO TECHNOLOGIES S.A. User s guide APACHE 2.0 + SSL Linux Using non-qualified certificates with APACHE 2.0 + SSL Linux version 1.3 Table of contents 1. PREFACE... 3 2. GENERATING CERTIFICATE... 3 2.1. GENERATING REQUEST FOR

More information

HP Cloud Service Automation Deployment Architectures

HP Cloud Service Automation Deployment Architectures Technical white paper HP Cloud Service Automation Deployment Architectures Details of the content Table of contents Purpose... 2 Enterprise Deployment... 2 All-in-One CSA... 3 All-in-One CSA with remote

More information

WEB2CS INSTALLATION GUIDE

WEB2CS INSTALLATION GUIDE WEB2CS INSTALLATION GUIDE FOR XANDMAIL XandMail 32, rue de Cambrai 75019 PARIS - FRANCE Tel : +33 (0)1 40 388 700 - http://www.xandmail.com TABLE OF CONTENTS 1. INSTALLING WEB2CS 3 1.1. RETRIEVING THE

More information

Securing the OpenAdmin Tool for Informix web server with HTTPS

Securing the OpenAdmin Tool for Informix web server with HTTPS Securing the OpenAdmin Tool for Informix web server with HTTPS Introduction You can use HTTPS to protect the IBM OpenAdmin Tool (OAT) for Informix web server from eavesdropping, tampering, and message

More information

Apache and Virtual Hosts Exercises

Apache and Virtual Hosts Exercises Apache and Virtual Hosts Exercises Install Apache version 2 Apache is already installed on your machines, but if it was not you would simply do: # apt-get install apache2 As the root user. Once Apache

More information

How to setup HTTP & HTTPS Load balancer for Mediator

How to setup HTTP & HTTPS Load balancer for Mediator How to setup HTTP & HTTPS Load balancer for Mediator Setting up the Apache HTTP Load Balancer for Mediator This guide would help you to setup mediator product to run via the Apache Load Balancer in HTTP

More information

Apache HTTP Server. Implementation Guide. (Version 5.7) Copyright 2013 Deepnet Security Limited

Apache HTTP Server. Implementation Guide. (Version 5.7) Copyright 2013 Deepnet Security Limited Implementation Guide (Version 5.7) Copyright 2013 Deepnet Security Limited Copyright 2013, Deepnet Security. All Rights Reserved. Page 1 Trademarks Deepnet Unified Authentication, MobileID, QuickID, PocketID,

More information

Smartphone Pentest Framework v0.1. User Guide

Smartphone Pentest Framework v0.1. User Guide Smartphone Pentest Framework v0.1 User Guide 1 Introduction: The Smartphone Pentest Framework (SPF) is an open source tool designed to allow users to assess the security posture of the smartphones deployed

More information

Host your websites. The process to host a single website is different from having multiple sites.

Host your websites. The process to host a single website is different from having multiple sites. The following guide will help you to setup the hosts, in case you want to run multiple websites on your VPS. This is similar to setting up a shared server that hosts multiple websites, using a single shared

More information

1 of 24 7/26/2011 2:48 PM

1 of 24 7/26/2011 2:48 PM 1 of 24 7/26/2011 2:48 PM Home Community Articles Product Documentation Learning Center Community Articles Advanced Search Home > Deployments > Scenario 3: Setting up SiteMinder Single Sign-On (SSO) with

More information

CO 246 - Web Server Administration and Security. By: Szymon Machajewski

CO 246 - Web Server Administration and Security. By: Szymon Machajewski CO 246 - Web Server Administration and Security By: Szymon Machajewski CO 246 - Web Server Administration and Security By: Szymon Machajewski Online: < http://cnx.org/content/col11452/1.1/ > C O N N E

More information

MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server

MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server November 6, 2008 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296 E-mail:

More information

How to: Install an SSL certificate

How to: Install an SSL certificate How to: Install an SSL certificate Introduction This document will talk you through the process of installing an SSL certificate on your server. Once you have approved the request for your certificate

More information

Deploying SecureCloud SaaS in a vcloud Environment

Deploying SecureCloud SaaS in a vcloud Environment Deploying SecureCloud SaaS in a vcloud Environment Securing Your Journey to the Cloud Trend Micro SecureCloud A Trend Micro & VMware White Paper August 2011 I. EXECUTIVE SUMMARY This is the second paper

More information

Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4

Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4 Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4 by SK Cacti is an open source, front-end for the data logging tool called RRDtool. It is a web based network monitoring

More information

GlobalSign Solutions

GlobalSign Solutions GlobalSign Solutions SNI + CloudSSL Implementation Guide Hosting Multiple SSL on a Single IP Address Contents Introduction... 3 Why do hosting companies want SNI/CloudSSL?... 3 Configuration instructions...

More information

GroundWork Monitor Open Source 5.1.0 Installation Guide

GroundWork Monitor Open Source 5.1.0 Installation Guide GroundWork Monitor Open Source 5.1 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version

More information

CentOS. Apache. 1 de 8. Pricing Features Customers Help & Community. Sign Up Login Help & Community. Articles & Tutorials. Questions. Chat.

CentOS. Apache. 1 de 8. Pricing Features Customers Help & Community. Sign Up Login Help & Community. Articles & Tutorials. Questions. Chat. 1 de 8 Pricing Features Customers Help & Community Sign Up Login Help & Community Articles & Tutorials Questions Chat Blog Try this tutorial on an SSD cloud server. Includes 512MB RAM, 20GB SSD Disk, and

More information

Implementing HTTPS in CONTENTdm 6 September 5, 2012

Implementing HTTPS in CONTENTdm 6 September 5, 2012 Implementing HTTPS in CONTENTdm 6 This is an overview for CONTENTdm server administrators who want to configure their CONTENTdm Server and Website to make use of HTTPS. While the CONTENTdm Server has supported

More information

Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors)

Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors) Rancid Server Build and Operation Overview (v0.3) (This is being from memory so expect some errors) Installation The installation will cover the setup and configuration of a RANCID server using CentOS

More information

Enterprise SSL Support

Enterprise SSL Support 01 Enterprise SSL Support This document describes the setup of SSL (Secure Sockets Layer) over HTTP for Enterprise clients, servers and integrations. 1. Overview Since the release of Enterprise version

More information

Installing Rails 2.3 Under Windows XP and Apache 2.2

Installing Rails 2.3 Under Windows XP and Apache 2.2 Installing Rails 2.3 Under Windows XP and Apache 2.2 Scott Taylor Tailor Made Software August 9, 2011 Version 1.0 1.0 Introduction Ruby On Rails (aka just Rails ) is a modern scripting system that allows

More information

Integrating Apache Web Server with Tomcat Application Server

Integrating Apache Web Server with Tomcat Application Server Integrating Apache Web Server with Tomcat Application Server The following document describes how to build an Apache/Tomcat server from all source code. The end goal of this document is to configure the

More information

Setup a Virtual Host/Website

Setup a Virtual Host/Website Setup a Virtual Host/Website Contents Goals... 2 Setup a Website in CentOS... 2 Create the Document Root... 2 Sample Index File... 2 Configuration... 3 How to Check If Your Website is Working... 5 Setup

More information

Step-by-Step guide to setup an IBM WebSphere Portal and IBM Web Content Manager V8.5 Cluster From Zero to Hero (Part 2.)

Step-by-Step guide to setup an IBM WebSphere Portal and IBM Web Content Manager V8.5 Cluster From Zero to Hero (Part 2.) Step-by-Step guide to setup an IBM WebSphere Portal and IBM Web Content Manager V8.5 Cluster From Zero to Hero (Part 2.) Summary STEP-BY-STEP GUIDE TO SETUP AN IBM WEBSPHERE PORTAL AND IBM WEB CONTENT

More information

Install Apache on windows 8 Create your own server

Install Apache on windows 8 Create your own server Source: http://www.techscio.com/install-apache-on-windows-8/ Install Apache on windows 8 Create your own server Step 1: Downloading Apache Go to Apache download page and download the latest stable version

More information

MySQL quick start guide

MySQL quick start guide R E S E L L E R S U P P O R T www.fasthosts.co.uk MySQL quick start guide This guide will help you: Add a MySQL database to your reseller account. Find your database. Add additional users. Use the MySQL

More information

StoreGrid Backup Server With MySQL As Backend Database:

StoreGrid Backup Server With MySQL As Backend Database: StoreGrid Backup Server With MySQL As Backend Database: Installing and Configuring MySQL on Linux Overview StoreGrid now supports MySQL as a backend database to store all the clients' backup metadata information.

More information

How To Install Amyshelf On Windows 2000 Or Later

How To Install Amyshelf On Windows 2000 Or Later Contents I Table of Contents Part I Document Overview 2 Part II Document Details 3 Part III Setup 4 1 Download & Installation... 4 2 Configure MySQL... Server 6 Windows XP... Firewall Settings 13 3 Additional

More information

OPENPROJECT INSTALL ON CENTOS 7 RUNNING IN VMWARE PLAYER

OPENPROJECT INSTALL ON CENTOS 7 RUNNING IN VMWARE PLAYER OPENPROJECT INSTALL ON CENTOS 7 RUNNING IN VMWARE PLAYER 2014 Aug Abstract An and to end step by step installation instruction set for OpenProject running on Centos 7 under VMWare player Brendan Dunn Installing

More information

MySQL Quick Start Guide

MySQL Quick Start Guide Fasthosts Customer Support MySQL Quick Start Guide This guide will help you: Add a MySQL database to your account. Find your database. Add additional users. Use the MySQL command-line tools through ssh.

More information

Red Hat JBoss Core Services Apache HTTP Server 2.4 Apache HTTP Server Installation Guide

Red Hat JBoss Core Services Apache HTTP Server 2.4 Apache HTTP Server Installation Guide Red Hat JBoss Core Services Apache HTTP Server 2.4 Apache HTTP Server Installation Guide For use with Red Hat JBoss middleware products. Red Hat Customer Content Services Red Hat JBoss Core Services Apache

More information

Administrator s Guide June 2008

Administrator s Guide June 2008 Administrator s Guide June 2008 Biscom, Inc. 321 Billerica Rd. Chelmsford, MA 01824 tel 978-250-1800 fax 978-250-4449 Copyright 2008 Biscom, Inc. All rights reserved worldwide. Reproduction or translation

More information

Apache Web Server Complete Guide Dedoimedo

Apache Web Server Complete Guide Dedoimedo Apache Web Server Complete Guide Dedoimedo www.dedoimedo.com Contents 1 Introduction 15 2 Basic Setup 16 2.1 Verify installation......................... 16 2.2 Package files............................

More information

A Beginner's Guide to Setting Up A Web Hosting System (Or, the design and implementation of a system for the worldwide distribution of pictures of

A Beginner's Guide to Setting Up A Web Hosting System (Or, the design and implementation of a system for the worldwide distribution of pictures of A Beginner's Guide to Setting Up A Web Hosting System (Or, the design and implementation of a system for the worldwide distribution of pictures of cats.) Yes, you can download the slides http://inthebox.webmin.com/files/beginners-guide.pdf

More information

HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION

HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION HOW TO SETUP AN APACHE WEB SERVER AND INTEGRATE COLDFUSION Draft version 1.0 July 15 th 2010 Software XAMPP is an open source package designed to take almost all the work out of setting up and integrating

More information

GlobalSign Enterprise Solutions Google Apps Authentication User Guide

GlobalSign Enterprise Solutions Google Apps Authentication User Guide GlobalSign Enterprise Solutions Google Apps Authentication User Guide Using EPKI for Google Apps for Business Single Sign-on and Secure Document Sharing v.1.1 1 Table of Contents Table of Contents... 2

More information

Installation Guide for AmiRNA and WMD3 Release 3.1

Installation Guide for AmiRNA and WMD3 Release 3.1 Installation Guide for AmiRNA and WMD3 Release 3.1 by Joffrey Fitz and Stephan Ossowski 1 Introduction This document describes the installation process for WMD3/AmiRNA. WMD3 (Web Micro RNA Designer version

More information

GestióIP IPAM v3.0 IP address management software Installation Guide v0.1 www.gestioip.net

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

More information

Installing and Configuring MySQL as StoreGrid Backend Database on Linux

Installing and Configuring MySQL as StoreGrid Backend Database on Linux Installing and Configuring MySQL as StoreGrid Backend Database on Linux Overview StoreGrid now supports MySQL as a backend database to store all the clients' backup metadata information. Unlike StoreGrid

More information

Creating a DUO MFA Service in AWS

Creating a DUO MFA Service in AWS Amazon AWS is a cloud based development environment with a goal to provide many options to companies wishing to leverage the power and convenience of cloud computing within their organisation. In 2013

More information

MySQL Quick Start Guide

MySQL Quick Start Guide Quick Start Guide MySQL Quick Start Guide SQL databases provide many benefits to the web designer, allowing you to dynamically update your web pages, collect and maintain customer data and allowing customers

More information

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6 201 Datavoice House, PO Box 267, Stellenbosch, 7599 16 Elektron Avenue, Technopark, Tel: +27 218886500 Stellenbosch, 7600 Fax: +27 218886502 Adept Internet (Pty) Ltd. Reg. no: 1984/01310/07 VAT No: 4620143786

More information

Installing OptiRain Open on Macintosh OS X 10.6 (Snow Leopard)

Installing OptiRain Open on Macintosh OS X 10.6 (Snow Leopard) QUICKSMART Installing OptiRain Open on Macintosh OS X 10.6 (Snow Leopard) QuickSmart Development P.O. Box 3689 Santa Clara, CA 95055 408-777-0944 www.quicksmart.com OptiRain Open provides local scheduling

More information

How to Install Multicraft on a VPS or Dedicated Server (Ubuntu 13.04 64 bit)

How to Install Multicraft on a VPS or Dedicated Server (Ubuntu 13.04 64 bit) How to Install Multicraft on a VPS or Dedicated Server (Ubuntu 13.04 64 bit) Introduction Prerequisites This tutorial will show you step-by-step on how to install Multicraft 1.8.2 on a new VPS or dedicated

More information

HP ALM. Software Version: 12.50. External Authentication Configuration Guide

HP ALM. Software Version: 12.50. External Authentication Configuration Guide HP ALM Software Version: 12.50 External Authentication Configuration Guide Document Release Date: December 2015 Software Release Date: December 2015 Legal Notices Warranty The only warranties for HP products

More information

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,

More information

Setting up an Apache Web Server for Greenstone 2 Walkthrough

Setting up an Apache Web Server for Greenstone 2 Walkthrough Setting up an Apache Web Server for Greenstone 2 Walkthrough From GreenstoneWiki Setting up an Apache web server to work with Greenstone 2: [edit] #Installing the Apache web server on Linux and MacOS (Leopard)

More information

Cybozu Garoon 3 Server Distributed System Installation Guide Edition 3.1 Cybozu, Inc.

Cybozu Garoon 3 Server Distributed System Installation Guide Edition 3.1 Cybozu, Inc. Cybozu Garoon 3 Server Distributed System Installation Guide Edition 3.1 Cybozu, Inc. Preface Preface This guide describes the features and operations of Cybozu Garoon Version 3.1.0. Who Should Use This

More information

Greenstone Documentation

Greenstone Documentation Greenstone Documentation Web library and Remote Collection Building with GLI Client Web Library. This enables any computer with an existing webserver to serve pre-built Greenstone collections. As with

More information

Graphviz Website Installation, Administration and Maintenance

Graphviz Website Installation, Administration and Maintenance Graphviz Website Installation, Administration and Maintenance 1 Overview The graphviz.org website is based on the Drupal content management system. Drupal uses a MySql database to store web pages and information

More information

System and Network Monitoring With Zabbix

System and Network Monitoring With Zabbix System and Network Monitoring With Zabbix Zabbix Features http://www.zabbix.com/features.php Zabbix Requirements http://www.zabbix.com/requirements.php @GARR - alfredo.pagano@garr.it Download Zabbix http://www.zabbix.com/download.php

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

1. Configuring Apache2 Load Balancer with failover mechanism

1. Configuring Apache2 Load Balancer with failover mechanism 1. Configuring Apache2 Load Balancer with failover mechanism node01 Messaging Part 1 Instance 1 for e.g.: 192.168.0.140 192.168.0.2 node02 Messaging Part 1 Instance 2 for e.g.: 192.168.0.90 Configuring

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Ruby on Rails (Ruby 1.9.2, Rails 3.1.1) Installation

Ruby on Rails (Ruby 1.9.2, Rails 3.1.1) Installation Ruby on Rails (Ruby 1.9.2, Rails 3.1.1) Installation Ubuntu 11.10, 11.04 desktop or server (or on Linux Mint 11, 12) (You are welcomed to share this PDF freely, with no commercial purposes) First, we will

More information

http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v2.0

http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v2.0 1 Installation and Configuration v2.0 2 Installation...3 Prerequisites...3 RPM Installation...3 Manual *nix Installation...4 Setup monitoring...5 Upgrade...6 Backup configuration files...6 Disable Monitoring

More information

Redmine Installation on Debian. v1.1

Redmine Installation on Debian. v1.1 Redmine Installation on Debian v1.1 Introduction 1. Objectives Have a fully functional Redmine installation on a dedicated server with good performance. The idea of this document came after an easy installation

More information

CloudPortal Business Manager 2.2 POC Cookbook

CloudPortal Business Manager 2.2 POC Cookbook CloudPortal Business Manager 2.2 POC Cookbook February 9, 2014 Contents 1 Overview... 3 2 Prepare CloudPlatform to Be Used with CloudPortal Business Manager... 4 2.1 Assumptions... 4 2.2 Steps to configure

More information

APACHE WEB SERVER. Andri Mirzal, PhD N28-439-03

APACHE WEB SERVER. Andri Mirzal, PhD N28-439-03 APACHE WEB SERVER Andri Mirzal, PhD N28-439-03 Introduction The Apache is an open source web server software program notable for playing a key role in the initial growth of the World Wide Web Typically

More information

Apache 2.0 Installation Guide

Apache 2.0 Installation Guide Apache 2.0 Installation Guide Ryan Spangler spanglerrp22@uww.edu http://ceut.uww.edu May 2002 Department of Business Education/ Computer and Network Administration Copyright Ryan Spangler 2002 Table of

More information

nitrobit update server

nitrobit update server nitrobit update server Administrator's Guide 2011 analytiq consulting gmbh. All rights reserved. Page 2 nitrobit update server Administrator's Guide Content I. Introduction... 4 Overview... 4 Components

More information

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6 INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6 Mathieu SCHIRES Version: 0.96.1 Published January 19, 2015 http://www.inuvika.com Contents 1 Prerequisites: RHEL 6 3 1.1 System Requirements...................................

More information

Apache 2.2 on QNX Neutrino 6.4.x OS Step-by-step installation manual

Apache 2.2 on QNX Neutrino 6.4.x OS Step-by-step installation manual Apache 22 on QNX Neutrino 64x OS Step-by-step installation manual 1 User and Group settings for Apache 22 First of all, we have to create a new GROUP in Photon On the right side menu (Shelf) select the

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

More information

OS Installation: CentOS 5.8

OS Installation: CentOS 5.8 OS Installation: CentOS 5.8 OpenTUSK Training University of Nairobi Mike Prentice michael.prentice@tufts.edu Tufts University Technology for Learning in the Health Sciences July 2013 Outline 1 OS Install

More information

10gAS SSL / Certificate Based Authentication Configuration

10gAS SSL / Certificate Based Authentication Configuration I. Overview This document covers the processes required to create a self-signed certificate or to import a 3 rd party certificate using the Oracle Certificate Authority. In addition, the steps to configure

More information

DoD Public Key Enablement (PKE) Quick Reference Guide. Securing Apache HTTP with mod_ssl for Linux

DoD Public Key Enablement (PKE) Quick Reference Guide. Securing Apache HTTP with mod_ssl for Linux DoD Public Key Enablement (PKE) Quick Reference Guide Securing Apache HTTP with mod_ssl for Linux Contact: PKE_Support@disa.mil URL: https://www.us.army.mil/suite/page/474113 This guide provides instructions

More information

Lets Get Started In this tutorial, I will be migrating a Drupal CMS using FTP. The steps should be relatively similar for any other website.

Lets Get Started In this tutorial, I will be migrating a Drupal CMS using FTP. The steps should be relatively similar for any other website. This tutorial will show you how to migrate your website using FTP. The majority of websites are just files, and you can move these using a process called FTP (File Transfer Protocol). The first thing this

More information

Connection Broker Managing User Connections to Workstations, Blades, VDI, and more. Security Review

Connection Broker Managing User Connections to Workstations, Blades, VDI, and more. Security Review Connection Broker Managing User Connections to Workstations, Blades, VDI, and more Security Review Version 8.1 October 21, 2015 Contacting Leostream Leostream Corporation http://www.leostream.com 465 Waverley

More information

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 1 The person installing the VC is knowledgeable of the Linux file system

More information

Connection Broker Managing User Connections to Workstations and Blades, OpenStack Clouds, VDI, and more. Security Review

Connection Broker Managing User Connections to Workstations and Blades, OpenStack Clouds, VDI, and more. Security Review Connection Broker Managing User Connections to Workstations and Blades, OpenStack Clouds, VDI, and more Security Review Version 8.1 March 31, 2016 Contacting Leostream Leostream Corporation http://www.leostream.com

More information

itixi Ubuntu Server Deployment How-To/Information

itixi Ubuntu Server Deployment How-To/Information itixi Ubuntu Server Deployment How-To/Information Reto Schelbert 20. August 2014 1 Index 1 Index... 1 2 Virtual Server Information... 3 2.1 User/Root... 3 2.2 MySQL User... 3 3 Ubuntu Server Installation...

More information

Railo Installation on CentOS Linux 6 Best Practices

Railo Installation on CentOS Linux 6 Best Practices Railo Installation on CentOS Linux 6 Best Practices Purpose: This document is intended for system administrators who want to deploy their Mura CMS, Railo, Tomcat, and JRE stack in a secure but easy to

More information

orrelog Apache TLS / Crypto Enhanced Encryption Software

orrelog Apache TLS / Crypto Enhanced Encryption Software orrelog Apache TLS / Crypto Enhanced Encryption Software http://www.correlog.com mailto:info@correlog.com CorreLog, Enhanced Encryption Software Manual Copyright 2008-2015, CorreLog, Inc. All rights reserved.

More information

ECE 4893: Internetwork Security Lab 12: Web Security

ECE 4893: Internetwork Security Lab 12: Web Security Group Number: Member Names: ECE 4893: Internetwork Security Lab 12: Web Security Date: April 6, 2004 Date Due: April 13, 2004 Last Revised: April 2, 2004 Written by: Tom Bean and Valerio Oricchio Goal:

More information

Installation of PHP, MariaDB, and Apache

Installation of PHP, MariaDB, and Apache Installation of PHP, MariaDB, and Apache A few years ago, one would have had to walk over to the closest pizza store to order a pizza, go over to the bank to transfer money from one account to another

More information

APACHE HTTP SERVER 2.2.8

APACHE HTTP SERVER 2.2.8 LEVEL 3 APACHEHTTP APACHE HTTP SERVER 2.2.8 HTTP://HTTPD.APACHE.ORG SUMMARY Apache HTTP Server is an open source web server application regarded as one of the most efficient, scalable, and feature-rich

More information

Dataworks System Services Guide

Dataworks System Services Guide Dataworks System Services Guide UNAVCO initially established the GNSS data management service Dataworks as a full stack independent server running on Dell Hardware operating CentOS as its operating system.

More information

WebBridge LR Integration Guide

WebBridge LR Integration Guide Lots of Copies Keep Stuff Safe (LOCKSS) and Innovative Interfaces have made content preserved on LOCKSS Boxes available through OPACs that use the WebBridge LR link resolver. This guide describes the steps

More information

EZcast Installation guide

EZcast Installation guide EZcast Installation guide Document written by > Michel JANSENS > Arnaud WIJNS from ULB PODCAST team http://podcast.ulb.ac.be http://ezcast.ulb.ac.be podcast@ulb.ac.be SOMMAIRE SOMMAIRE... 2 1. INSTALLATION

More information

Deploying the BIG-IP System v10 with Oracle Application Server 10g R2

Deploying the BIG-IP System v10 with Oracle Application Server 10g R2 DEPLOYMENT GUIDE Deploying the BIG-IP System v10 with Oracle Application Server 10g R2 Version 1.1 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Oracle s Application Server 10g

More information

Installing Booked scheduler on CentOS 6.5

Installing Booked scheduler on CentOS 6.5 Installing Booked scheduler on CentOS 6.5 This guide will assume that you already have CentOS 6.x installed on your computer, I did a plain vanilla Desktop install into a Virtual Box VM for this test,

More information

Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...

Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings... Post Installation Guide for Primavera Contract Management 14.1 July 2014 Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...

More information

CPE111 COMPUTER EXPLORATION

CPE111 COMPUTER EXPLORATION CPE111 COMPUTER EXPLORATION BUILDING A WEB SERVER ASSIGNMENT You will create your own web application on your local web server in your newly installed Ubuntu Desktop on Oracle VM VirtualBox. This is a

More information

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g DEPLOYMENT GUIDE Version 1.1 Deploying F5 with Oracle Application Server 10g Table of Contents Table of Contents Introducing the F5 and Oracle 10g configuration Prerequisites and configuration notes...1-1

More information

Setting Up Specify to use a Shared Workstation as a Database Server

Setting Up Specify to use a Shared Workstation as a Database Server Specify Software Project www.specifysoftware.org Setting Up Specify to use a Shared Workstation as a Database Server This installation documentation is intended for workstations that include an installation

More information