Request Tracker/RTx::AssetTracker at DigitalGlobe

Size: px
Start display at page:

Download "Request Tracker/RTx::AssetTracker at DigitalGlobe"

Transcription

1 Request Tracker/RTx::AssetTracker at DigitalGlobe Introduction This document explores the process of implementing an enterprise Help Desk/Asset Management system at DigitalGlobe. This includes a discussion of how the software was chosen, the features of the software, customizations, reporting and asset management. Background Request Tracker is an open-source Help Desk Management product which is available from Best Practical Software ( Request Tracker has an install base at over sites around the world and provides many features which are only available in proprietary COTS applications, e.g. TrackIt, Remedy, etc. Request Tracker has been in use at DigitalGlobe since July, 2002 and one year ago there were processed tickets in the database. However, the older release of the software had many limitations and several alternatives were being explored in the fall of However, the release which DigitalGlobe is now using had many new features which made Request Tracker a viable product for continual use at DigitalGlobe. The new features included: 1. Addition of custom fields for ticket categorization. 2. A new and cleaner user interface. 3. Some reporting capabilities via the add-on extension RTx::Statistics. 4. The Asset Management extension called RTx::AssetTracker. 5. Improvements in the database structure to increase performance. 6. The ability to link tickets and to link tickets to assets and assets to assets. 7. Improved API which allows for easier creation of add-on modules. Because of the added features, and DigitalGlobe already had an investment in Request Tracker, it made logical sense to continue using Request Tracker with the added features. Also, the added feature of custom fields, reporting and asset management increased the viability for this product. Finally, remaining with Request Tracker reduced the need for training and additional effort which would have been required if DigitalGlobe moved to a different product. Implementing Request Tracker V3 and RTx::AssetTracker After a short design stage for the desired custom fields and queues for Request Tracker tickets, it was a short three week effort to get a prototype of Request Tracker operational. This stage included implementation of Apache V2.0.55, MySQL , mod_perl2, Perl 5.8.6, approximately 100 Perl CPAN libraries and Request Tracker Best Practical provided a tool to convert the old Request Tracker database to Request Tracker V In addition, the RTx::AssetTracker and RTx::Statistics modules were also included in the implementation. Finally, a detailed document was created to describe the entire upgrade/implementation process. The installation guide was essential for a successful upgrade of Request Tracker. During the prototype testing phase, a replacement Help Desk system was constructed and the same software products were implemented on the new system. One of the major tests was running the database conversion in the prototype environment, which provided us with an estimated time to convert the database to the new environment. By using the prototype environment, and relaying on the installation guide, we were able to migrate to the new version of 1

2 Request Tracker, with the converted database, in approximately 4 hours. This conversion occurred on 21 December, 2005, and except for a few minor issues, went flawlessly. The second phase of the project was to implement RTx::AssetTracker. This effort mostly required defining custom fields, asset types, asset categories and standards. RTx::AssetTracker essentially was an empty slate, so we had the ability to create an entire Asset Management system from the ground up. In addition to defining the environment, developing custom fields, etc., there were improvements made to RTx::AssetTracker which were for the benefit of DigitalGlobe. These new additions included: 1. Scripts to collect configuration information from UNIX/Linux systems. The scripts would report on changes made to a UNIX/Linux asset and had the capability of various asset custom fields, as appropriate. 2. We created a number of spreadsheets to initially load our assets. The spreadsheets matched the record layout for our assets, including the custom fields. Once the spreadsheets were scrutinized and data verified, a script was created to load the data into the database. The data load script allowed us to load approximately 500 assets in less than 5 minutes. 3. Adding a feature which can display links between assets in a graphic format. This was useful for pictorially representing links between assets. Using a phased approach, RTx::AssetTracker was completely implemented by 1 April, The final phase of the project was to create a decent reporting environment. Using RTx::Statistics and user contributed code, we were able to create several reports for the benefit of IS management and staff. The reporting system includes: 1. Web based reports which display open, resolved, rejected and stalled tickets, by Request Tracker queues. A feature was added to also display the number of tickets opened at any given day in time, called Queue Depth. 2. A spreadsheet version of the report above is generated and ed to the IS Director on a monthly basis. 3. A text file version of the report above, so it can be ed on a weekly and monthly basis. This reports is ed to the IS Management Team. 4. A text file report, which is sent to each member of IS, lists tickets each IS team member has opened (working on). 5. A consolidated text file report listing each IS team member s opened tickets, by Request Tracker queue. This report is ed to the IS Management Team. 6. A text file report lists the number of tickets resolved by each IS team member, within each Request Tracker queue. This report is ed to the IS Management Team. 7. A spreadsheet is generated which lists the number of assets by DG string and several asset type metrics. This report is sent to the IS Director. Also, a text based reports is generated at the same time which lists assets which may have incomplete records. The reporting phase involved creating reports on an on request basis and the report development; therefore, most of the report creation effort was completed in October,

3 Issues Encountered Generally, Request Tracker been running smoothly and there was little difficulty with implementing, customizing or with day-to-day use of the application. However, there were some issues which made making customizations rather challenging. These issues include: 1. Lack of technical documentation provided by Best Practical. 2. For what documentation that does exist, it is limited in scope. 3. Within the Request Tracker provided Perl libraries there is limited documentation concerning the use of various library functions provided within the software. 4. Programming reports or new functions proved challenging because of the limited documentation available. 5. The Request Tracker user support mailing proved useful for about 70% of the questions posed to it; the remaining 30% going unanswered. These issues did not prevent implementation of the customizations, but they did increase the time for completing a programming task. As for operational issues, we have had an ongoing problem with sometimes tickets not being written to the database. After extensive research, it was determined that this problem was caused by an assumption made within the Request Tracker software. The assumption made is that if an individual is logged into Request Tracker, the software assumes the user has a connection to the database to perform a transaction. However, if their network connection is disrupted (moving a laptop for example), then MySQL will close the MySQL connection. Then, when the user attempts a write transaction to the database, they will not be able to create a new ticket, because they no longer have a database connection. Unfortunately, Request Tracker does not verify that a valid MySQL connection is active and will process the transaction, sending out notification , etc. The end result is that the ticket never was written to the database, which forces the requestor to reenter the ticket. To deal with this issue, a warning was placed on the main Request Tracker web pages to warn users to log out of Request Tracker, before relocating their laptop. Finally, one of the major drawbacks to Request Tracker is it lacks the ability to support required custom fields and it cannot verify data entered into custom fields. In a future release this capability will only be available to privileged users and not the general user community. DigitalGlobe has implemented Request Tracker so we do not have to provide Request Tracker accounts to every user. If we did, then from a security standpoint, we would have to maintain privileges on a per user basis to limit what an individual can and cannot do it the software. Because of the maintenance overhead, we chose a model which allows users to enter tickets via a non-privileged Request Tracker account. However, in the next release required custom field and custom field checking is not available to unprivileged users. We are addressing this issue by creating a Web cgi form which will provide the user a method to enter tickets, but also be required to enter values in required custom fields. A prototype is now available and could be implemented in the near future. 3

4 Request Tracker Internals As mentioned previously, Request Tracker is a web based Help Desk Management System. It has the capability to take input from both web forms and via . Interface The interface is very simple. A user mails a ticket to a designated Help Desk address. An alias is set up in /etc/alias on the Linux host running Request Tracker to direct the ticket to the desired queue using the Request Tracker provided tool call rt-mailgate. When Request Tracker receives the ticket, it will place it in the proper queue and send out a notification to the requestor and to IS staff members who are responsible for designated Request Tracker queue. Web Interface In the case of the web interface, the software becomes more decisively complicated. The user logs into Request Tracker either as a regular user or a guest user. They enter the information they desire for the ticket content and submit the ticket for processing. Request Tracker will insert the ticket in the proper queue and via rt-mailgate send out a notification to the requestor and to IS staff members who are responsible for designated Request Tracker queue. The Complexity of Request Tracker Request Tracker is implemented using a multi-tiered model. At the lowest level is the MySQL database. The Perl CPAN Library DBI::SearchBuilder is used to communicate directly with MySQL and the Request Tracker database. The next level above, Request Tracker employs a series of Perl libraries which communicate with DBI::SearchBuilder. On the next level above, the Perl::Mason library is used to communicate between the web interface and the appropriate Perl Library. Perl::Mason, on the next level, is a library which caches Perl code in order to increase run time performance. Because Perl is an interpretive language, Perl::Mason s ability to cache Perl code to allow it to run as near executable speeds. The Perl::Mason environment interoperates with the Apache web server and the mo2_perl extension, on the next higher level. Finally, at the top level is the Request Tracker web interface which interfaces with Apache and mod_perl2. 4

5 The following is a model of what is described in the previous paragraph: Conclusion This short paper has summarized what has been accomplished over a year long process. It briefly discussed the history behind Request Tracker at DigitalGlobe. It discussed the upgrade of Request Tracker, the implementation of RTx:AssetTracker and the implementation of reporting. It further discusses issues encountered with the implementation and finally describes the internal structure of Request Tracker. Additional information about Request Tracker/RTx::AssetTracker is available at \\cofs1\bu\ops\is\documentation\request Tracker-AssetTracker (Helpdesk) and at 5

Request Tracker User s Guide. : Describes the User Interface and usage of Request Tracker V3.

Request Tracker User s Guide. : Describes the User Interface and usage of Request Tracker V3. Request Tracker User s Guide Abstract : Describes the User Interface and usage of Request Tracker V3. Issue : 05 Date : 08/27/2007 Document History Issue Author(s) Date Description Change 1 N. Metrowsky

More information

Simplifying Your IT Helpdesk with Request Tracker

Simplifying Your IT Helpdesk with Request Tracker Simplifying Your IT Helpdesk with Request Tracker Abstract Jay Lee Network / Systems Administrator Sali Kaceli Manager of Academic Computing Philadelphia Biblical University Information Technology Department

More information

Information Systems Application Administration Manual Request Tracker

Information Systems Application Administration Manual Request Tracker Information Systems Application Administration Manual Request Tracker Abstract : Describes all administration- and operationsrelated information for the DigitalGlobe implementation of Request Tracker V3.

More information

Nick Metrowsky. 3624 Oakwood Drive Longmont CO 80503-7560 nmetro@sgsosu.net 720-340-4546 http://www.sgsosu.net/nmetro http://www.sgsosu.

Nick Metrowsky. 3624 Oakwood Drive Longmont CO 80503-7560 nmetro@sgsosu.net 720-340-4546 http://www.sgsosu.net/nmetro http://www.sgsosu. Nick Metrowsky 3624 Oakwood Drive Longmont CO 80503-7560 nmetro@sgsosu.net 720-340-4546 http://www.sgsosu.net/nmetro http://www.sgsosu.net SUMMARY SPECIALTIES I am a seasoned Information Technology professional

More information

How To Create A Ticketing System With Rt.Org

How To Create A Ticketing System With Rt.Org Ticketing Systems with RT Jonathan Brewer Network Startup Resource Center jon@nsrc.org These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license (http://creativecommons.org/licenses/by-nc/4.0/)

More information

IT Support Tracking with Request Tracker (RT)

IT Support Tracking with Request Tracker (RT) IT Support Tracking with Request Tracker (RT) Archibald Steiner AfNOG 2013 LUSAKA Overview What is RT? A bit of terminology Demonstration of the RT web interface Behind the scenes configuration options

More information

Ticketing Systems with RT

Ticketing Systems with RT Network Management & Monitoring Ticketing Systems with RT These materials are licensed under the Creative Commons Attribution-Noncommercial 3.0 Unported license (http://creativecommons.org/licenses/by-nc/3.0/)

More information

Network Management & Monitoring Ticketing Systems with RT

Network Management & Monitoring Ticketing Systems with RT Network Management & Monitoring Ticketing Systems with RT These materials are licensed under the Creative Commons Attribution-Noncommercial 3.0 Unported license (http://creativecommons.org/licenses/by-nc/3.0/)

More information

Red Hat Network Satellite Management and automation of your Red Hat Enterprise Linux environment

Red Hat Network Satellite Management and automation of your Red Hat Enterprise Linux environment Red Hat Network Satellite Management and automation of your Red Hat Enterprise Linux environment WHAT IS IT? Red Hat Network (RHN) Satellite server is an easy-to-use, advanced systems management platform

More information

Red Hat Satellite Management and automation of your Red Hat Enterprise Linux environment

Red Hat Satellite Management and automation of your Red Hat Enterprise Linux environment Red Hat Satellite Management and automation of your Red Hat Enterprise Linux environment WHAT IS IT? Red Hat Satellite server is an easy-to-use, advanced systems management platform for your Linux infrastructure.

More information

Simplifying power management in virtualized data centers

Simplifying power management in virtualized data centers Simplifying power management in virtualized data centers Eaton Intelligent Power Manager plug-in for VMware s vcenter Server integrates virtualization and power management Server virtualization enables

More information

Using the QualysGuard Ticket Notification Engine (TNE) to Integrate with Remedy Ticketing Systems (v1.0)

Using the QualysGuard Ticket Notification Engine (TNE) to Integrate with Remedy Ticketing Systems (v1.0) Using the QualysGuard Ticket Notification Engine (TNE) to Integrate with Remedy Ticketing Systems (v1.0) Overview There are a myriad of ticket systems available to customers for operational incident management

More information

Why Test ITSM Applications for Performance? Webinar

Why Test ITSM Applications for Performance? Webinar Why Test ITSM Applications for Performance? Webinar Agenda What is performance testing? Why test ITSM for performance Testing? What are the ITSM modules that need performance testing? What are the use

More information

Network Management & Monitoring Request Tracker (RT) Installation and Configuration

Network Management & Monitoring Request Tracker (RT) Installation and Configuration Network Management & Monitoring Request Tracker (RT) Installation and Configuration Notes: Commands preceded with "$" imply that you should execute the command as a general user - not as root. Commands

More information

Ticketing Systems and Documentation

Ticketing Systems and Documentation Ticketing Systems and Documentation APRICOT 2009 February 20 Hervey Allen Why Ticketing Systems? Remember this? - Monitoring - Data collection - Accounting Notifications - Change control & monitoring -

More information

COSMO BUGZILLA tutorial. Cosmin BARBU Massimo MILELLI

COSMO BUGZILLA tutorial. Cosmin BARBU Massimo MILELLI COSMO BUGZILLA tutorial Cosmin BARBU Massimo MILELLI COSMO BUGZILLA: A BRIEF TUTORIAL INDEX What is bugzilla?...1 How do I gain access?...2 How do I change my account settings?...5 How are bugs organized?...6

More information

SMT v4.0 Users Guide (Linux version)

SMT v4.0 Users Guide (Linux version) SMT v4.0 Users Guide (Linux version) Table of Contents 1. Manage Customer Billing 2. Provision Web Services a. Add a virtual host b. Password protect a directory c. Enable virtual host logs d. Change password

More information

Statement of Service Enterprise Services - MANAGE Microsoft IIS

Statement of Service Enterprise Services - MANAGE Microsoft IIS Statement of Service Enterprise Services - MANAGE Microsoft IIS Customer Proprietary Rights The information in this document is confidential to Arrow Managed Services, Inc. and is legally privileged. The

More information

Microsoft Hyper-V Powered by Rackspace & Microsoft Cloud Platform Powered by Rackspace Support Services Terms & Conditions

Microsoft Hyper-V Powered by Rackspace & Microsoft Cloud Platform Powered by Rackspace Support Services Terms & Conditions Microsoft Hyper-V Powered by Rackspace & Microsoft Cloud Platform Powered by Rackspace Support Services Terms & Conditions Your use of the Microsoft Hyper-V Powered by Rackspace or Microsoft Cloud Platform

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions Course 20532A: Developing Microsoft Azure Solutions Page 1 of 7 Developing Microsoft Azure Solutions Course 20532A: 4 days; Instructor-Led Introduction This course is intended for students who have experience

More information

Developing Microsoft Azure Solutions 20532A; 5 days

Developing Microsoft Azure Solutions 20532A; 5 days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Developing Microsoft Azure Solutions 20532A; 5 days Course Description This

More information

Enterprise IT is complex. Today, IT infrastructure spans the physical, the virtual and applications, and crosses public, private and hybrid clouds.

Enterprise IT is complex. Today, IT infrastructure spans the physical, the virtual and applications, and crosses public, private and hybrid clouds. ENTERPRISE MONITORING & LIFECYCLE MANAGEMENT Unify IT Operations Enterprise IT is complex. Today, IT infrastructure spans the physical, the virtual and applications, and crosses public, private and hybrid

More information

Vistara Lifecycle Management

Vistara Lifecycle Management Vistara Lifecycle Management Solution Brief Unify IT Operations Enterprise IT is complex. Today, IT infrastructure spans the physical, the virtual and applications, and crosses public, private and hybrid

More information

Table of Contents INTRODUCTION...2 HOME PAGE...3. Announcements... 6 Personalize... 7 Reminders... 9 Recent Items... 11 SERVICE CATALOG...

Table of Contents INTRODUCTION...2 HOME PAGE...3. Announcements... 6 Personalize... 7 Reminders... 9 Recent Items... 11 SERVICE CATALOG... Table of Contents INTRODUCTION...2 HOME PAGE...3 Announcements... 6 Personalize... 7 Reminders... 9 Recent Items... 11 SERVICE CATALOG...12 REQUEST...14 Request List View... 15 Creating a New Incident...

More information

Dell World Software User Forum 2013

Dell World Software User Forum 2013 Dell World Software User Forum 2013 December 9-12 Austin, TX Improving End-User Support with the K1000 Service Desk Presenter: Carl Keller /Jillian Salamon What is End User Support? Seamless High Quality

More information

identity management in Linux and UNIX environments

identity management in Linux and UNIX environments Whitepaper identity management in Linux and UNIX environments EXECUTIVE SUMMARY In today s IT environments everything is growing, especially the number of users, systems, services, applications, and virtual

More information

itop: the open-source ITSM solution

itop: the open-source ITSM solution itop: the open-source ITSM solution itop is a multi-client web portal designed for service providers and businesses. Simple and easy to use, it allows all configuration items and their relationships to

More information

Mary E. Shacklett President Transworld Data

Mary E. Shacklett President Transworld Data Transworld Data Mary E. Shacklett President Transworld Data For twenty-five years, Transworld Data has performed technology analytics, market research and IT consulting on every world continent, including

More information

Managing and Maintaining Windows Server 2008 Servers

Managing and Maintaining Windows Server 2008 Servers Managing and Maintaining Windows Server 2008 Servers Course Number: 6430A Length: 5 Day(s) Certification Exam There are no exams associated with this course. Course Overview This five day instructor led

More information

Table of Contents INTRODUCTION... 2 HOME PAGE... 3. Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG...

Table of Contents INTRODUCTION... 2 HOME PAGE... 3. Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG... Table of Contents INTRODUCTION... 2 HOME PAGE... 3 Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG... 11 Raising a Service Request... 12 Edit the Service Request...

More information

Unifying IT How Dell Is Using BMC

Unifying IT How Dell Is Using BMC Unifying IT Management: How Dell Is Using BMC Software to Implement ITIL ABSTRACT Companies are looking for ways to maximize the efficiency with which they plan, deliver, and manage technology services.

More information

Course 20532B: Developing Microsoft Azure Solutions

Course 20532B: Developing Microsoft Azure Solutions Course 20532B: Developing Microsoft Solutions Five Days, Instructor-Led About this Course This course is intended for students who have experience building vertically scaled applications. Students should

More information

About: Our Client - GFT About: equadriga Situation

About: Our Client - GFT About: equadriga Situation About: Our Client - GFT GFT Technologies AG (www.gft.com) has it s headquarter in Germany and over 22 offices in 7 different countries, and with customers based in over 30 different countries. GFT employs

More information

Chapter 3 Technology adapted

Chapter 3 Technology adapted Chapter 3 Technology adapted 3.1 Introduction In developing a web enabled solution for laboratory data and document management, there are several options available for system analysis and designing, documentation

More information

Content Server Installation Guide

Content Server Installation Guide Content Server Installation Guide Version 5.3 SP3 July 2006 Copyright 1994-2006 EMC Corporation. All rights reserved. Table of Contents Preface... 11 Chapter 1 Server Installation Quick Start... 13 Installing

More information

Information Systems Change Management and Control

Information Systems Change Management and Control Information Systems Change Management and Control (Sample Document - Not for Distribution) Copyright 1996-2012 Management Systems Consulting, Inc. Table of Contents Page 1.0 Procedure Description... 1

More information

Information Technology Services Classification Level Range C Reports to. Manager ITS Infrastructure Effective Date June 29 th, 2015 Position Summary

Information Technology Services Classification Level Range C Reports to. Manager ITS Infrastructure Effective Date June 29 th, 2015 Position Summary Athabasca University Professional Position Description Section I Position Update Only Information Position Title Senior System Administrator Position # 999716,999902 Department Information Technology Services

More information

WHM Administrator s Guide

WHM Administrator s Guide Fasthosts Customer Support WHM Administrator s Guide This manual covers everything you need to know in order to get started with WHM and perform day to day administrative tasks. Contents Introduction...

More information

Novo Help Desk Software

Novo Help Desk Software Customer Support & Knowledge Management Solutions Novo Solutions for HELP DESK MANAGEMENT What Will It Do For You? Reduce Support Staff Time: Customers/End Users can easily submit a support request through

More information

SelectSurvey.NET IT Staff Training

SelectSurvey.NET IT Staff Training SelectSurvey.NET IT Staff Training 3 hour course Written for V4.100.001 11/2013 Page 1 of 12 SelectSurvey.NET IT Staff Training In this video course, students will learn all of the basic functionality

More information

LAMP Server A Brief Overview

LAMP Server A Brief Overview 2012 LAMP Server A Brief Overview Daniel Eakins Santa Fe College CTS 2356 Advanced Administration 3/21/2012 Abstract LAMP is short for Linux, Apache, MySQL, and PHP. LAMP servers are typically not Windows

More information

Statement of Service Enterprise Services - AID Microsoft IIS

Statement of Service Enterprise Services - AID Microsoft IIS Statement of Service Enterprise Services - AID Microsoft IIS Customer Proprietary Rights The information in this document is confidential to Arrow Managed Services, Inc. and is legally privileged. The

More information

NetIQ Advanced Authentication Framework. Maintenance Guide. Version 5.1.0

NetIQ Advanced Authentication Framework. Maintenance Guide. Version 5.1.0 NetIQ Advanced Authentication Framework Maintenance Guide Version 5.1.0 Table of Contents 1 Table of Contents 2 Introduction 3 About This Document 3 Purposes of Maintenance 3 Difficulties of Maintenance

More information

MS 10978A Introduction to Azure for Developers

MS 10978A Introduction to Azure for Developers MS 10978A Introduction to Azure for Developers Description: Days: 5 Prerequisites: This course offers students the opportunity to learn about Microsoft Azure development by taking an existing ASP.NET MVC

More information

How To Use Remedy On A Pc Or Macbook 2.5 (For Mac)

How To Use Remedy On A Pc Or Macbook 2.5 (For Mac) Remedy Quick Start Guide Remedy 7 is a workflow tool for managing requests and their resolution. It is available to subscribed departments at NYU. This guide will introduce you to the basic layout and

More information

Installation Guide NetIQ AppManager

Installation Guide NetIQ AppManager Installation Guide NetIQ AppManager April 2016 www.netiq.com/documentation Legal Notice NetIQ AppManager is covered by United States Patent No(s): 05829001, 05986653, 05999178, 06078324, 06397359, 06408335.

More information

Mac OS X Server Migration Guide

Mac OS X Server Migration Guide Mac OS X Server Migration Guide Includes detailed instructions for upgrading to Mac OS X Server from AppleShare IP, Macintosh Manager, and Mac OS X Server 1.2 K Apple Computer, Inc. 2001 Apple Computer,

More information

INSTALLATION OF BLOGGING PLATFORM

INSTALLATION OF BLOGGING PLATFORM INSTALLATION OF BLOGGING PLATFORM & Configuration of DNSSEC Enabled Name Server Katja Andreeva, Marco Johns SERVER (KAMMIO.KUTOMO.NET) SERVER (KAMMIO.KUTOMO.NET) Virtual Private Server (VPS) from Linode.com

More information

Copyright 2011 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC is a registered trademarks of DataNet Quality Systems.

Copyright 2011 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC is a registered trademarks of DataNet Quality Systems. Copyright 2011 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC is a registered trademarks of DataNet Quality Systems. All other trademarks or registered trademarks are the property

More information

8.0 for LINUX UNIX. What s New Document. Expand 2.1. Learn more at www.swsoft.com/plesk/expand

8.0 for LINUX UNIX. What s New Document. Expand 2.1. Learn more at www.swsoft.com/plesk/expand 8.0 for LINUX UNIX What s New Document Expand 2.1 Learn more at www.swsoft.com/plesk/expand Published: December 2006 Revised: December 2006 Key Themes This new release of SWsoft Plesk Expand provides our

More information

1) Go to the following URL: https://myitservices.nus.edu.sg/arsys/ 2) Login with your NUS account and password.

1) Go to the following URL: https://myitservices.nus.edu.sg/arsys/ 2) Login with your NUS account and password. Introduction: Computer Centre has a wide range of service offering to all NUS users. Through an easy-to-use selfservice IT Service Request Portal, selected services are exposed to NUS Community to facilitate

More information

1. 2. 3. 2.1.1.1 Change your Password o 2.1.1.2 Match Request to your Company 2.1.2.1 License Status 2.1.2.2 Choose a License 2.1.2.3 Payment 2.1.3.1 Changing company data 2.1.3.2 Organization 2.1.3.3

More information

Invest in your business with Ubuntu Advantage.

Invest in your business with Ubuntu Advantage. Invest in your business with Ubuntu Advantage. Expert advice. Specialist tools. Dedicated support. Introducing Ubuntu Advantage Contents 02 Introducing Ubuntu Advantage 03 Ubuntu Advantage 04 - Landscape

More information

evergreen: A Model For Effectiveness and Performance

evergreen: A Model For Effectiveness and Performance Evergreen: freedom and control Art Rhyno, University of Windsor Dan Scott, Laurentian University Ontario public libraries: Sample of current ILS usage A variety of systems in use: Dynix Barrie, Guelph,

More information

RT and RT for Incident Response

RT and RT for Incident Response RT and RT for Incident Response I represent a software vendor We sell support, training, consulting and customization for RT, RTIR and RTFM This talk could be dangerously close to a sales pitch. I m not

More information

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

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

More information

Put a Firewall in Your JVM Securing Java Applications!

Put a Firewall in Your JVM Securing Java Applications! Put a Firewall in Your JVM Securing Java Applications! Prateep Bandharangshi" Waratek Director of Client Security Solutions" @prateep" Hussein Badakhchani" Deutsche Bank Ag London Vice President" @husseinb"

More information

Market Comparison Report. Which ERP Architectures Best Handle Business Change?

Market Comparison Report. Which ERP Architectures Best Handle Business Change? Which ERP Architectures Best Handle Business Change? June - 2013 Which ERP Architectures Best Handle Business Change? Businesses are living in a constant state of flux due to increased competition and

More information

Request Tracker 3.8. Stefan Hornburg. Nordic Perl Workshop 2009. Oslo, 17 th April 2009

Request Tracker 3.8. Stefan Hornburg. Nordic Perl Workshop 2009. Oslo, 17 th April 2009 Request Tracker 3.8 Stefan Hornburg Nordic Perl Workshop 2009 Oslo, 17 th April 2009 Request Tracker Bugtracking System for Perl / CPAN Trouble Ticket System Companies Organizations Customers Few instances

More information

Assessing Software Productivity with An Estimation Model: A Case Study. Elizabeth A. Miller, Galorath Incorporated

Assessing Software Productivity with An Estimation Model: A Case Study. Elizabeth A. Miller, Galorath Incorporated Assessing Software Productivity with An Estimation Model: A Case Study Elizabeth A. Miller, Galorath Incorporated Trade publications in the software field as well as the popular media are filled with articles

More information

Configuration & Build Management

Configuration & Build Management Object-Oriented Software Engineering Using UML, Patterns, and Java Configuration & Build Management Outline of the Lecture Purpose of Software Configuration Management (SCM) Some Terminology Software Configuration

More information

CyberAds Studio. Ready to Deploy Intranets Small to mid-sized companies February 2003

CyberAds Studio. Ready to Deploy Intranets Small to mid-sized companies February 2003 CyberAds Studio Ready to Deploy Intranets Small to mid-sized companies February 2003 www.cyberadsstudio.com 190 Jill Lane, Suite 1 Laurel, MD 20724 Tel: (301) 776 1446 Sales@cyberadsstudio.com 1 Product

More information

Enterprise Service Bus

Enterprise Service Bus We tested: Talend ESB 5.2.1 Enterprise Service Bus Dr. Götz Güttich Talend Enterprise Service Bus 5.2.1 is an open source, modular solution that allows enterprises to integrate existing or new applications

More information

What s New Guide. Help Desk Authority 9.1

What s New Guide. Help Desk Authority 9.1 What s New Guide Help Desk Authority 9.1 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks of ScriptLogic

More information

Architecture of Enterprise Applications III Single Sign-On

Architecture of Enterprise Applications III Single Sign-On Architecture of Enterprise Applications III Single Sign-On Haopeng Chen REliable, INtelligent and Scalable Systems Group (REINS) Shanghai Jiao Tong University Shanghai, China e-mail: chen-hp@sjtu.edu.cn

More information

Unlimited Server 24/7/365 Support

Unlimited Server 24/7/365 Support Unlimited Server 24/7/365 Support Unlimited Server Support from System Architects covers your Windows servers, Linux servers and virtual machines. Your servers are monitored and managed 24 hours a day,

More information

What's New in Bomgar 13.1

What's New in Bomgar 13.1 What's New in Bomgar 13.1 TABLE OF CONTENTS Updates for Support Administrators 3 Access to All Jump Clients in the System 4 Appliance Integration with Dell KACE 5 Canned Message Management 6 Embedded Remote

More information

Week Overview. Installing Linux Linux on your Desktop Virtualization Basic Linux system administration

Week Overview. Installing Linux Linux on your Desktop Virtualization Basic Linux system administration ULI101 Week 06b Week Overview Installing Linux Linux on your Desktop Virtualization Basic Linux system administration Installing Linux Standalone installation Linux is the only OS on the computer Any existing

More information

System Development and Life-Cycle Management (SDLCM) Methodology. Approval CISSCO Program Director

System Development and Life-Cycle Management (SDLCM) Methodology. Approval CISSCO Program Director System Development and Life-Cycle Management (SDLCM) Methodology Subject Type Standard Approval CISSCO Program Director A. PURPOSE This standard specifies content and format requirements for a Physical

More information

Cisco Change Management: Best Practices White Paper

Cisco Change Management: Best Practices White Paper Table of Contents Change Management: Best Practices White Paper...1 Introduction...1 Critical Steps for Creating a Change Management Process...1 Planning for Change...1 Managing Change...1 High Level Process

More information

Graham Jones. Internet Psychologist. How to choose the right web host

Graham Jones. Internet Psychologist. How to choose the right web host Graham Jones Internet Psychologist How to choose the right web host 2008 Graham Jones All Rights Reserved. No part of this publication may be copied or stored in a retrieval system without the prior written

More information

Open Source Content Management Software : A Comparative Analysis

Open Source Content Management Software : A Comparative Analysis 7 th International CALIBER 2009 Open Source Content Management Software... Open Source Content Management Software : A Comparative Analysis Kaushal K Giri Kirti R Nirgude Abstract There are many web-authoring

More information

CatDV Pro Workgroup Serve r

CatDV Pro Workgroup Serve r Architectural Overview CatDV Pro Workgroup Server Square Box Systems Ltd May 2003 The CatDV Pro client application is a standalone desktop application, providing video logging and media cataloging capability

More information

Decision Maker's Guide - Evaluation Checklist for ITSM Solutions High Level Requirements

Decision Maker's Guide - Evaluation Checklist for ITSM Solutions High Level Requirements Decision Maker's Guide - Evaluation Checklist for ITSM Solutions High Level Requirements Ability to support a 24x7 service desk operation Ability to provide workflow capabilities for efficient incident,

More information

Shop by Manufacturer Custom Module for Magento

Shop by Manufacturer Custom Module for Magento Shop by Manufacturer Custom Module for Magento TABLE OF CONTENTS Table of Contents Table Of Contents... 2 1. INTRODUCTION... 3 2. Overview...3 3. Requirements... 3 4. Features... 4 4.1 Features accessible

More information

CrownPeak Playbook CrownPeak Hosting with PHP

CrownPeak Playbook CrownPeak Hosting with PHP CrownPeak Playbook CrownPeak Hosting with PHP Version 1.0 2014, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

Service Offering: Outsourced IdM Administrator Service

Service Offering: Outsourced IdM Administrator Service Service Offering: Outsourced IdM Administrator Service 2014 Hitachi ID Systems, Inc. All rights reserved. Contents 1 Introduction 1 2 The Outsourced IdM Administrator Service 2 2.1 Hitachi ID Systems and

More information

Advanced Server Virtualization: Vmware and Microsoft Platforms in the Virtual Data Center

Advanced Server Virtualization: Vmware and Microsoft Platforms in the Virtual Data Center Advanced Server Virtualization: Vmware and Microsoft Platforms in the Virtual Data Center Marshall, David ISBN-13: 9780849339318 Table of Contents BASIC CONCEPTS Introduction to Server Virtualization Overview

More information

Getting Started - The Control Panel

Getting Started - The Control Panel Table of Contents 1. Getting Started - the Control Panel Login Navigation Bar Domain Limits Domain User Account Properties Session Management 2. FTP Management Creating and Editing Users Accessing FTP

More information

RTAP Database Lifecycle Management

RTAP Database Lifecycle Management SYSTEMS INC. RTAP Database Lifecycle Management Abstract: This paper will describe the typical RTAP database lifecycle and how the tessernet Systems Inc. tools can make this process easier to manage and

More information

RT and RT for Incident Response

RT and RT for Incident Response RT and RT for Incident Response Carlos Fuentes Bermejo RTIR WG - Primary Technical Contact RedIRIS IRIS-CERT - Security Specialist Si habla español Couldn t be here today :( Jesse Vincent Designed RT and

More information

The Japanese IT services company has found that Uniface is a smart way to carry out package customizations, as well as standalone development

The Japanese IT services company has found that Uniface is a smart way to carry out package customizations, as well as standalone development The Japanese IT services company has found that Uniface is a smart way to carry out package customizations, as well as standalone development 1 CUSTOMER SECTOR IT Services Provider COUNTRY Japan CHALLENGE

More information

SMTPSWITCH MAILER V6 FEATURES

SMTPSWITCH MAILER V6 FEATURES SMTPSWITCH MAILER V6 FEATURES 22 Powerful Features Packed in a Single Email Marketing/Bulk Mailing Program! Easy and Advanced WYSIWYG/HTML Editing SMTPSwitch Mailer has a powerful built-in WYSIWYG editor

More information

What is the Purpose of OA s Enterprise IT Helpdesk Procedure?... 2 How will Problems, Questions or Changes be entered?... 2

What is the Purpose of OA s Enterprise IT Helpdesk Procedure?... 2 How will Problems, Questions or Changes be entered?... 2 PROCEDURES FOR REPORTING REMEDY APPLICATION PROBLEMS AND ISSUES PROCEDURES FOR REPORTING REMEDY APPLICATION PROBLEMS AND ISSUES... 2 What is the Purpose of OA s Enterprise IT Helpdesk Procedure?... 2 How

More information

Migration and Building of Data Centers in IBM SoftLayer with the RackWare Management Module

Migration and Building of Data Centers in IBM SoftLayer with the RackWare Management Module Migration and Building of Data Centers in IBM SoftLayer with the RackWare Management Module June, 2015 WHITE PAPER Contents Advantages of IBM SoftLayer and RackWare Together... 4 Relationship between

More information

Kaseya Traverse. Kaseya Product Brief. Predictive SLA Management and Monitoring. Kaseya Traverse. Service Containers and Views

Kaseya Traverse. Kaseya Product Brief. Predictive SLA Management and Monitoring. Kaseya Traverse. Service Containers and Views Kaseya Product Brief Kaseya Traverse Predictive SLA Management and Monitoring Kaseya Traverse Traverse is a breakthrough cloud and service-level monitoring solution that provides real time visibility into

More information

Introduction. What is ITIL? Automation Centre. Tracker Suite and ITIL

Introduction. What is ITIL? Automation Centre. Tracker Suite and ITIL 1 Introduction The Information Technology Infrastructure Library (ITIL) aims to improve the management of IT services within the organization, for lowered costs, improved efficiency and productivity. But

More information

End User Guide The guide for email/ftp account owner

End User Guide The guide for email/ftp account owner End User Guide The guide for email/ftp account owner ServerDirector Version 3.7 Table Of Contents Introduction...1 Logging In...1 Logging Out...3 Installing SSL License...3 System Requirements...4 Navigating...4

More information

Installation Manual v2.0.0

Installation Manual v2.0.0 Installation Manual v2.0.0 Contents ResponseLogic Install Guide v2.0.0 (Command Prompt Install)... 3 Requirements... 4 Installation Checklist:... 4 1. Download and Unzip files.... 4 2. Confirm you have

More information

How To Use The Dcml Framework

How To Use The Dcml Framework DCML Framework Use Cases Introduction Use Case 1: Monitoring Newly Provisioned Servers Use Case 2: Ensuring Accurate Asset Inventory Across Multiple Management Systems Use Case 3: Providing Standard Application

More information

Avira AntiVir MailGate 3.2 Release Notes

Avira AntiVir MailGate 3.2 Release Notes Release Notes 1. Features 1.1 Assigning recipient addresses to groups either by using Active Directory or a plain text file 1.1.1 Using a Active Directory server MailGate communicates with Active Directory

More information

Roving Technical Support

Roving Technical Support Roving Technical Support W H E N Y O U R W H O L E L I B R A R Y I S T H E I N F O R M A T I O N C O M M O N S Gwendolyn Reece, Access Services Librarian American University Library Collaboration This

More information

Siebel HelpDesk Guide. Version 8.0, Rev. C March 2010

Siebel HelpDesk Guide. Version 8.0, Rev. C March 2010 Siebel HelpDesk Guide Version 8.0, Rev. C March 2010 Copyright 2005, 2010 Oracle and/or its affiliates. All rights reserved. The Programs (which include both the software and documentation) contain proprietary

More information

Microsoft 70-414 Exam

Microsoft 70-414 Exam Volume: 92 Questions Topic 1, Contoso Ltd Overview Contoso, Ltd. is a recruiting and staffing company that has offices throughout North America. The company has a main office and six branch offices. The

More information

3 Red Hat Enterprise Linux 6 Consolidation

3 Red Hat Enterprise Linux 6 Consolidation Whitepaper Consolidation EXECUTIVE SUMMARY At this time of massive and disruptive technological changes where applications must be nimbly deployed on physical, virtual, and cloud infrastructure, Red Hat

More information

101 ways to use SysAid

101 ways to use SysAid 101 ways to use SysAid Keep IT simple by letting SysAid do what it does best- help you manage your IT. Print out this handy checklist of everything you can do with SysAid, and make sure you are taking

More information

10 How to Accomplish SaaS

10 How to Accomplish SaaS 10 How to Accomplish SaaS When a business migrates from a traditional on-premises software application model, to a Software as a Service, software delivery model, there are a few changes that a businesses

More information

Novo Customer Support Suite

Novo Customer Support Suite Since deploying the Novo Customer Support Suite. The [IT] department is running much better. In addition, hospital staff can find their own answers in the knowledge base, talking a load off IT staff. Mater

More information

EMC ViPR SRM. Alerting Guide. Version 3.7.1.0 302-002-455 01

EMC ViPR SRM. Alerting Guide. Version 3.7.1.0 302-002-455 01 EMC ViPR SRM Version 3.7.1.0 Alerting Guide 302-002-455 01 Copyright 2015-2016 EMC Corporation. All rights reserved. Published in the USA. Published February, 2016 EMC believes the information in this

More information

Table of Contents. Introduction. Audience. At Course Completion. Prerequisites

Table of Contents. Introduction. Audience. At Course Completion. Prerequisites Table of Contents Introduction Audience At Course Completion Prerequisites Microsoft Certified Professional Exams Student Materials Course Outline Introduction This one-day course explores the Microsoft

More information