Software Deployment and Configuration
|
|
|
- Noel Powell
- 10 years ago
- Views:
Transcription
1 Software Deployment and Configuration Paul Anderson Division of Informatics University of Edinburgh
2 Configuration And Deployment! Configuration (in this context) is the process of customizing an instance of a software package for: A particular site A particular host A particular user (we will not address this)! Deployment involves the installation of the software, usually on multiple, remote hosts! Configuration can occur at different stages: Build (compile) time Deployment (install) time Runtime
3 Nightmare.tgz tgz! The package has an INSTALL script Runs unknown commands as root Expects an interactive dialog Edits inappropriate system files Installs a daemon! The package attempts to install files: In a directory which is mounted read-only For an inappropriate architecture Into an automount point! There is no way of identifying what has been installed, and no way or removing it ~paul/publications/workshop_report.pdf (1992!)
4 Summary! Choosing pathnames! Compile-time configuration! Packaging Package management tools Creating RPMs Install-time configuration! Deployment! Runtime configuration LCFG
5 Choosing Pathnames! Different areas of the filesystem have different properties: Local or network mounted (or an automount point) Single or shared architecture Read-only or read-write Small or large filesystem! Different pathnames will belong to different areas at different sites! Pathnames used at install time might not be the same as the pathnames used at runtime! When installing onto a read-only network drive When building RPMS (we don t have root access)
6 Pathname Standards! Filesystem Hierarchy Standard: Specifies guiding principles for each area of the filesystem Specifies the minimum files and directories required Enumerates exceptions to the principles Enumerates specific cases where there has been historical conflict! Individual sites or projects may have their own standards
7 Summary " Choosing pathnames! Compile-time configuration! Packaging Package management tools Creating RPMs Install-time configuration! Deployment! Runtime configuration LCFG
8 Compile-time Configuration! It is not always practical to allow everything to be configured dynamically at runtime Eg. Selecting a threading or non-threading library! Some parameters must be fixed at compile time! Compile-time configuration leads to multiple (different) versions of the binary package, and care is required to distinguish between these flavours.! Configuration should be part of the standard build process
9 Compile-time Tools! In simple, cases, storing configuration information in a single header file may be sufficient.! In a multi-package project, simple ad-hoc scripts might be used to substitute parameters from a common configuration file GNU autoconf is a tool based on an extensible set of m4 macros which can automatically detect many different aspects of the system. Discovered parameters can be used to generate C header files, or substituted in other text files User-supplied parameters can be included
10 Summary " Choosing pathnames " Compile-time configuration! Packaging Package management tools Creating RPMs Install-time configuration! Deployment! Runtime configuration LCFG
11 Packaging! A (good) packaging tool supports: Bundling of files into an archive format Recording of filenames to enable de-installation Handling of version numbers to support upgrading File conflict detection Dependency management Run-time dependencies Build-time dependencies Install-time dependencies Execution of pre/post install/de-install scripts
12 Package Management Issues! Full benefits are only gained if all the software on a system is handled by the same package management system On many platforms, this is not always possible (and required software may be unavailable in the necessary format)! Support for flavours is not well developed and usually involves encoding in the package filename.! Some or all files in a package may be relocatable so that a pathname prefix can be set at install time
13 Pre/Post Install Scripts! Pre/Post install scripts are a frequent source of installation problems. They should be avoided if possible. Otherwise: Ensure that actions taken at install time can be (and are) reversed at de-install time Do not modify files belonging to other packages In particular, do not modify system configuration files - /etc/passwd, /etc/inetd.conf, etc.. Do not assume the availability of user-interaction, or even a console device! If some modifications to the system-wide configuration are necessary is is useful to document these, and/or to provide a separate script.
14 Package Management Tools! RPM Manages all software packages on Redhat Linux systems GPT The Globus packaging tool Solaris pkgadd solaris_freeware/pkgadd.html! Conversion between some formats is possible automatically: Eg. GPT => RPM
15 RPM! An RPM package is created from: Packed source file (foo.tgz) Patches (foo1.patch) Spec file (foo.spec)! A single command can build the package: rpm -ba foo.spec! This creates a binary RPM with the architecture as a flavour in the filename: foo i386.rpm! It also creates a source RPM (SRPM) containing everything necessary to rebuild from the source: foo src.rpm
16 Creating RPMs! Creating RPMs involves Packaging sources into a tar file Writing a specfile Using rpm -ba! This process should be integrated with the build process It is useful to be able to reconstruct a whole set of RPMs from a CVS repository. This is possible, if each module supports, for example: make rpm! Building multiple package formats for the same package may be necessary to support multiple platforms
17 A Skeleton Specfile Summary:.. description Name: foo Version: 2.35 Release: 2 Source: foo-2.35.tgz %prep %setup foo-2.35.tgz %install make install %files /usr/bin/foo %build make
18 A Real Specfile (1) Summary: change protection on Zip disk Name: ziplock Version: 1 Release: 2 Copyright: GPL Group: Utilities/System Source: ziplock-1-2.tgz Packager: Paul Anderson<[email protected]> BuildRoot: /var/tmp/ziplock-build
19 A Real Specfile (2) %description This program... %prep %setup ziplock-1.2 %build make
20 A Real Specfile (3) %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/usr/bin mkdir -p $RPM_BUILD_ROOT/usr/man/man1 make install PREFIX=$RPM_BUILD_ROOT %files %defattr(-,root,root) %doc README ChangeLog TODO %doc /usr/man/man1/ziplock.1 /usr/bin/ziplock
21 Summary " Choosing pathnames " Compile-time configuration " Packaging Package management tools Creating RPMs Install-time configuration! Deployment! Runtime configuration LCFG
22 Installation! A binary RPM can be installed with a single command: rpm i foo i386.rpm! This: Validates prerequisite dependencies Checks for file conflicts Executes and pre-installs scripts Installs the files Records the installed files in a database Executes and post-install scripts! The rpm can later be removed with: rpm e foo
23 Deployment! Large-scale deployment tools will manage the packages on a cluster of machines by automatically scheduling installs, de-installs and the correct ordering for updates. Eg. updaterpms linux/updaterpms/index.html! The required package sets for each machine are specified in a central configuration file! Correct dependency information is important! Some tools will automatically monitor a repository for newer versions
24 Summary " Choosing pathnames " Compile-time configuration " Packaging Package management tools Creating RPMs Install-time configuration " Deployment! Runtime configuration LCFG
25 Run-time Configuration! Runtime configuration is typically performed by reading configuration files (Although, a program might also use external data sources such as LDAP)! Any configuration files deployed with the code can only be considered as a default because they usually need to contain hostspecific information! Normally, the local site will provide some way of populating these configuration files! Existing configuration files must not be overwritten when updating an RPM version!
26 LCFG! LCFG is a configuration framework developed At Edinburgh University and currently being used by the European DataGRID testbeds Site-wide configuration information is specified in a central configuration repository which is compiled into individual host profiles! The XML profiles are distributed to the clients over HTTP! Scripts on the clients substitute parameters from the profile into individual configuration files
27 An LCFG Template File # The name of the maildrop file mmdflfil:.mail # Hardcoded POP server name pophost: <%mhpop%> # List of smtp servers <%if:<%mhsmtp%>%><%else:%>#<%end:%> servers: <%mhsmtp%>
28 Dynamic Reconfiguration! LCFG will normally update configuration files as soon as a central configuration change occurs! Daemons must be prepared to reconfigure on-the-fly wherever possible, either on receipt of a signal, or by monitoring the configuration file for changes! Programs can access LCFG configuration information directly
29 Summary " Choosing pathnames " Compile-time configuration " Packaging Package management tools Creating RPMs Install-time configuration " Deployment " Runtime configuration LCFG
30 Some Key Points! Use (global or local) standard pathnames, but make them configurable! Integrate compile-time configuration and package construction with the build system! Distribute software in a standard package format! Avoid intrusive install scripts If changes are required to other parts of the system, allow the system manager flexibility in how this is achieved! Be prepared to reconfigure long-running processes on-the-fly
How to Build an RPM OVERVIEW UNDERSTANDING THE PROCESS OF BUILDING RPMS. Author: Chris Negus Editor: Allison Pranger 09/16/2011
How to Build an RPM Author: Chris Negus Editor: Allison Pranger 09/16/2011 OVERVIEW You have created some software that you want to install on Red Hat Enterprise Linux systems. Now that it is done, the
Linux Distributions. What they are, how they work, which one to choose. [email protected]> +55-11-2132-2327. Avi Alkalay <[email protected].
Linux Distributions What they are, how they work, which one to choose Avi Alkalay +55-11-2132-2327 Linux, Open Standards Consultant IBM Corporation Before You Start...
INF-110. GPFS Installation
INF-110 GPFS Installation Overview Plan the installation Before installing any software, it is important to plan the GPFS installation by choosing the hardware, deciding which kind of disk connectivity
Sun Grid Engine Package for OSCAR A Google SoC 2005 Project
Sun Grid Engine Package for OSCAR A Google SoC 2005 Project Babu Sundaram, Barbara Chapman University of Houston Bernard Li, Mark Mayo, Asim Siddiqui, Steven Jones Canada s Michael Smith Genome Sciences
OnCommand Performance Manager 1.1
OnCommand Performance Manager 1.1 Installation and Setup Guide For Red Hat Enterprise Linux NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501
How to build secure Apache Tomcat deployments with RPM.
How to build secure Apache Tomcat deployments with RPM. My security experiences really tie into everyday work. A colleague called me from my last gig and asked how to build a RedHat Package Manager (RPM)
OpenWBEM Getting Started Guide. Author: Dan Nuffer Last update: 12/09/04
OpenWBEM Getting Started Guide Author: Dan Nuffer Last update: 12/09/04 Table of Contents OpenWBEM Getting Started Guide...1 1. OpenWBEM Overview & Concepts...3 Genesis...3 Overview...3 Features...3 2.
Sophos Anti-Virus for Linux configuration guide. Product version: 9
Sophos Anti-Virus for Linux configuration guide Product version: 9 Document date: September 2015 Contents 1 About this guide...5 2 About Sophos Anti-Virus for Linux...6 2.1 What Sophos Anti-Virus does...6
DS License Server V6R2013x
DS License Server V6R2013x DS License Server V6R2013x Installation and Configuration Guide Contains JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 7 Contains IBM(R) 64-bit SDK for AIX(TM), Java(TM) Technology
Application Servers - BEA WebLogic. Installing the Application Server
Proven Practice Application Servers - BEA WebLogic. Installing the Application Server Product(s): IBM Cognos 8.4, BEA WebLogic Server Area of Interest: Infrastructure DOC ID: AS01 Version 8.4.0.0 Application
Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide
Acronis Backup & Recovery 10 Server for Linux Update 5 Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management
EMC NetWorker Module for Databases and Applications Release 1.0
EMC NetWorker Module for Databases and Applications Release 1.0 Installation Guide P/N 300-009-222 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright
IBM WebSphere Application Server Version 7.0
IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the
Automated Process Center Installation and Configuration Guide for UNIX
Automated Process Center Installation and Configuration Guide for UNIX Table of Contents Introduction... 1 Lombardi product components... 1 Lombardi architecture... 1 Lombardi installation options... 4
Managed Backup Service - Agent for Linux 6.00.2415- Release Notes
Managed Backup Service - Agent for Linux 6.00.2415- Release Notes 1 Managed Backup Service Agent for Linux Version 6.00.2415 Release Notes, 9 th June 2008 1 OVERVIEW This document contains release notes
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
Attix5 Pro Server Edition
Attix5 Pro Server Edition V7.0.3 User Manual for Linux and Unix operating systems Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved.
Copyright 2014, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com
Ve Version 3.4 Copyright 2014, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com We have attempted to make these documents complete, accurate, and useful, but we cannot guarantee them to be
ESX 4 Patch Management Guide ESX 4.0
ESX 4 Patch Management Guide ESX 4.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent
F-Secure Internet Gatekeeper
F-Secure Internet Gatekeeper TOC F-Secure Internet Gatekeeper Contents Chapter 1: Welcome to F-Secure Internet Gatekeeper...5 1.1 Features...6 Chapter 2: Deployment...8 2.1 System requirements...9 2.2
TIBCO Fulfillment Provisioning Session Layer for FTP Installation
TIBCO Fulfillment Provisioning Session Layer for FTP Installation Software Release 3.8.1 August 2015 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED
Application Management A CFEngine Special Topics Handbook
Application Management A CFEngine Special Topics Handbook CFEngine AS CFEngine is able to install, update and uninstall services and applications across all managed nodes in a platform-independent manner.
Linux+ Guide to Linux Certification, Third Edition. Chapter 11 Compression, System Backup, and Software Installation
Linux+ Guide to Linux Certification, Third Edition Chapter 11 Compression, System Backup, and Software Installation Objectives Outline the features of common compression utilities Compress and decompress
Acronis Backup & Recovery 10 Server for Linux. Installation Guide
Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management
EMC Documentum Content Services for SAP Repository Manager
EMC Documentum Content Services for SAP Repository Manager Version 6.0 Installation Guide P/N 300 005 500 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com
Sophos Anti-Virus for Linux configuration guide. Product version: 9
Sophos Anti-Virus for Linux configuration guide Product version: 9 Document date: September 2014 Contents 1 About this guide...8 2 About Sophos Anti-Virus for Linux...9 2.1 What Sophos Anti-Virus does...9
DS License Server. Installation and Configuration Guide. 3DEXPERIENCE R2016x
DS License Server Installation and Configuration Guide 3DEXPERIENCE R2016x Contains JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 8 Contains IBM(R) 64-bit SDK for AIX(TM), Java(TM) Technology Edition, Version
Oracle EXAM - 1Z0-102. Oracle Weblogic Server 11g: System Administration I. Buy Full Product. http://www.examskey.com/1z0-102.html
Oracle EXAM - 1Z0-102 Oracle Weblogic Server 11g: System Administration I Buy Full Product http://www.examskey.com/1z0-102.html Examskey Oracle 1Z0-102 exam demo product is here for you to test the quality
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
TIBCO Spotfire Statistics Services Installation and Administration Guide. Software Release 5.0 November 2012
TIBCO Spotfire Statistics Services Installation and Administration Guide Software Release 5.0 November 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH
Dynamic Kernel Module Support. Matt Domsch, Software Architect Dell, Inc.
Dynamic Kernel Module Support Matt Domsch, Software Architect Dell, Inc. Product Timelines v3 v4 v5 Which one(s) are your customers using today? Scheduled Updates / Service Pack 2 Driver Management Challenges
Pivotal HD Enterprise
PRODUCT DOCUMENTATION Pivotal HD Enterprise Version 1.1 Stack and Tool Reference Guide Rev: A01 2013 GoPivotal, Inc. Table of Contents 1 Pivotal HD 1.1 Stack - RPM Package 11 1.1 Overview 11 1.2 Accessing
24x7 Scheduler Multi-platform Edition 5.2
24x7 Scheduler Multi-platform Edition 5.2 Installing and Using 24x7 Web-Based Management Console with Apache Tomcat web server Copyright SoftTree Technologies, Inc. 2004-2014 All rights reserved Table
Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack
Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack By Kai Yu As a part of the Oracle Enterprise Manager s lifecycle management solutions, the Oracle Enterprise Manager Provisioning
MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.
Installation Guide for All Platforms 1 MarkLogic 8 February, 2015 Last Revised: 8.0-4, November, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Installation
Apache 2.0 Installation Guide
Apache 2.0 Installation Guide Ryan Spangler [email protected] http://ceut.uww.edu May 2002 Department of Business Education/ Computer and Network Administration Copyright Ryan Spangler 2002 Table of
Oracle Linux Advanced Administration
Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 40291196 Oracle Linux Advanced Administration Duration: 5 Days What you will learn This Oracle Linux Advanced Administration training is
Administration Guide - Documentum idataagent (DB2)
Page 1 of 65 Administration Guide - Documentum idataagent (DB2) TABLE OF CONTENTS OVERVIEW Introduction Key Features Supported Environments Full Range of Backup and Recovery Options Scheduling Efficient
TeamSite Templating Developer s Guide Release 5.5.1
TeamSite Templating Developer s Guide Release 5.5.1 1999-2002 Interwoven, Inc. All rights reserved. No part of this publication (hardcopy or electronic form) may be reproduced or transmitted, in any form
Automated build service to facilitate Continuous Delivery
MASTER S THESIS LUND UNIVERSITY 2015 Automated build service to facilitate Continuous Delivery Ture Karlsson Department of Computer Science Faculty of Engineering LTH ISSN 1650-2884 LU-CS-EX 2015-27 Automated
HP Business Availability Center
HP Business Availability Center for the Windows and Solaris operating systems Software Version: 8.05 Business Process Monitor Administration Document Release Date:September 2010 Software Release Date:
Acronis Backup & Recovery 10 Server for Linux. Installation Guide
Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of Contents 1. Installation of Acronis Backup & Recovery 10... 3 1.1. Acronis Backup & Recovery 10 components... 3 1.1.1. Agent for
TIBCO Runtime Agent Authentication API User s Guide. Software Release 5.8.0 November 2012
TIBCO Runtime Agent Authentication API User s Guide Software Release 5.8.0 November 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED
WebSphere Business Monitor V7.0 Configuring a remote CEI server
Copyright IBM Corporation 2010 All rights reserved WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should be able to do... 2 Introduction... 3 Part 1: Install
Java POS (Java for Retail POS) README FILE for the Wincor Nixdorf JavaPOS Package
Java POS (Java for Retail POS) README FILE for the Wincor Nixdorf JavaPOS Package ------------------------------------------------------------------------------------------------------------- Java for
Change Manager 5.0 Installation Guide
Change Manager 5.0 Installation Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.
Setting Up a CLucene and PostgreSQL Federation
Federated Desktop and File Server Search with libferris Ben Martin Abstract How to federate CLucene personal document indexes with PostgreSQL/TSearch2. The libferris project has two major goals: mounting
HP Enterprise Integration module for SAP applications
HP Enterprise Integration module for SAP applications Software Version: 2.50 User Guide Document Release Date: May 2009 Software Release Date: May 2009 Legal Notices Warranty The only warranties for HP
Novell ZENworks 10 Configuration Management SP3
AUTHORIZED DOCUMENTATION Software Distribution Reference Novell ZENworks 10 Configuration Management SP3 10.3 November 17, 2011 www.novell.com Legal Notices Novell, Inc., makes no representations or warranties
Managing your Red Hat Enterprise Linux guests with RHN Satellite
Managing your Red Hat Enterprise Linux guests with RHN Satellite Matthew Davis, Level 1 Production Support Manager, Red Hat Brad Hinson, Sr. Support Engineer Lead System z, Red Hat Mark Spencer, Sr. Solutions
VERITAS NetBackup Bare Metal Restore 6.0
VERITAS NetBackup Bare Metal Restore 6.0 System Administrator s Guide for UNIX, Windows, and Linux N15279C September 2005 Disclaimer The information contained in this publication is subject to change without
TIBCO Hawk SNMP Adapter Installation
TIBCO Hawk SNMP Adapter Installation Software Release 4.9.0 November 2012 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR
ITG Software Engineering
IBM WebSphere Administration 8.5 Course ID: Page 1 Last Updated 12/15/2014 WebSphere Administration 8.5 Course Overview: This 5 Day course will cover the administration and configuration of WebSphere 8.5.
Managed File Transfer with Universal File Mover
Managed File Transfer with Universal File Mover Roger Lacroix [email protected] http://www.capitalware.com Universal File Mover Overview Universal File Mover (UFM) allows the user to combine
On premise upgrade guide (to 3.3) XperiDo for Microsoft Dynamics CRM
On premise upgrade guide (to 3.3) XperiDo for Microsoft Dynamics CRM Last updated: 12-02-2015 Table of contents Table of contents... 2 1 Beginning... 4 1.1 Prerequisites and required files... 4 1.2 Support
Red Hat Enterprise Linux Rebuild mini-howto
Red Hat Enterprise Linux Rebuild mini-howto Michael Redinger [email protected] This document describes how to build a Linux server based on the SRPMS from Red Hat Enterprise Linux 2.1. Table
VMware Identity Manager Connector Installation and Configuration
VMware Identity Manager Connector Installation and Configuration VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until the document
Sophos Anti-Virus for Linux user manual
Sophos Anti-Virus for Linux user manual Product version: 7 Document date: January 2011 Contents 1 About this manual...3 2 About Sophos Anti-Virus for Linux...4 3 On-access scanning...7 4 On-demand scanning...10
TIBCO Spotfire Statistics Services Installation and Administration
TIBCO Spotfire Statistics Services Installation and Administration Software Release 7.0 February 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE.
Teamcenter 10.1. Installation on Windows Servers Guide. Publication Number PLM00013 J
Teamcenter 10.1 Installation on Windows Servers Guide Publication Number PLM00013 J Proprietary and restricted rights notice This software and related documentation are proprietary to Siemens Product Lifecycle
Symantec Mail Security for Domino
Getting Started Symantec Mail Security for Domino About Symantec Mail Security for Domino Symantec Mail Security for Domino is a complete, customizable, and scalable solution that scans Lotus Notes database
TCB No. 2012-008 September 2012. Technical Bulletin. GS FLX+ System & GS FLX System. Installation of 454 Sequencing System Software v2.
TCB No. 2012-008 September 2012 Technical Bulletin GS FLX+ System & GS FLX System Installation of 454 Sequencing System Software v2.8 Summary This document describes how to upgrade the 454 Sequencing System
Installing MooseFS Step by Step Tutorial
Installing MooseFS Step by Step Tutorial Michał Borychowski MooseFS Support Manager [email protected] march 2010 Gemius SA Overview... 3 MooseFS install process on dedicated machines... 3 Master server
SMRT Analysis Software Installation (v2.3.0)
SMRT Analysis Software Installation (v2.3.0) Introduction This document describes the basic requirements for installing SMRT Analysis v2.3.0 on a customer system. SMRT Analysis is designed to be installed
External Data Connector (EMC Networker)
Page 1 of 26 External Data Connector (EMC Networker) TABLE OF CONTENTS OVERVIEW SYSTEM REQUIREMENTS INSTALLATION (WINDOWS) INSTALLATION (UNIX) GETTING STARTED Perform a Discovery Perform a Migration ADVANCED
v7.1 Technical Specification
v7.1 Technical Specification Copyright 2011 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,
JobScheduler Installation by Copying
JobScheduler - Job Execution and Scheduling System JobScheduler Installation by Copying Deployment of multiple JobSchedulers on distributed servers by copying a template JobScheduler March 2015 March 2015
3.14. 3.14 Training on Linux System Administration, LPI Certification Level 1
165 3.14 Training on Linux System Administration, LPI Certification Level 1 Name of the Tool: Source: Usage: Description: GIZ This training has been designed for IT experts and institutions desired to
Desktop Central Managing Windows Computers in WAN
Overview ManageEngine Desktop Central is Web-Based windows desktop administration software that helps administrators to effectively manage the desktops from a central point. It provides Software Deployment,
inforouter V8.0 Server & Client Requirements
inforouter V8.0 Server & Client Requirements Please review this document thoroughly before proceeding with the installation of inforouter Version 8. This document describes the minimum and recommended
Kaseya Server Instal ation User Guide June 6, 2008
Kaseya Server Installation User Guide June 6, 2008 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's
Reflection DBR USER GUIDE. Reflection DBR User Guide. 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.
Reflection DBR USER GUIDE 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.net Page 1 of 1 Table of Contents Overview 3 Reflection DBR Client and Console Installation 4
s@lm@n Oracle Exam 1z0-102 Oracle Weblogic Server 11g: System Administration I Version: 9.0 [ Total Questions: 111 ]
s@lm@n Oracle Exam 1z0-102 Oracle Weblogic Server 11g: System Administration I Version: 9.0 [ Total Questions: 111 ] Oracle 1z0-102 : Practice Test Question No : 1 Which two statements are true about java
Application Note. Cacti monitoring. Document version: v1.0 Last update: 8th November 2013
Application Note Document version: v1.0 Last update: 8th November 2013 Purpose Monitor your ALOHA Load-Balancer with Cacti Complexity Versions concerned Aloha 4.2 and above Changelog 2013-10-03: Initial
Polarion Application Lifecycle Management Platform. Installation Guide for Microsoft Windows
Polarion Application Lifecycle Management Platform Installation Guide for Microsoft Windows Version: 2015 SR1 Polarion Application Lifecycle Management Platform Installation Guide for Microsoft Windows
Postgres Enterprise Manager Installation Guide
Postgres Enterprise Manager Installation Guide January 22, 2016 Postgres Enterprise Manager Installation Guide, Version 6.0.0 by EnterpriseDB Corporation Copyright 2013-2016 EnterpriseDB Corporation. All
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,
TIBCO Administrator User s Guide. Software Release 5.7.1 March 2012
TIBCO Administrator User s Guide Software Release 5.7.1 March 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS SOLELY
Wavelink Avalanche Mobility Center Linux Reference Guide
Wavelink Avalanche Mobility Center Linux Reference Guide Version 5.0 amc-rg-linux-50-20100621 Revised 21/6/2010 ii Copyright 2010 by Wavelink Corporation All rights reserved. Wavelink Corporation 6985
Oracle VM Manager Template. An Oracle White Paper February 2009
Oracle VM Manager Template An Oracle White Paper February 2009 Oracle VM Manager Template Using the Oracle VM Manager Template to manage Oracle VM servers. Oracle VM is Oracle's own x86/x86-64 server virtualization
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,
INT322. By the end of this week you will: (1)understand the interaction between a browser, web server, web script, interpreter, and database server.
Objective INT322 Monday, January 19, 2004 By the end of this week you will: (1)understand the interaction between a browser, web server, web script, interpreter, and database server. (2) know what Perl
Enterprise Reporting Server v3.5
Enterprise Reporting Server v3.5 Administrator s Guide January 2001 Edition 2001 WebTrends Corporation Disclaimer WebTrends Corporation makes no representations or warranties with respect to the contents
DS License Server. Installation and Configuration Guide. 3DEXPERIENCE R2014x
DS License Server Installation and Configuration Guide 3DEXPERIENCE R2014x Contains JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 7 Contains IBM(R) 64-bit SDK for AIX(TM), Java(TM) Technology Edition, Version
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
bbc Installing and Deploying LiveCycle ES2 Using JBoss Turnkey Adobe LiveCycle ES2 November 30, 2011 Version 9
bbc Installing and Deploying LiveCycle ES2 Using JBoss Turnkey Adobe LiveCycle ES2 November 30, 2011 Version 9 2011 Adobe Systems Incorporated and its licensors. All rights reserved. Installing and Deploying
10 STEPS TO YOUR FIRST QNX PROGRAM. QUICKSTART GUIDE Second Edition
10 STEPS TO YOUR FIRST QNX PROGRAM QUICKSTART GUIDE Second Edition QNX QUICKSTART GUIDE A guide to help you install and configure the QNX Momentics tools and the QNX Neutrino operating system, so you can
Specops Command. Installation Guide
Specops Software. All right reserved. For more information about Specops Command and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Command is a trademark owned by Specops
vfabric Web Server Installation and Configuration
vfabric Web Server Installation and Configuration VMware vfabric Web Server 5.2 VMware vfabric Suite 5.2 This document supports the version of each product listed and supports all subsequent versions until
SIEMENS. Teamcenter 11.2. Windows Server Installation PLM00013 11.2
SIEMENS Teamcenter 11.2 Windows Server Installation PLM00013 11.2 Contents Part I: Getting started with Teamcenter server installation Requirements and overview.............................................
BrightStor ARCserve Backup for Linux
BrightStor ARCserve Backup for Linux Agent for MySQL Guide r11.5 D01213-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the end user's
IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide
IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide Note Before using
TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual
TIBCO Spotfire Web Player 6.0 Installation and Configuration Manual Revision date: 12 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED
