Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors)
|
|
|
- Roy Parrish
- 10 years ago
- Views:
Transcription
1 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 5 Basic List o software OS = Centos 5 (a Redhat Ent Clone) ( Rancid = Really Awesome New Cisco config Differ ( ) CVS = Concurrent Versions System ( ViewVC = Front end to CVS ( ) Python = Programming Language ( ) RCS = Revision Control System ( Apache = Linux Webserver ( MySQL = Database ( MySQLdb = Python connector for mysql ( PHP = Widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML ( ) Pygments Generic Syntax Highlighter ( ) The basic install is as follows. This is in no way a fully locked down system. 1) Install the base OS 2) Run yum upgrade - this will do an upgrade of all packages on the OS 3) Reboot 4) Log into the console 5) Run the following commands (some packages may already be installed) yum -y install expect cvs python httpd mysql mysql-server gcc make autoconf gccc++ kernel-devel mod_python yum groupinstall Development Tools MySQL-python diffutils yum install php-common php-gd php-mcrypt php-pear php-pecl-memcache phpmhash php-mysql php-xml yum upgrade 6) Reboot 7) Type in groupadd netadm useradd -g netadm -c "Networking Backups" -d /usr/local/rancid rancid 8) Run the following commands mkdir /usr/local/rancid/tar cd /usr/local/rancid/tar 9) Download the latest version of rancid and extract it (example below) wget ftp://ftp.shrubbery.net/pub/rancid/rancid tar.gz tar -xvzf rancid tar.gz cd rancid-2.3.3
2 ./configure --prefix=/usr/local/rancid/ make install cp cloginrc.sample /usr/local/rancid/.cloginrc chmod 0640 /usr/local/rancid/.cloginrc chown -R rancid:netadm /usr/local/rancid/ chmod 770 /usr/local/rancid/ 10) Edit /usr/local/rancid/etc/rancid.conf find the line where it starts LIST_OF_GROUPS= to look something like (change the name as necessary, this needs to be noted for further steps) LIST_OF_GROUPS="networking" 11) Edit /etc/aliases and add something like the following # # Rancid addresses # rancid-admin-networking: rancid-networking: noc: rancid-networking noc [email protected] 12) Type in newaliases 13) Type in cvs (You should get some output re the CVS version, if it doesn t appear run yum install cvs) 14) Type in the following su rancid 15) Type in /usr/local/rancid/bin/rancid-cvs output should look like the following No conflicts created by this import cvs checkout: Updating networking cvs checkout: Updating networking/configs cvs add: scheduling file `router.db' for addition cvs add: use 'cvs commit' to add this file permanently RCS file: /usr/local/rancid//var/cvs/networking/router.db,v Checking in router.db; /usr/local/rancid//var/cvs/networking/router.db,v <-- router.db initial revision: ) Edit the scheduled tasks using crontab e and add the following lines (the second entry should be on one line) 1 * * * * /usr/local/rancid/bin/rancid-run #hourly router dump * * * /usr/bin/find /usr/local/rancid/var/logs -type f mtime +2 -exec rm {} \; 17) Now we need to edit the device list and password files Edit /usr/local/rancid/var/networking/router.db adding a line similar to :cisco:up Edit /usr/local/rancid/.cloginrc add the username and password for the device similar to below
3 add user username add password password enablepassword 18) Now we should have a working copy of rancid to test we need to do the following bin/clogin You should see the logon process run by for your device and end up at the enable prompt 19) Now run bin/rancid-run, once this is completed check the log files in the following locations for any errors /usr/local/rancid/var/logs Successful output will look like the following starting: Thu Jul 21 02:01:01 PDT 2005 Trying to get all of the configs. All routers successfully completed. cvs diff: Diffing. cvs diff: Diffing configs cvs commit: Examining. cvs commit: Examining configs ending: Thu Jul 21 02:01:06 PDT ) It should also have created the file under /usr/local/rancid/var/networking/configs this would contain the config of your device 21) Now it is time to add a user interface to the CVS data base 22) Download the latest versions of ViewVC, RCS. 23) Install Pygments Type mkdir /root/python Type cd ~/python Run wget Run python./ez_setup.py Run python./ez_setup.py Run easy_install babel Run easy_install Genshi Run easy_install Pygments Run easy_install docutils Run easy_install textile 24) Install RCS Unpack RCS eg tar zxvf rcs-5.7.tar.z cd into to rcs-5.7 eg. cd rcs-5.7 run./configure type make type make install 25) Install ViewVC Unpack ViewVC eg tar zxvf viewvc tar.gz Cd into viewvc eg cd viewvc Type./viewvc-install
4 Edit /usr/local/viewvc-1.1.6/viewvc.conf Change the following options to look like something below #cvs_roots = cvs: root_parents = /usr/local/rancid/var/cvs : cvs rcs_path = /usr/local/bin/ address = <a href=mailto:[email protected]>it Support</a> use_enscript = 1 enscript_path = /usr/bin/ use_highlight = 1 highlight_path = /usr/bin Type cp /usr/local/viewvc-1.1.6/bin/cgi/*.cgi /var/www/cgi-bin Type chmod +x /var/www/cgi-bin/*.cgi Type chown apache:apache /var/www/cgi-bin/*.cgi Edit /etc/httpd/conf/httpd.conf and make the scriptaliases section look similar to ScriptAlias /cgi-bin/ "/var/www/cgi-bin/" ScriptAlias /viewvc /var/www/cgi-bin/viewvc.cgi ScriptAlias /query /var/www/cgi-bin/query.cgi Type /etc/init.d/httpd restart 26) Add the apache user to the netadm group in /etc/group 27) Run the following commands chkconfig --levels 2345 mysqld on chkconfig --levels 2345 httpd on 28) Modify you IPtables rules to allow http from the required devices 29) Create the Check-in Database Create a user who has permissions to create a database or just use root (for root just use 2 nd link) ( ) Type /usr/local/viewvc-1.1.6/bin/./make-database enter details as required Edit /usr/local/viewvc-1.1.6/viewvc.conf and change the details in the database section to look similar to the following NB!! [cvsdb] enabled = 1 host = localhost port = 3306 database_name = ViewVC user = username passwd = passsword readonly_user = username readonly_passwd = password row_limit = 1000 Type (one line) /usr/local/viewvc-1.1.6/bin/./cvsdbadmin rebuild /usr/local/rancid/var/cvs/cvsroot 30) Now we should have a Web interface up and running go to and you should have a web interface up with a Repository Listing of networking 31) Click networking and there should be a sub folder called configs, click into that and you should see the device If you click on this you should be able to navigate to see the config of that device
5 If you want notifications not to use DNS the following changes need to be made to forward the alerts out via 1) Edit /etc/mail/mailertable with something along the lines of.domain.com smtp:[relayaddress] domain.com smtp:[relayaddress] 2) Type in makemap hash /etc/mail/mailertable < /etc/mail/mailertable 3) Type in /etc/init.d/sendmail start 4) Type in chkconfig sendmail on Important directories /usr/local/rancid (where rancid is installed, all files are stored here) /usr/local/rancid/bin (the rancid executable directory specific note needs to be made of the following files control_rancid, rancid more on these later) /usr/local/rancid/etc (where the rancid config file is stored) /usr/local/rancid/var (where the device config files are stored and where the CVS repository is stored) /usr/local/viewvc (this is where view ViewVC is installed and configured) /var/www (this is where apache is installed and running from) Important files /usr/local/rancid/.cloginrc (password and per device configuration file) /usr/local/rancid/etc/rancid.conf (main rancid config file) /usr/local/rancid/var/networking/router.db (list of devices to backup up=backup, down=dontbackup) /usr/local/rancid/bin/clogin (application that actually logs into routers) /usr/local/rancid/bin/control_rancid (file where you can specify the mail from address, search for sendmail eg sendmail -FRancid -t) /usr/local/rancid/bin/rancid (this is main file for rancid, you can add exceptions here eg Under the Sub ShowFlash #ProcessHistory("FLASH","","","!Flash: $_"); # Modified to exclude crypto_archive on firewalls /\s+(crypto_archive)$/ && next; /\s+crypto_archive\/crypto_arch_1.bin$/ && next; /\s+crypto_archive\/crypto_arch_2.bin$/ && next; #filter coredumpinfo/coredump.cfg /\s+(coredumpinfo)$/ && next; /\s+coredumpinfo$/ && next; /\s+coredumpinfo\/coredump\.cfg$/ && next; ProcessHistory("FLASH","","","!Flash: $_"); /usr/local/rancid/bin/alogin (this is login file for alteon switches, HP blade switches), you can add the username update here # Figure out prompts set u_prompt [find userprompt $router]
6 if { "$u_prompt" == "" } { set u_prompt "(Username username login Login):" } else { set u_prompt [join [lindex $u_prompt 0] ""] References: _With_Rancid Operation How to add a Device 1) If adding a new customer edit /usr/local/rancid/etc/rancid.conf (via nano or winscp) Adding to Customers name to the line starting with LIST_OF_GROUPS= 2) If adding a new customer edit /etc/aliases adding lines similar to the following, Just above the last line (helpdesk: [email protected]) rancid-admin-group: rancid-group: rancid-group helpdesk 3) Now if you added a new Customer you need to ssh into the box as root and complete step 7 if not move to step 8 4) Once logged in type newaliases, this should come back with no errors 5) Type in su rancid 6) Now If you have added a new Customer run rancid-cvs, if you have only added a new device move to step 10, The output will be similar to the output below, not the errors (I need to still look into why these are happening but it still works for now so ignore them) [rancid@ran01 ~]$ rancid-cvs No conflicts created by this import ERROR(viewvc-loginfo): Bad arguments cvs checkout: Updating Group ERROR(viewvc-loginfo): Bad arguments Directory /usr/local/rancid/var/cvs/group/configs added to the repository cvs commit: Examining configs cvs add: scheduling file `router.db' for addition cvs add: use 'cvs commit' to add this file permanently RCS file: /usr/local/rancid/var/cvs/group/router.db,v Checking in router.db; /usr/local/rancid/var/cvs/group/router.db,v <-- router.db initial revision: 1.1 ERROR(viewvc-loginfo): Bad arguments
7 7) Now edit, and save, /usr/local/rancid/.cloginrc (This is a hidden file) entering the device details as required. Their are a number of examples in the file, but basic ally it would look like something below #Customername add method *.Customername ssh add user *.Customername username add password *.Customername userpassword enablepassword 8) Now edit, and save, /usr/local/rancid/var/clientname/router.db and add the device to be monitored in the following format, devicename :device type:up eg router:cisco:up 9) Now from the console that we still have open run clogin devicename, This will test that everything is right with the config, you should get enable prompt, it will also add the ssh key (if using ssh) to the /usr/local/rancid/.ssh/ known_hosts file 10) Now run rancid-run Groupname, this will go and collect the device config 11) Now if you browse to and login you should be able to navigate to your device and view its config, thats if everything worked of course How to run the same commands across multiple devices This outlines how to save a set of commands and then run this against multiple devices one by one. All commands need to be run as the rancid user 1) Create a file that the rancid user has access to that has a list of commands that you want to enter onto the device, you also need to also need to list any commands to get into config mode etc. Example below conf t username Fred password hxyksikheospolst^ privilege 15 end write mem 2) Now run the following command against all devices needed clogin -x /path/to/file.file device.name.in.rancid
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
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,
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 - [email protected] Download Zabbix http://www.zabbix.com/download.php
OS Installation: CentOS 5.8
OS Installation: CentOS 5.8 OpenTUSK Training University of Nairobi Mike Prentice [email protected] Tufts University Technology for Learning in the Health Sciences July 2013 Outline 1 OS Install
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
Newton Linux User Group Graphing SNMP with Cacti and RRDtool
Newton Linux User Group Graphing SNMP with Cacti and RRDtool Summary: Cacti is an interface that can be used to easily manage the graphing of SNMP data. These graphs allow you to visualize performance
Web Server using Apache. Heng Sovannarith [email protected]
Web Server using Apache Heng Sovannarith [email protected] Introduction The term web server can refer to either the hardware (the computer) or the software (the computer application) that helps
Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide
Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide Contents Installation: Ubuntu Linux 7.10 Gusty Gibbon:... 2 Installation: Redhat Enterprise 5 and Fedora 8 Linux:...
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,
RANCID and CVS. PacNOG 6 Nadi, Fiji
RANCID and CVS PacNOG 6 Nadi, Fiji Overview what is CVS? Version Control Systems: CVS Mercurial RCS Subversion RANCID works with CVS to as a version control system for network hardware configurations.
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
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
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
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,
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...................................
Embedded Based Web Server for CMS and Automation System
Embedded Based Web Server for CMS and Automation System ISSN: 2278 909X All Rights Reserved 2014 IJARECE 1073 ABSTRACT This research deals with designing a Embedded Based Web Server for CMS and Automation
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
See the installation page http://wiki.wocommunity.org/display/documentation/deploying+on+linux
Linux Installation See the installation page http://wiki.wocommunity.org/display/documentation/deploying+on+linux Added goodies (project Wonder) Install couple of more goodies from Wonder. I Installed
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.
Recommended File System Ownership and Privileges
FOR MAGENTO COMMUNITY EDITION Whenever a patch is released to fix an issue in the code, a notice is sent directly to your Admin Inbox. If the update is security related, the incoming message is colorcoded
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
SEAGATE BUSINESS NAS ACCESSING THE SHELL. February 1, 2014 by Jeroen Diel IT Nerdbox
SEAGATE BUSINESS NAS ACCESSING THE SHELL February 1, 2014 by Jeroen Diel IT Nerdbox P a g e 1 Table of Contents Introduction... 2 Technical specifications... 3 Gaining access to the shell... 4 Enable the
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
Getting an ipath server running on Linux
Getting an ipath server running on Linux Table of Contents Table of Contents... 2 1.0. Introduction... 3 2.0. Overview... 3 3.0. Installing Linux... 3 4.0. Installing software that ipath requires... 3
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
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
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,
ULTEO OPEN VIRTUAL DESKTOP V4.0
ULTEO OPEN VIRTUAL DESKTOP V4.0 MIGRATION GUIDE 28 February 2014 Contents Section 1 Introduction... 4 Section 2 Overview... 5 Section 3 Preparation... 6 3.1 Enter Maintenance Mode... 6 3.2 Backup The OVD
CommandCenter Secure Gateway
CommandCenter Secure Gateway Quick Setup Guide for CC-SG Virtual Appliance and lmadmin License Server Management This Quick Setup Guide explains how to install and configure the CommandCenter Secure Gateway.
Introduction... 1. Connecting Via FTP... 4. Where do I upload my website?... 4. What to call your home page?... 5. Troubleshooting FTP...
This guide is designed to show you the different ways of uploading your site using ftp, including the basic principles of understanding and troubleshooting ftp issues. P a g e 0 Introduction... 1 When
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
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 [email protected] OpenPro Installation
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
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
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
OpenDaylight & PacketFence install guide. for PacketFence version 4.5.0
OpenDaylight & PacketFence install guide for PacketFence version 4.5.0 OpenDaylight & PacketFence install guide by Inverse Inc. Version 4.5.0 - Oct 2014 Copyright 2014 Inverse inc. Permission is granted
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
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
How to Install SMTPSwith Mailer on Centos Server/VPS
How to Install SMTPSwith Mailer on Centos Server/VPS SMTPSwitch Mailer User Guide V4.0 SMTPSwitch Mailer is a web based email marketing software that runs on a web server or online server. An online server
User Manual of the Pre-built Ubuntu 9 Virutal Machine
SEED Document 1 User Manual of the Pre-built Ubuntu 9 Virutal Machine Copyright c 2006-2011 Wenliang Du, Syracuse University. The development of this document is funded by the National Science Foundation
Installation Instructions
Installation Instructions 25 February 2014 SIAM AST Installation Instructions 2 Table of Contents Server Software Requirements... 3 Summary of the Installation Steps... 3 Application Access Levels... 3
Raspberry Pi Webserver
62 Int'l Conf. Embedded Systems and Applications ESA'15 Raspberry Pi Webserver Max Runia 1, Kanwalinderjit Gagneja 1 1 Department of Computer Science, Southern Oregon University, Ashland, OR, USA Abstract
Cacti The ULTIMATE Management Solution
Cacti The ULTIMATE Management Solution Cacti SNMP Management Installation HOW-TO For Linux Author: Lee Carter Published: October 20 th 2004 Version 2 Updated November 1, 2004 Table of Contents Purpose...3
Parallels Plesk Automation
Parallels Plesk Automation Contents Get Started 3 Infrastructure Configuration... 4 Network Configuration... 6 Installing Parallels Plesk Automation 7 Deploying Infrastructure 9 Installing License Keys
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
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
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.
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
Click Studios. Passwordstate. Password Discovery, Reset and Validation. Requirements
Passwordstate Password Discovery, Reset and Validation Requirements This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise
BF2CC Daemon Linux Installation Guide
BF2CC Daemon Linux Installation Guide Battlefield 2 + BF2CC Installation Guide (Linux) 1 Table of contents 1. Introduction... 3 2. Opening ports in your firewall... 4 3. Creating a new user account...
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
MINIMUM INSTALLATION REQUIREMENTS Processor: RAM: Hard disk: Operating system: Others: Pentium 200 MHz. 64 MB. 80 MB free space. One of the following: Red Hat (version 7.0, 7.1, 7.2, 7.3, 8.0, 9 or Enterprise
HOWTO: Setting up WP7 monitoring tools with GLite
HOWTO: Setting up WP7 monitoring tools with GLite Paul Mealor October 2004 1 Downloads and installation 1.1 Unmodified WP7 work The EDG RPM repository can be reached from WP6 s website at http://marianne.in2p3.fr/.
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
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
Extending Remote Desktop for Large Installations. Distributed Package Installs
Extending Remote Desktop for Large Installations This article describes four ways Remote Desktop can be extended for large installations. The four ways are: Distributed Package Installs, List Sharing,
QuickBooks Enterprise Solutions. Linux Database Server Manager Installation and Configuration Guide
QuickBooks Enterprise Solutions Linux Database Server Manager Installation and Configuration Guide Copyright Copyright 2007 Intuit Inc. All rights reserved. STATEMENTS IN THIS DOCUMENT REGARDING THIRD-PARTY
Single Node Hadoop Cluster Setup
Single Node Hadoop Cluster Setup This document describes how to create Hadoop Single Node cluster in just 30 Minutes on Amazon EC2 cloud. You will learn following topics. Click Here to watch these steps
Using Cacti To Graph MySQL s Metrics
Using Cacti To Graph MySQL s Metrics Kenny Gryp [email protected] Principal Consultant @ Percona Collaborate 2011 1 Percona MySQL/LAMP Consulting MySQL Support Percona Server (XtraDB) Percona XtraBackup
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
Version Control with Subversion
Version Control with Subversion Introduction Wouldn t you like to have a time machine? Software developers already have one! it is called version control Version control (aka Revision Control System or
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
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
Written by: Johan Strand, Reviewed by: Chafic Nassif, Date: 2006-04-26. Getting an ipath server running on Linux
Getting an ipath server running on Linux Table of Contents Table of Contents... 2 1.0. Introduction... 3 2.0. Overview... 3 3.0. Installing Linux... 3 4.0. Installing software that ipath requires... 3
escan SBS 2008 Installation Guide
escan SBS 2008 Installation Guide Following things are required before starting the installation 1. On SBS 2008 server make sure you deinstall One Care before proceeding with installation of escan. 2.
Document Freedom Workshop 2012. DFW 2012: CMS, Moodle and Web Publishing
Document Freedom Workshop 2012 CMS, Moodle and Web Publishing Indian Statistical Institute, Kolkata www.jitrc.com (also using CMS: Drupal) Table of contents What is CMS 1 What is CMS About Drupal About
EVault Software. Course 361 Protecting Linux and UNIX with EVault
EVault Software Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers Used in
Connecting to the Firewall Services Module and Managing the Configuration
CHAPTER 3 Connecting to the Firewall Services Module and This chapter describes how to access the command-line interface and work with the configuration. This chapter includes the following sections: Connecting
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...
Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide
Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide July 2010 1 Specifications are subject to change without notice. The Cloud.com logo, Cloud.com, Hypervisor Attached Storage, HAS, Hypervisor
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
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
Implementing a Weblogic Architecture with High Availability
Implementing a Weblogic Architecture with High Availability Contents 1. Introduction... 3 2. Topology... 3 2.1. Limitations... 3 2.2. Servers diagram... 4 2.3. Weblogic diagram... 4 3. Components... 6
Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L
Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Introduction: This guide is written to help any person with little knowledge in AIX V5.3L to prepare the P Server
Integrating SAP BusinessObjects with Hadoop. Using a multi-node Hadoop Cluster
Integrating SAP BusinessObjects with Hadoop Using a multi-node Hadoop Cluster May 17, 2013 SAP BO HADOOP INTEGRATION Contents 1. Installing a Single Node Hadoop Server... 2 2. Configuring a Multi-Node
Tibbr Installation Addendum for Amazon Web Services
Tibbr Installation Addendum for Amazon Web Services Version 1.1 February 17, 2013 Table of Contents Introduction... 3 MySQL... 3 Choosing a RDS instance size... 3 Creating the RDS instance... 3 RDS DB
Fermilab Central Web Service Site Owner User Manual. DocDB: CS-doc-5372
Fermilab Central Web Service Site Owner User Manual DocDB: CS-doc-5372 1 Table of Contents DocDB: CS-doc-5372... 1 1. Role Definitions... 3 2. Site Owner Responsibilities... 3 3. Tier1 websites and Tier2
Building a Private Cloud Cloud Infrastructure Using Opensource
Cloud Infrastructure Using Opensource with Ubuntu Server 10.04 Enterprise Cloud (Eucalyptus) OSCON (Note: Special thanks to Jim Beasley, my lead Cloud Ninja, for putting this document together!) Introduction
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
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?
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
freesshd SFTP Server on Windows
freesshd SFTP Server on Windows Configuration Steps: Setting up the Bridgestone User ID... 2 Setup the freesshd Server... 3 Login as the Bridgestone User ID using WinSCP... 5 Create Default Bridgestone
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
Installation Manual for Grid Monitoring Tool
Installation Manual for Grid Monitoring Tool Project No: CDAC/B/SSDG/GMT/2004/025 Document No: SSDG/GMT/2004/025/INST-MAN/2.1 Control Status: Controlled (Internal Circulation Only) Author : Karuna Distribution
Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved.
Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved. Release date: August 28, 2014 This build was developed and tested on: -
Installing Platform RTM. Platform RTM Version 8.0.2 Release date: October 2011
Installing Platform RTM Platform RTM Version 8.0.2 Release date: October 2011 Copyright 1994-2011 Platform Computing Corporation. Although the information in this document has been carefully reviewed,
Build it with Drupal 8
Build it with Drupal 8 Comprehensive guide for building common websites in Drupal 8. No programming knowledge required! Antonio Torres This book is for sale at http://leanpub.com/drupal-8-book This version
Ansible. Configuration management tool and ad hoc solution. Marcel Nijenhof <[email protected]>
Ansible Configuration management tool and ad hoc solution Marcel Nijenhof Index Introduction Installing & configuration Playbooks Variables Roles Ansible galaxy Configuration management
GeBro-BACKUP. Die Online-Datensicherung. Manual Pro Backup Client on a NAS
GeBro-BACKUP Die Online-Datensicherung. Manual Pro Backup Client on a NAS Created and tested on a QNAP TS-559 Pro Firmware 4.0.2 Intel x86 Architecture Default hardware configuration OBM v6.15.0.0 Last
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.................................................
Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning
Livezilla How to Install on Shared Hosting By: Jon Manning This is an easy to follow tutorial on how to install Livezilla 3.2.0.2 live chat program on a linux shared hosting server using cpanel, linux
Adafruit's Raspberry Pi Lesson 7. Remote Control with VNC
Adafruit's Raspberry Pi Lesson 7. Remote Control with VNC Created by Simon Monk Last updated on 2013-06-17 07:15:23 PM EDT Guide Contents Guide Contents Overview Installing VNC Using a VNC Client Built
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
Lesson 7 - Website Administration
Lesson 7 - Website Administration If you are hired as a web designer, your client will most likely expect you do more than just create their website. They will expect you to also know how to get their
Installation and Control in Linux
IceWarp Unified Communications Installation and Control in Linux Version 11.3 Published on 9/1/2015 Contents IceWarp Server... 4 Before Installation... 5 Quick Installation Guide... 6 Running... 7 Installation
How to install PowerChute Network Shutdown on VMware ESXi 3.5, 4.0 and 4.1
How to install PowerChute Network Shutdown on VMware ESXi 3.5, 4.0 and 4.1 Basic knowledge of Linux commands and Linux administration is needed before user should attempt the installation of the software.
Upgrade Guide BES12. Version 12.1
Upgrade Guide BES12 Version 12.1 Published: 2015-02-25 SWD-20150413111718083 Contents Supported upgrade environments...4 Upgrading from BES12 version 12.0 to BES12 version 12.1...5 Preupgrade tasks...5
Running Knn Spark on EC2 Documentation
Pseudo code Running Knn Spark on EC2 Documentation Preparing to use Amazon AWS First, open a Spark launcher instance. Open a m3.medium account with all default settings. Step 1: Login to the AWS console.
