itixi Ubuntu Server Deployment How-To/Information

Size: px
Start display at page:

Download "itixi Ubuntu Server Deployment How-To/Information"

Transcription

1 itixi Ubuntu Server Deployment How-To/Information Reto Schelbert 20. August 2014

2 1 Index 1 Index Virtual Server Information User/Root MySQL User Ubuntu Server Installation Mysql 5.6 installation Update and Upgrade Install Webmin (easier to configure server instances) Install PHP Modules curl xdebug Change PHP configuration Install wkhtmltopdf Install phpdoc (optional) Apache Config Configuration HTTP/Default Directory SSL Konfigurieren Konfiguration HTTPS/SSL Apache Webmin Symfony/sfitixi Install OSRM Install Build OSRM OSRM Extract and Prepare OSRM API OSRM Website Virtual Box NAT-Rules SSH HTTP Website HTTPS Website OSRM API Webmin Server Scripts tixi_update_and_rebuild.sh tixi_rebuild_server.sh osrm_update.sh osrm_start.sh osrm_stop.sh MySQL Backup Restore August 2014 Seite 1 von 48

3 17 New Client/Mandant New MySQL database Symfony/sfitixi instance Set parameters Set TIXI parameters run_build or deploy Apache directory VirtualBox Import August 2014 Seite 2 von 48

4 2 Virtual Server Information Download (as per ) Virtual Machine was created and exported with Virtual Box see: The Virtual Machine has been configured with 4GB memory, which is necessary for the OSRM Installation (only OSRM extract process for example the Update of new map data). The machine will work with only 2GB, but more will be necessary for the OSRM Update process. The itixi Ubuntu virtual machine has the following user accounts 2.1 User/Root Username: Password: tixisupport Fahrer2014 To take root account, use sudo or sudo i 2.2 MySQL User Username: Password: root DrivingMaster019 3 Ubuntu Server Installation (PHP5.5 included, MySQL 5.5 included but automatic upgrade to 5.6) Follow the installation instructions Hostname: tixisrv TimeZone: Europe/Zurich 20. August 2014 Seite 3 von 48

5 20. August 2014 Seite 4 von 48

6 Choose Packages (manual package selection not necessary) 20. August 2014 Seite 5 von 48

7 After Installation (VirtualBox + Windows Settings) Get ip: ifconfig Use IP-Address (VirtualBox Internal Network Adapter over NAT) to use NAT-Rules for access. 20. August 2014 Seite 6 von 48

8 SSH Port Translation from localhost to the Virtual Machine internal IP-Address. So we can connect to the SSH Server with: :22 Notice: if you already use a service or application which uses Port 22, use another Port in the field Host-Port -> like and connect then over : Otherwise, the translation it will get blocked or interrupted by that service. 20. August 2014 Seite 7 von 48

9 20. August 2014 Seite 8 von 48

10 4 Mysql 5.6 installation apt-get install mysql-server MySQL root account will be taken from the 5.5 installation 5 Update and Upgrade Update repository and lists sudo apt-get update Upgrade any Ubuntu Server versions sudo apt-get upgrade 20. August 2014 Seite 9 von 48

11 6 Install Webmin (easier to configure server instances) Instructions: User normal user/root to login -> tixisupport 20. August 2014 Seite 10 von 48

12 7 Install PHP Modules 7.1 curl apt-get install php5-curl 7.2 xdebug sudo apt-get install php5-dev php-pear php5-xdebug 20. August 2014 Seite 11 von 48

13 8 Change PHP configuration Default php.ini in /etc/php5/apache2/php.ini sudo nano /etc/php5/apache2/php.ini Go to the end of file xdebug.max_nesting_level= August 2014 Seite 12 von 48

14 9 Install wkhtmltopdf apt-get install wkhtmltopdf Default location of the installed binaries: /usr/bin/wkhtmltopdf 10 Install phpdoc (optional) pear channel-discover pear.phpdoc.org pear install phpdoc/phpdocumentor Dependencies sudo apt-get install php5-xsl sudo apt-get install graphviz 20. August 2014 Seite 13 von 48

15 11 Apache Config Apache Konfigurationen unter /etc/apache2/sites-available/ With a2ensite and a2dissite we can enable and disable virtual server configurations 11.1 Configuration HTTP/Default /etc/apache2/sites-available/tixi.conf Indexes lists the directory, we will not enable that. We will use Symbolic Links in our folderes, so +FollowSymLinks is enabled. <VirtualHost *:80> DocumentRoot /var/www <Directory "/var/www"> allow from all Options -Indexes +FollowSymLinks AllowOverride None </Directory> LogLevel warn ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost> 20. August 2014 Seite 14 von 48

16 11.2 Directory Within the default web directory we create a symbolic link to the itixi-webdirectory cd /var/www ln -s /srv/tixi/sfitixi/ tixi Same for the OSRM-Website it will be under /srv/osrm-web ln -s /srv/osrm-web/webcontent/ osrm 20. August 2014 Seite 15 von 48

17 11.3 SSL Konfigurieren It ll be necessary to create a default certificate. For productive environment you should buy an official certificate (for example then we can replace the default certificate /etc/apache2/ssl/apache.pem mkdir -p /etc/apache2/ssl openssl req -new -x509 -days 365 -nodes -sha256 -out /etc/apache2/ssl/apache.pem -keyout /etc/apache2/ssl/apache.pem ln -sf /etc/apache2/ssl/apache.pem /etc/apache2/ssl/`/usr/bin/openssl x509 -noout -hash < /etc/apache2/ssl/apache.pem`.0 chmod 600 /etc/apache2/ssl/apache.pem Apache SSL MOD activation a2enmod ssl service apache2 restart Enable ports /etc/apache2/ports.conf SSL Mode Listen 443 should be active # If you just change the port or add more ports here, you will likely also # have to change the VirtualHost statement in # /etc/apache2/sites-enabled/000-default.conf Listen 80 <IfModule ssl_module> </IfModule> Listen August 2014 Seite 16 von 48

18 11.4 Konfiguration HTTPS/SSL /etc/apache2/sites-available/tixi_ssl.conf <VirtualHost *> SSLEngine On SSLCertificateFile /etc/apache2/ssl/apache.pem DocumentRoot /var/www <Directory "/var/www"> allow from all Options -Indexes +FollowSymLinks AllowOverride None </Directory> LogLevel warn ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost> 20. August 2014 Seite 17 von 48

19 11.5 Apache Webmin The configuration is also possible via Webmin 20. August 2014 Seite 18 von 48

20 20. August 2014 Seite 19 von 48

21 20. August 2014 Seite 20 von 48

22 12 Symfony/sfitixi Install Clone the Symfony project into /srv/tixi/ git clone Symfony components getting all installed by composer (see: ) We can run composer in the project folder /srv/tixi/sfitix/ with php composer.phar To install all dependencies for the first time, just run php composer.phar install Follow the instructions to set parameters 20. August 2014 Seite 21 von 48

23 13 OSRM Install Install dependencies: apt-get install git libboost-dev gcc g++ cmake libstxxl-dev \ libxml2-dev libbz2-dev zlib1g-dev libzip-dev libboost-filesystem-dev \ libboost-thread-dev libboost-system-dev libboost-regex-dev libboost-program-options-dev \ libboost-iostreams-dev libgomp1 libpng12-dev libprotoc8 libprotobuf-dev protobuf-compiler \ liblua5.1-0-dev libluabind-dev pkg-config libosmpbf-dev Get osmconverter wget -O - cc -x c - -lz -O3 -o osmconvert 20. August 2014 Seite 22 von 48

24 13.1 Build OSRM Get OSRM latest stable version mkdir /srv/osrm cd /srv/osrm wget unzip v0.3.7.zip Create stxxl config to specify large data sets /srv/osrm/.stxxl nano.stxxl disk=/tmp/stxxl,2000,syscall build folder /srv/osrm/build mkdir p build cd build cmake.. make Make process will take a while 20. August 2014 Seite 23 von 48

25 Create symlinks in the root folder /srv/osrm cd /srv/osrm ln -s profiles/car.lua profile.lua ln -s build/server.ini server.ini ln -s build/osrm-extract ln -s build/osrm-prepare ln -s build/osrm-routed Change Server.ini /srv/osrm/build/server.ini Threads = 4 IP = hsgrdata=./build/swiss.osrm.hsgr nodesdata=./build/swiss.osrm.nodes edgesdata=./build/swiss.osrm.edges ramindex=./build/swiss.osrm.ramindex fileindex=./build/swiss.osrm.fileindex namesdata=./build/swiss.osrm.names 20. August 2014 Seite 24 von 48

26 13.2 OSRM Extract and Prepare /srv/osrm/build /ROOT-DIR OSRM/ cd build #download latest OSM wget #OSM convert./osmconvert switzerland-latest.osm.pbf -o=swiss.o5m./osmconvert swiss.o5m -o=swiss.osm.pbf #OSM extraction./osrm-extract build/swiss.osm.pbf./osrm-prepare build/swiss.osrm #Start OSRM./osrm-routed Some values if you would like to use more then only one country OSM: August 2014 Seite 25 von 48

27 13.3 OSRM API OSRM Server Requests on Test: OSRM Website mkdir /srv/osrm-web cd /srv/osrm-web git clone mv osrm-frontend/webcontent/. chown R www-data:www-data /srv/osrm-web link that web folder ln s /srv/osrm-web/webcontent /var/www/osrm 20. August 2014 Seite 26 von 48

28 Change configuration nano /srv/osrm-web/webcontent/osrm.config.js change routing and timestamp url ROUTING_ENGINES: [ { url: ' timestamp: ' metric: 0, label: 'ENGINE_0', } 20. August 2014 Seite 27 von 48

29 OSRM Website: OSRM Website will work only without HTTPS/SSL 20. August 2014 Seite 28 von 48

30 14 Virtual Box NAT-Rules 20. August 2014 Seite 29 von 48

31 14.1 SSH with Default-Port: August 2014 Seite 30 von 48

32 14.2 HTTP Website August 2014 Seite 31 von 48

33 14.3 HTTPS Website August 2014 Seite 32 von 48

34 14.4 OSRM API August 2014 Seite 33 von 48

35 14.5 Webmin August 2014 Seite 34 von 48

36 15 Server Scripts All scripts are under: /srv/scripts 15.1 tixi_update_and_rebuild.sh Checks git repository (the respository here is saved in the git.configs under the sfitixi folder) and updates + rebuild server 15.2 tixi_rebuild_server.sh recreates database (run_build) and deploys symfony productive environment 20. August 2014 Seite 35 von 48

37 15.3 osrm_update.sh Stops OSRM process, downloads latest swiss OSM data, extract and convert them, prepare the routings and starts OSRM again with new routing-map data. 20. August 2014 Seite 36 von 48

38 It could be possible to do that all weekend or once per month with a scheduled cron-job (with root account -> sudo i) crontab e For example every saturday at 04:00am 0 4 * * 6 /srv/scripts/osrm_update.sh 20. August 2014 Seite 37 von 48

39 15.4 osrm_start.sh OSRM Server start Wird für den Start auch in den STARTUP des Servers gelegt osrm_routed is execeuted with screen, because the process takes the current user context session. With screen x osrm it is possible to view that session Detach the screen session with (CTRL + A) + D 15.5 osrm_stop.sh Kills the current screen process 20. August 2014 Seite 38 von 48

40 16 MySQL Backup A very good script for MySQL Backups is AutoMYSQLBackup Extracted in /srv/scripts/mysql The install script copies necessary files into the right place. All files are in /srv/sciprts/mysql and executables are in /usr/local/bin/automysqlbackup A config files defines Backup rotation, databases, path and etc. /srv/scripts/mysql/tixi_server.conf A simply script runs the backup /srv/scripts/mysql/ tixi_mysqlbackup.sh Backup path is /srv/backup/db First run creates all subfolders Config defines all databases for backup =() 20. August 2014 Seite 39 von 48

41 All databases are backed up and zipped There is a daily backup, a weekly (saturday) and a monthly (first day of month).. BACKUP ROTATION Daily Backups are rotated weekly. Weekly Backups are run on fridays, unless otherwise specified via CONFIG_do_weekly. Weekly Backups are rotated on a 5 week cycle, unless otherwise specified via CONFIG_rotation_weekly. Monthly Backups are run on the 1st of the month, unless otherwise specified via CONFIG_do_monthly. Monthly Backups are rotated on a 5 month cycle, unless otherwise specified via CONFIG_rotation_monthly. Suggestion: It may be a good idea to copy monthly backups offline or to another server. Create a scheduled cron job 20. August 2014 Seite 40 von 48

42 16.1 Restore.. RESTORING Firstly you will need to uncompress the backup file and decrypt it if encryption was used (see encryption section). eg. gunzip file.gz (or bunzip2 file.bz2) Next you will need to use the mysql client to restore the DB from the sql file. eg. mysql --user=username --pass=password --host=dbserver database < /path/file.sql or mysql --user=username --pass=password --host=dbserver -e "source /path/file.sql" database NOTE: Make sure you use "<" and not ">" in the above command because you are piping the file.sql to mysql and not the other way around. We restore a backup gunzip.sql import 20. August 2014 Seite 41 von 48

43 17 New Client/Mandant To create an new client, separate instance, the following steps are necessary. This will be a new apache virtual server, without developer build websites etc New MySQL database 20. August 2014 Seite 42 von 48

44 Create new MySQL user if necessary and gain access to that database. Default we take the root user. 20. August 2014 Seite 43 von 48

45 17.2 Symfony/sfitixi instance Create an separate folder for the client under /srv/tixi mkdir client_tixizug Clone git repository or copy symfony/sfitixi files in that directory by hand git clone Install dependencies php composer.phar install Set parameters 20. August 2014 Seite 44 von 48

46 Set TIXI parameters nano sfitixi/app/config/tixi.yml It could be possible to create a seperate Google API Account for every client. Change the tixi_parameter_client and client_page for that client instance, and also the admin_mail (for administrator) And if changed, the osrm_server parameter parameters: tixi_parameter_app: itixi tixi_parameter_version: v tixi_parameter_client: Tixi Zug tixi_parameter_client_page: tixi_parameter_files_directory: %kernel.root_dir%/cache/files tixi_parameter_admin_mail: itixizug@gmail.com tixi_parameter_google_apikey: AIzaSyAj6w00ufayAcAv-A8zzLhQspEYflknr4E tixi_parameter_osrm_server: :5000 If parameters changed after build/deploy for productive server, run the symphony deploy again: rm app/cache/* app/logs/* -f -R HTTPDUSER=`ps aux grep -E '[a]pache [h]ttpd [_]www [w]ww-data [n]ginx' grep -v root head -1 cut -d\ -f1` sudo setfacl -R -m u:"$httpduser":rwx -m u:`whoami`:rwx app/cache app/logs sudo setfacl -dr -m u:"$httpduser":rwx -m u:`whoami`:rwx app/cache app/logs php app/console cache:clear --env=prod --no-debug php app/console assetic:dump --env=prod --no-debug chown -R www-data:www-data /srv/tixi/client_tixizug 20. August 2014 Seite 45 von 48

47 run_build or deploy 20. August 2014 Seite 46 von 48

48 17.3 Apache directory Link new folder ln -s /srv/tixi/client_tixizug/sfitixi/web/ /var/www/client_tixizug Make shure apache user can access that folder chown -R www-data:www-data /srv/tixi/client_tixizug Then we can access the new instance with August 2014 Seite 47 von 48

49 18 VirtualBox Import 20. August 2014 Seite 48 von 48

Installing an SSL certificate on the InfoVaultz Cloud Appliance

Installing an SSL certificate on the InfoVaultz Cloud Appliance Installing an SSL certificate on the InfoVaultz Cloud Appliance This document reviews the prerequisites and installation of an SSL certificate for the InfoVaultz Cloud Appliance. Please note that the installation

More information

HOW TO BUILD A VMWARE APPLIANCE: A CASE STUDY

HOW TO BUILD A VMWARE APPLIANCE: A CASE STUDY HOW TO BUILD A VMWARE APPLIANCE: A CASE STUDY INTRODUCTION Virtual machines are becoming more prevalent. A virtual machine is just a container that describes various resources such as memory, disk space,

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

Tonido Cloud Admin Guide

Tonido Cloud Admin Guide CODELATHE LLC Tonido Cloud Admin Guide Installing and Managing Tonido Cloud CodeLathe LLC 10/27/2012 (c) CodeLathe LLC 2012. All Rights Reserved Contents 1. Introduction... 3 2. Pre-Requisites... 3 3.

More information

Installing an open source version of MateCat

Installing an open source version of MateCat Installing an open source version of MateCat This guide is meant for users who want to install and administer the open source version on their own machines. Overview 1 Hardware requirements 2 Getting started

More information

Hardening web application (DOS and Application firewalls. Margus Ernits

Hardening web application (DOS and Application firewalls. Margus Ernits Hardening web application (DOS and Application firewalls Margus Ernits 2013 Contents Glossary 4 1 Protecting Web Application Against (D)DOS Atta s 5 1.1 Introduction........................................

More information

SNPsyn documentation. Release 1.1b. Tomaž Curk Gregor Rot Davor Sluga Uroš Lotrič Blaž Zupan

SNPsyn documentation. Release 1.1b. Tomaž Curk Gregor Rot Davor Sluga Uroš Lotrič Blaž Zupan SNPsyn documentation Release 1.1b Tomaž Curk Gregor Rot Davor Sluga Uroš Lotrič Blaž Zupan March 05, 2013 CONTENTS 1 Virtual server image 1 1.1 Install Linux server..........................................

More information

Kollaborate Server Installation Guide!! 1. Kollaborate Server! Installation Guide!

Kollaborate Server Installation Guide!! 1. Kollaborate Server! Installation Guide! Kollaborate Server Installation Guide 1 Kollaborate Server Installation Guide Kollaborate Server is a local implementation of the Kollaborate cloud workflow system that allows you to run the service in-house

More information

Cloud Homework instructions for AWS default instance (Red Hat based)

Cloud Homework instructions for AWS default instance (Red Hat based) Cloud Homework instructions for AWS default instance (Red Hat based) Automatic updates: Setting up automatic updates: by Manuel Corona $ sudo nano /etc/yum/yum-updatesd.conf Look for the line that says

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

Installing Dspace 1.8 on Ubuntu 12.04

Installing Dspace 1.8 on Ubuntu 12.04 Installing Dspace 1.8 on Ubuntu 12.04 This is an abridged version of the dspace 1.8 installation guide, specifically targeted at getting a basic server running from scratch using Ubuntu. More information

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

Security Workshop. Apache + SSL exercises in Ubuntu. 1 Install apache2 and enable SSL 2. 2 Generate a Local Certificate 2

Security Workshop. Apache + SSL exercises in Ubuntu. 1 Install apache2 and enable SSL 2. 2 Generate a Local Certificate 2 Security Workshop Apache + SSL exercises in Ubuntu Contents 1 Install apache2 and enable SSL 2 2 Generate a Local Certificate 2 3 Configure Apache to use the new certificate 4 4 Verify that http and https

More information

Perforce Helix Threat Detection On-Premise Deployment Guide

Perforce Helix Threat Detection On-Premise Deployment Guide Perforce Helix Threat Detection On-Premise Deployment Guide Version 3 On-Premise Installation and Deployment 1. Prerequisites and Terminology Each server dedicated to the analytics server needs to be identified

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

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

Setting up a Web Server using Raspbian Wheezy on the Raspberry Pi ( Kenneth A Spencer)

Setting up a Web Server using Raspbian Wheezy on the Raspberry Pi ( Kenneth A Spencer) Setting up a Web Server using Raspbian Wheezy on the Raspberry Pi ( Kenneth A Spencer) To use the Raspbian Wheezy distribution of the Debian Linux release of Wheezy, for the Raspberry Pi, as a web server

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

OpenEMR 4.1.1 Appliance Manual

OpenEMR 4.1.1 Appliance Manual OpenEMR 4.1.1 Appliance Manual Page Last modified: 09/01/12 12:43:09 PM Author: Brady Miller Email: brady@sparmy.com Discussion Board: http://sourceforge.net/projects/openemr/forums OpenEMR 4.1.1 Appliance

More information

Ciphermail Gateway Separate Front-end and Back-end Configuration Guide

Ciphermail Gateway Separate Front-end and Back-end Configuration Guide CIPHERMAIL EMAIL ENCRYPTION Ciphermail Gateway Separate Front-end and Back-end Configuration Guide June 19, 2014, Rev: 8975 Copyright 2010-2014, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction

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

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

INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR)

INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR) INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR) Mathieu SCHIRES Version: 0.9.1 Published December 24, 2014 http://www.inuvika.com Contents 1 Prerequisites: Ubuntu 14.04 (Trusty Tahr) 3

More information

Cassandra Installation over Ubuntu 1. Installing VMware player:

Cassandra Installation over Ubuntu 1. Installing VMware player: Cassandra Installation over Ubuntu 1. Installing VMware player: Download VM Player using following Download Link: https://www.vmware.com/tryvmware/?p=player 2. Installing Ubuntu Go to the below link and

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

Partek Flow Installation Guide

Partek Flow Installation Guide Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access

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

Network Monitoring Lab

Network Monitoring Lab 2016/07/11 05:53 1/7 Network Monitoring Lab Network Monitoring Lab Introduction In this exercise, we will set up LibreNMS as our network monitoring package. The software will poll your routers and switches

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

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

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

PassBy[ME] - Bugzilla integration on

PassBy[ME] - Bugzilla integration on PassBy[ME] - Bugzilla integration on CentOS 6.5 operating system Document id: PBM_06 Version: 1.2 Author: Microsec Ltd. Date: February 2, 2015 1 Table of contents 1 Introduction... 4 1.1 PassBy[ME] and

More information

How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu

How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu Tagged In: Ubuntu, My Sql, Apache, Php, Lamp Stack About LAMP LAMP stack is a group of open source software used to get web servers up and

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

To enable https for appliance

To enable https for appliance To enable https for appliance We have used openssl command to generate a key pair. The below image shows on how to generate key using the openssl command. SSH into appliance and login as root. Copy all

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

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

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

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

Online Backup Client User Manual Linux

Online Backup Client User Manual Linux Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based

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

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

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

Configuring Ubuntu Server as a Firewall and Reverse Proxy for OWA 2007 Configuration Guide

Configuring Ubuntu Server as a Firewall and Reverse Proxy for OWA 2007 Configuration Guide Configuring Ubuntu Server as a Firewall and Reverse Proxy for OWA 2007 Configuration Guide Author: Andy Grogan Version 1.0 Location: http://www.telnetport25.com Contents Introduction... 3 Key Objectives:...

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

RecoveryVault Express Client User Manual

RecoveryVault Express Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

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

ULTEO OPEN VIRTUAL DESKTOP UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT

ULTEO OPEN VIRTUAL DESKTOP UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT Contents 1 Prerequisites: Ubuntu 12.04 (Precise Pangolin) 3 1.1 System Requirements.............................. 3 1.2 sudo.........................................

More information

A SHORT INTRODUCTION TO DUPLICITY WITH CLOUD OBJECT STORAGE. Version 1.12 2014-07-01

A SHORT INTRODUCTION TO DUPLICITY WITH CLOUD OBJECT STORAGE. Version 1.12 2014-07-01 A SHORT INTRODUCTION TO DUPLICITY WITH CLOUD OBJECT STORAGE Version 1.12 2014-07-01 PAGE _ 2 TABLE OF CONTENTS 1. Introduction....Page 03 2. System Configuration....Page 04 3. Create Backup Script....Page

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions January 2011 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

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

OpenEyes - Windows Server Setup. OpenEyes - Windows Server Setup

OpenEyes - Windows Server Setup. OpenEyes - Windows Server Setup OpenEyes - Windows Server Setup Editors: G W Aylward Version: 0.9: Date issued: 4 October 2010 1 Target Audience General Interest Healthcare managers Ophthalmologists Developers Amendment Record Issue

More information

SIMIAN systems. Setting up a Sitellite development environment on Mac OS X. Sitellite Content Management System

SIMIAN systems. Setting up a Sitellite development environment on Mac OS X. Sitellite Content Management System Setting up a Sitellite development environment on Mac OS X Sitellite Content Management System Introduction Mac OS X is a great platform for web application development, and now with tools like VMWare

More information

Online Backup Linux Client User Manual

Online Backup Linux Client User Manual Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might

More information

Online Backup Client User Manual

Online Backup Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Bitrix Site Manager. VMBitrix Virtual Machine. Quick Start And Usage Guide

Bitrix Site Manager. VMBitrix Virtual Machine. Quick Start And Usage Guide Bitrix Site Manager VMBitrix Virtual Machine. Quick Start And Usage Guide Contents Introduction... 3 Chapter 1. Starting The VMBitrix Virtual Machine... 4 Minimum Requirements For VMWare Player / VMBitrix...

More information

insync Installation Guide

insync Installation Guide insync Installation Guide 5.2 Private Cloud Druva Software June 21, 13 Copyright 2007-2013 Druva Inc. All Rights Reserved. Table of Contents Deploying insync Private Cloud... 4 Installing insync Private

More information

Monitoring Netflow with NFsen

Monitoring Netflow with NFsen Monitoring Netflow with NFsen Network Monitoring and Management Contents 1 Introduction 1 1.1 Goals................................. 1 1.2 Notes................................. 1 2 Export flows from a

More information

OpenGeo Suite for Linux Release 3.0

OpenGeo Suite for Linux Release 3.0 OpenGeo Suite for Linux Release 3.0 OpenGeo October 02, 2012 Contents 1 Installing OpenGeo Suite on Ubuntu i 1.1 Installing OpenGeo Suite Enterprise Edition............................... ii 1.2 Upgrading.................................................

More information

XCloner Official User Manual

XCloner Official User Manual XCloner Official User Manual Copyright 2010 XCloner.com www.xcloner.com All rights reserved. xcloner.com is not affiliated with or endorsed by Open Source Matters or the Joomla! Project. What is XCloner?

More information

OCS Virtual image. User guide. Version: 1.3.1 Viking Edition

OCS Virtual image. User guide. Version: 1.3.1 Viking Edition OCS Virtual image User guide Version: 1.3.1 Viking Edition Publication date: 30/12/2012 Table of Contents 1. Introduction... 2 2. The OCS virtualized environment composition... 2 3. What do you need?...

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

CCM 4350 Week 11. Security Architecture and Engineering. Guest Lecturer: Mr Louis Slabbert School of Science and Technology.

CCM 4350 Week 11. Security Architecture and Engineering. Guest Lecturer: Mr Louis Slabbert School of Science and Technology. CCM 4350 Week 11 Security Architecture and Engineering Guest Lecturer: Mr Louis Slabbert School of Science and Technology CCM4350_CNSec 1 Web Server Security The Web is the most visible part of the net

More information

Apache Hadoop 2.0 Installation and Single Node Cluster Configuration on Ubuntu A guide to install and setup Single-Node Apache Hadoop 2.

Apache Hadoop 2.0 Installation and Single Node Cluster Configuration on Ubuntu A guide to install and setup Single-Node Apache Hadoop 2. EDUREKA Apache Hadoop 2.0 Installation and Single Node Cluster Configuration on Ubuntu A guide to install and setup Single-Node Apache Hadoop 2.0 Cluster edureka! 11/12/2013 A guide to Install and Configure

More information

SIMIAN systems. Setting up a Sitellite development environment on Windows. Sitellite Content Management System

SIMIAN systems. Setting up a Sitellite development environment on Windows. Sitellite Content Management System Setting up a Sitellite development environment on Windows Sitellite Content Management System Introduction For live deployment, it is strongly recommended that Sitellite be installed on a Unix-based operating

More information

LAB :: Secure HTTP traffic using Secure Sockets Layer (SSL) Certificate

LAB :: Secure HTTP traffic using Secure Sockets Layer (SSL) Certificate LAB :: Secure HTTP traffic using Secure Sockets Layer (SSL) Certificate In this example we are using apnictraining.net as domain name. # super user command. $ normal user command. X replace with your group

More information

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

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

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

CC ICT-SUD. Setting up and integrate Apache, MySQL and PHP on a Linux system

CC ICT-SUD. Setting up and integrate Apache, MySQL and PHP on a Linux system LAMP CC ICT-SUD Setting up and integrate Apache, MySQL and PHP on a Linux system Installation Simple Alternative (for development/testing only): Xampp I will assume MySQL is already installed and configured

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

Kultra Ubuntu Install

Kultra Ubuntu Install Kultra Ubuntu Install Created by: Shawn Peters Install basic Ubuntu server install. I used Ubuntu Server v10.10 x64. Fisrt update repositories: sudo apt-get update Install nano (terminal based text editor)

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

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

Online Backup Client User Manual

Online Backup Client User Manual For Mac OS X Software version 4.1.7 Version 2.2 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by other means.

More information

ALERT installation setup

ALERT installation setup ALERT installation setup In order to automate the installation process of the ALERT system, the ALERT installation setup is developed. It represents the main starting point in installing the ALERT system.

More information

Contents Set up Cassandra Cluster using Datastax Community Edition on Amazon EC2 Installing OpsCenter on Amazon AMI References Contact

Contents Set up Cassandra Cluster using Datastax Community Edition on Amazon EC2 Installing OpsCenter on Amazon AMI References Contact Contents Set up Cassandra Cluster using Datastax Community Edition on Amazon EC2... 2 Launce Amazon micro-instances... 2 Install JDK 7... 7 Install Cassandra... 8 Configure cassandra.yaml file... 8 Start

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

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

VERSION 9.02 INSTALLATION GUIDE. www.pacifictimesheet.com

VERSION 9.02 INSTALLATION GUIDE. www.pacifictimesheet.com VERSION 9.02 INSTALLATION GUIDE www.pacifictimesheet.com PACIFIC TIMESHEET INSTALLATION GUIDE INTRODUCTION... 4 BUNDLED SOFTWARE... 4 LICENSE KEY... 4 SYSTEM REQUIREMENTS... 5 INSTALLING PACIFIC TIMESHEET

More information

SVNManager Installation. Documentation. Department of Public Health Erasmus MC University Medical Center

SVNManager Installation. Documentation. Department of Public Health Erasmus MC University Medical Center SVNManager Installation Documentation M. Verkerk Department of Public Health Erasmus MC University Medical Center Page 2 July 2005 Preface Version control in the context of this document is all about keeping

More information

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.2

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.2 JAMF Software Server Installation and Configuration Guide for Linux Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

ABS Manual Installation Guide

ABS Manual Installation Guide This document includes all the information required to install, upgrade and configure the Amberdms Billing System manually on nonoffically supported platforms. If you are a user of RHEL, CentOS, Debian

More information

Installation Manual Product of

Installation Manual Product of Installation Manual Product of Table of Contents 1. Installing MyTaskManager on Ubuntu2 Requirements..2 Get the source code..3 Install MyTaskManager.4 Web based installation..4 2. Installing MyTaskManager

More information

Git Fusion Guide 2015.3. August 2015 Update

Git Fusion Guide 2015.3. August 2015 Update Git Fusion Guide 2015.3 August 2015 Update Git Fusion Guide 2015.3 August 2015 Update Copyright 1999-2015 Perforce Software. All rights reserved. Perforce software and documentation is available from http://www.perforce.com/.

More information

CloudBackup Installer Guide Linux. System Requirements. Get Started - Linux

CloudBackup Installer Guide Linux. System Requirements. Get Started - Linux System Requirements Operating System (RedHat, SuSE, Debain and Debain based systems such as Ubuntu) Solaris 10 Solaris 11 Hardware Resources PC with 1 Gigahertz (GHz) or higher processor clock speed recommended

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

Ulteo Open Virtual Desktop Installation

Ulteo Open Virtual Desktop Installation Ulteo Open Virtual Desktop Installation Copyright 2008 Ulteo SAS - CONTENTS CONTENTS Contents 1 Prerequisites 2 1.1 Installation of MySQL....................................... 2 2 Session Manager (sm.ulteo.com)

More information

CLEARSWIFT SECURE Web Gateway HTTPS/SSL decryption

CLEARSWIFT SECURE Web Gateway HTTPS/SSL decryption CLEARSWIFT SECURE Web Gateway HTTPS/SSL decryption Introduction This Technical FAQ explains the functionality of the optional HTTPS/SSL scanning and inspection module available for the Web Gateway and

More information

Rails Application Deployment. July 2007 @ Philly on Rails

Rails Application Deployment. July 2007 @ Philly on Rails Rails Application Deployment July 2007 @ Philly on Rails What Shall We Deploy Tonight? Blogging/publishing system Standard Rails application Ships with gems in vendor directory Easy rake task for database

More information

OpenPro ERP Software Installation Guide REDHAT LINUX

OpenPro ERP Software Installation Guide REDHAT LINUX OpenPro ERP Software Installation Guide REDHAT LINUX 10061 Talbert Ave Suite 228 Fountain Valley, CA 92708 USA Phone 714-378-4600 Fax 714-964-1491 www.openpro.com infoop@openpro.com OpenPro Installation

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

Virtual Machine daloradius Administrator Guide Version 0.9-9

Virtual Machine daloradius Administrator Guide Version 0.9-9 Virtual Machine daloradius Administrator Guide Version 0.9-9 May 2011 Liran Tal of Enginx Contact Email: daloradius Website: Enginx website: liran@enginx.com http://www.daloradius.com http://www.enginx.com

More information

JAMF Software Server Installation and Configuration Guide for Windows. Version 9.3

JAMF Software Server Installation and Configuration Guide for Windows. Version 9.3 JAMF Software Server Installation and Configuration Guide for Windows Version 9.3 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this

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

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

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.2

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.2 JAMF Software Server Installation and Configuration Guide for OS X Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

IMPLEMENTATION OF CIPA - PUDUCHERRY UT SERVER MANAGEMENT. Client/Server Installation Notes - Prepared by NIC, Puducherry UT.

IMPLEMENTATION OF CIPA - PUDUCHERRY UT SERVER MANAGEMENT. Client/Server Installation Notes - Prepared by NIC, Puducherry UT. SERVER MANAGEMENT SERVER MANAGEMENT The Police department had purchased a server exclusively for the data integration of CIPA. For this purpose a rack mount server with specifications- as per annexure

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