Presentation is loading. Please wait.

Presentation is loading. Please wait.

ASAP 2.5 Technical Update September 8, 2004.

Similar presentations


Presentation on theme: "ASAP 2.5 Technical Update September 8, 2004."— Presentation transcript:

1 ASAP Technical Update September 8, 2004

2 Technical Update Contents Part 1
GOAL Command RANK synonym, recovery actions ACTION Command define rules, view actions FILE Monitoring grouping, aggregation, wildcards, OSS PROCESS Monitoring object filenames, wildcards, OSS November 13, 2018 ASAP 2.5 Technical Update

3 Technical Update Contents Part 2
DB History user configurable history DBMAXDAYS Command defines history retention DB Command history DB allocation reporting Communication SGP monitors Comm lines Status Enhancements CI status command SGP CPU Placement user SGP CPU placement SGP Enhancements disk, CPU, system SGP enhancements November 13, 2018 ASAP 2.5 Technical Update

4 Technical Update Contents Part 3
Notifications , phone, pager or browser Interfaces a rich set of interfaces Dashboards control and retain of graphic utilizations Save As extensions EDL, TEXT, HTML, EXCEL Secure Property sheets password protected configuration EDL Enhancements download, compile, autosync, export November 13, 2018 ASAP 2.5 Technical Update

5 ASAP Technical Update

6 GOAL Command Specifying Recovery Actions
ACTION “<text string>” | <rule> [WAIT <n>] [NOREPEAT] Defines a repeating recovery action <text string> is the action <rule> is a stored action string, more on rules later WAIT defines interval to wait before retry NOREPEAT turns off retry Tokens can be used to substitute for actual values GOAL CPU 3, BUSY < 80 ACTION “TACL STOP $ABC” RANK CPU, STATUS ACTION “TACL RELOAD <#OBJECT>, PRIME” GOAL is a synonym for RANK November 13, 2018 ASAP 2.5 Technical Update

7 GOAL Command Specifying Recovery Actions
To make sure USERID is always secured correctly… MONITOR FILE $SYSTEM.SYSTEM.USERID GOAL FILE $SYSTEM.SYSTEM.USERID, RWEP = OOOO ACTION “FUP SECURE <#OBJECT>, ‘<#GOAL>’” To make sure C compiles run at a low priority… MONITOR PROCESS $SYSTEM.SYSTEM.C RANK PROCESS $SYSTEM.SYSTEM.C, PRI < 120 ACTION “TACL ALTPRI <#OBJECT>, <#GOAL>” To make sure no process steals a processor… MONITOR PROCESS $* GOAL PROCESS $*, BUSY < 50 CRITICAL 6000 ACTION “TACL ALTPRI <#OBJECT>, 10” November 13, 2018 ASAP 2.5 Technical Update

8 GOAL Command Specifying Recovery Actions
To make sure process $ABC doesn’t loop… MONITOR PROCESS $ABC GOAL PROCESS $ABC, BUSY < 80 ACTION “TACL SUSPEND <#OBJECT>” To make sure there is enough space on a volume… RANK DISK $DATA, FRAGMENT > 100 ACTION DCOM To send ASAP alert information to your own TACL macro… MONITOR SPOOLER $SPL43 GOAL SPOOLER $SPL43, NUMJOBS < 500 INFO ACTION “TACL FIXSPOOL <#OBJECT> <#ATTR> <#OP> <#GOAL> <#VALUE> <#STATE> <#LASTSTATE> ” November 13, 2018 ASAP 2.5 Technical Update

9 GOAL Command Defining Custom Event Numbers
INFO|CRITICAL [REPEAT] [NODISPLAY] [<down>] [-<up>] <down> is used when the objective fails <up> is used when the object returns to normal Range No EMS template associated with custom event However EMS text token is present for display GOAL CPU, BUSY < 80 CRITICAL RANK CPU, BUSY < 80 CRITICAL REPEAT 6001 GOAL CPU 3, BUSY < 91 CRITICAL -6002 November 13, 2018 ASAP 2.5 Technical Update

10 ACTION Command Listing Actions
CPU STATUS tacl reload <#domain>,prime (WAIT = 1) CPU 00 PCB LT tacl run $system.asapx3.testmac FILE $ASAP.JOE.ZZZ RWEP EQ RESECURE FILE $ASAP.MM.NOTTHERE STATUS fup create <#domain> (WAIT = 3) FILE $ASAP.MM.ZZZ OWNER EQ fup give <#domain>,<#goal> FILE $ASAP.MM.ZZZ RWEP EQ RESECURE (WAIT = 3) FILE $ASAP.MM.ZZZ STATUS fup create <#domain> FILE $ASAP.XX.NOTTHERE STATUS fup create <#domain> PROCESS $MARK STATUS tacl run $data.obj.markl/name $mark,nowait/ PROCESS $STEP BUSY GT ACTIVATE (WAIT = 1) PROCESS $STEP BUSY LT SUSPEND TMF BEGINTR EQ tmfcom; enable begintrans; exit Listing Actions ACTION ACTION \REMOTE ACTION CPU ACTION CPU 0 ACTION CPU 0 BUSY ACTION CPU 0 BUSY LT Fully qualified selector returns tokenized output Determines the action that will be applied to specific entity-domain November 13, 2018 ASAP 2.5 Technical Update

11 ACTION Command Defining Rules
ACTION RULE <name> = <string> Rules are reusable ACTION strings ACTION RULE SUSPEND=TACL SUSPEND <#OBJECT> No quotes around string, no single quote substitution These rules are pre-defined ACTION RULE ACTIVATE = TACL ACTIVATE <#OBJECT> ACTION RULE ALTPRI = TACL ALTPRI <#OBJECT>, <#GOAL> ACTION RULE DEFRAG = DCOM <#OBJECT> ACTION RULE GIVE = FUP GIVE <#OBJECT>, <#GOAL> ACTION RULE PRIMARY = SCF PRIMARY <#OBJECT>, <#GOAL> ACTION RULE RELOAD = TACL RELOAD <#OBJECT>, PRIME ACTION RULE SECURE = FUP SECURE <#OBJECT>, “<#GOAL>” ACTION RULE SUSPEND = TACL SUSPEND <#OBJECT> November 13, 2018 ASAP 2.5 Technical Update

12 FILE Monitoring Specifying Files and Subvolumes
MONITOR FILE $VOL.SUBVOL.FILE $VOL\SUBVOL\FILE MONITOR FILE $VOL.SUBVOL $VOL\SUBVOL\## ASAP domain name ASAP domain name MONITOR FILE $ASAP.JOE.NOTTHERE MONITOR FILE $DATA2.DATABASE November 13, 2018 ASAP 2.5 Technical Update

13 FILE Monitoring Specifying Logical Prefixes
M FILE MYFILES\$VOL.SUBVOL.FILE MYFILES\$VOL\SUBVOL\FILE M FILE MYFILES\WORK\$VOL.SUBV.FILE MYFILES\WORK\$VOL\SUBV\FILE M FILE MYFILES\$VOL.SUBVOL MYFILES\$VOL\SUBVOL\## MONITOR FILE MYFILES\$DATA2.JOE.TEST MONITOR FILE MYFILES\$DATA3.JOE MONITOR FILE MYFILES\$DATA4.JOE.TEST November 13, 2018 ASAP 2.5 Technical Update

14 FILE Monitoring Specifying Wildcard Templates
MONITOR FILE $VOL.SUB*.FILE* $VOL.SUB*.FILE*\## $VOL.SUB*.FILE*\$VOL\SUB\FILE (If aggregate-only removed) M FILE MYFILES\$VOL.S*.F* MYFILES\$VOL.S*.F*\## MYFILES\$VOL.S*.F*\$VOL\SUB\FILE MONITOR FILE $DATA3.JOE*.* MONITOR FILE $DATA4.JOE*.* MONITOR FILE $DATA4.JOE*.*\##, DELETE MONITOR FILE $M02.*.* November 13, 2018 ASAP 2.5 Technical Update

15 FILE Monitoring Specifying OSS Filenames
M FILE /home/data/filename HOME\DATA\FILENAME M FILE MYFILES/home/data/filename MYFILES\HOME\DATA\FILENAME M FILE ANYNAME\YOU\WANT PATH /<pathname> ANYNAME\YOU\WANT Rules Name cannot exceed 64 bytes Name cannot exceed 5 levels of hierarchy November 13, 2018 ASAP 2.5 Technical Update

16 FILE Monitoring Specifying Aggregate Domains
MONITOR FILE $VOL.SUBVOL Creates an automatic aggregate-only domain MONITOR FILE $VOL.SUB*.* MONITOR FILE $VOL\# Creates an aggregate domain for all files being monitored on $VOL MONITOR FILE MYFILES\# Creates an aggregate for all of MYFILES November 13, 2018 ASAP 2.5 Technical Update

17 FILE Monitoring More Aggregate Examples
MONITOR FILE $VOL.SUB*.*\$VOL\SUB1\# Creates an aggregate domain for all files in $VOL.SUB1 where the file is selected by a wildcard specifier The automatic aggregate-only domain, $VOL.SUB*.*\##, would have to be deleted before this domain would be output November 13, 2018 ASAP 2.5 Technical Update

18 FILE Monitoring Wildcard Domain Names
A wildcard template entered in a MONITOR command is used to select objects and to create a domain name level A wildcard template entered to a RANK command does not select objects, it only refers to the ASAP domain name level Meaning if you do this: MONITOR FILE $VOL.SUBV.FILE RANK FILE $VOL.SUB*.*, FULL < 80 The RANK command will not apply to that file because ASAP does not treat “$VOL.SUB*.*” as a wildcard specifier in any command except the MONITOR command This is true for FILE and PROCESS November 13, 2018 ASAP 2.5 Technical Update

19 PROCESS Monitoring Specifying Process Names
MONITOR PROCESS $NAME $NAME MONITOR PROCESS $NAME* $NAME*\## $NAME*\$NAME (If aggregate-only removed) ASAP domain name ASAP domain names MONITOR PROCESS $STEP MONITOR PROCESS $ZOO* November 13, 2018 ASAP 2.5 Technical Update

20 PROCESS Monitoring Specifying Logical Prefixes
M PROCESS MYPROCESSES\MYTESTS\$NAME MYPROCESSES\MYTESTS\$NAME M PROCESS SALES\ORDERS\$NAME* SALES\ORDERS\$NAME*\## SALES\ORDERS\$NAME*\$NAME (If aggregate-only removed) MONITOR PROCESS A\$ZOO* November 13, 2018 ASAP 2.5 Technical Update

21 PROCESS Monitoring Specifying Object Filenames
M PROCESS $VOL.SUBVOL.OBJECT $VOL.SUBVOL.OBJECT\## $VOL.SUBVOL.OBJECT\$NAME (If aggregate-only removed) M PROCESS TEST\$VOL.SUBVOL.OBJECT TEST\$VOL.SUBVOL.OBJECT\## TEST\$VOL.SUBVOL.OBJECT\$NAME MONITOR PROCESS $SYSTEM.SYS00.TACL November 13, 2018 ASAP 2.5 Technical Update

22 PROCESS Monitoring Specifying OSS Object Filenames
M PROCESS /home/directory/objectfilename HOME\DIRECTORY\OBJECTFILENAME\## HOME\DIRECTORY\OBJECTFILENAME\$NAME (If aggregate-only removed) M PROCESS ANYNAME\YOU\WANT PATH /<pathname> ANYNAME\YOU\WANT\## ANYNAME\YOU\WANT\$NAME Rules Name cannot exceed 64 bytes Name cannot exceed 5 levels of hierarchy November 13, 2018 ASAP 2.5 Technical Update

23 PROCESS Monitoring Specifying Aggregate Domains
MONITOR PROCESS $A* Creates an automatic aggregate-only domain MONITOR PROCESS $VOL.SUBVOL.OBJECT MONITOR PROCESS MYPROCESSES\# Creates an aggregate for all of MYPROCESSES November 13, 2018 ASAP 2.5 Technical Update

24 ASAP 2.5 Server Enhancements Technical Update
Presentation Title ASAP 2.5 Server Enhancements Technical Update

25 ASAP 2.5 – Historical Data Management
New DBMaxDays option controls how much data is retained Different retention periods can be specified for each entity type (e.g. save 30 days of CPU data, 6 months of APP data, …) Works in conjunction with SET RETAIN ROLLOVER ASAP automatically manages historical data file sets, and purges file sets that are no longer needed COMM CPU TMF CPU APP APP TMF TMF APP APP SPOOL FILE November 13, 2018 ASAP 2.5 Technical Update

26 ASAP 2.5 Database history new features
Presentation Title ASAP can now automatically maintain long term history Days, Weeks, Months, or even Years can be kept using the following SET option SET DBMaxDays [<entity>] <days> DBMaxDays option controls both Amount of History for all entities Variable history for each entity November 13, 2018 ASAP 2.5 Technical Update

27 ASAP 2.5 Database – SET DBMaxDays
SET DBMaxDays [<entity>] <days> Examples SET DBMaxDays 1 ! History for all entities, 1 day SET DBMaxDays Cpu 365 ! History for Cpu entity, 365 days SET DBMaxDays PCB 60 ! History for Process Busy, 60 days SET DBMaxDays Disk 30 ! History for Disk entity, 30 days SET DBMaxDays File 14 ! History for File entity, 14 days November 13, 2018 ASAP 2.5 Technical Update

28 ASAP 2.5 Database – DB command
DB command provides analysis of historical database DB [ <year> ] [ INFO ] [ DETAIL ] [ <entity> ] <year> indicates year to analyze DB command alone provides disk usage by entity and by date. INFO provides file info about DB files: last-mod, owner, rwep, … DETAIL provides first and last record timestamps for each file <entity> allows you to restrict analysis to one entity November 13, 2018 ASAP 2.5 Technical Update

29 ASAP 2.5 Database – DB command
DB command provides analysis of disk usage by entity by date +DB 2004 Availability Stats and Performance -- Disk usage by entity by date Zmmdd APP COM CPU DSK EXP FIL NCP PCB PRO RDF SPL SYS TAP TMF Z m k Z m m Z m m Z m 9.4m m m 1.6m Z m 9.4m m m 1.6m Z m 9.3m m m 1.6m Z m 9.4m 38m 47m 21m 24m 36m 71m m 1.6m 3.9m 9.7m Z m 9.4m 38m 47m 21m 24m 36m 71m m 1.6m 3.9m 9.7m Z m 9.4m 38m 47m 21m 24m 36m 70m m 1.6m 3.9m 9.7m Z m 9.4m 38m 47m 21m 24m 36m 65m m 1.6m 3.9m 9.7m Z m 8.9m 36m 45m 20m 22m 34m 72m m 1.5m 3.7m 9.2m Z m 13m 38m 47m 0.1m 24m 35m 26m m 1.6m 3.9m 9.7m Z k 7m 19m 24m 3.8m 12m 18m 3.5m m 786k 1.0m 4.8m Total APP COM CPU DSK EXP FIL NCP PCB PRO RDF SPL SYS TAP TMF 6.1g m 1.0g 581m 682m 134m 153m 1.1g 609m m 379m 33m 82m DBMaxDays Cpu and System entities – back to 01/15 DBMaxDays Comm, ProcessBusy, and Spooler entities – back to 7/24 DBMaxDays All other entities – back to 8/16 – 7 days ago on Aug 23 November 13, 2018 ASAP 2.5 Technical Update

30 ASAP 2.5 Comm Entity Features
Presentation Title The Comm SGP collects performance and state information about one or more communication lines. The Following Communication lines are supported: AM ATP CP6100 Envoy EnvoyACP Snax X.25 Auto-discovery of all configured Communication lines. Availability information reported by the client is: Supports user defined Comm object monitoring. Supports user defined discrete object thresholds Fully integrated with ASAP infrastructure November 13, 2018 ASAP 2.5 Technical Update

31 ASAP 2.5 Comm line Monitoring (Cont)
Comm Monitoring Specifying Comm lines. MONITOR COMM $SNAX MONITOR COMM $X25a MONITOR COMM !Displays Comm lines added to the DB MONITOR COMM, LIST !Displays Comm !lines being !monitored by !the Comm SGP November 13, 2018 ASAP 2.5 Technical Update

32 ASAP 2.5 COMM SGP DOTs (Cont)
Presentation Title Use the ASAP CI “RANK” command for configuring individual DOTs attributes. Rank Comm, Busy > 60 Rank Comm $X25A,Busy > 30 Rank Comm !displays Comm Attr !added to the DB Rank Comm, list !displays the Attrs that !the Comm Sgp is !reporting on. November 13, 2018 ASAP 2.5 Technical Update

33 ASAP 2.5 CI Command Status Enhancements
Presentation Title ASAP 2.5 CI Command Status Enhancements STATUS TIMEOUT ENHANCEMENT ASAP 2.5 now allows a user timeout value for the status command. The timeout value is in seconds. The Default is 15 seconds. Timeout values are in the range of 1 to 99 seconds. STATUS Timeout 5 Each SGP has 5 seconds to respond to the Status request. Any error 40 will be displayed for each SGP exceeding the timeout value. Other STATUS Enhancements: ASAP 2.5 now displays any SGP that did not start as an error 11 in the Status output. When an SGP is not working properly and is stopping the ASAP Monitor will wait 15 minutes before attempting to restart the SGP. The first attempt to start the SGP could be longer than 15 minutes depending on the time the Monitor was started. This check is done during the 15 minute audit interval. November 13, 2018 ASAP 2.5 Technical Update

34 ASAP 2.5 SGP CPU Placement Presentation Title ASAP 2.5 now supports user specified CPU placement for all SGPS. CPU placement is achieved by using the set <sgp> command. CPU is a new option supported by all ASAP 2.5 SGPs. CPU validation for CPU number 0-15 are performed. In the event the CPU is unavailable the SGP will be started in the same CPU as the ASAP Monitor process. SET PROCESS CPU 1 SET SPOOLER CPU 8 Process Spooler November 13, 2018 ASAP 2.5 Technical Update

35 ASAP 2.5 Additional SGP Enhancements
Presentation Title ASAP 2.5 Additional SGP Enhancements Disk SGP now allows thresholds to be set against the disk attribute “FRAGMENT”. Rank Disk, Fragment < 200 The ASAP DISK SGP now allows the ASAP user to specify decimal values for setting disk queue length objectives. Rank Disk $System, Queue > .5 The ASAP DISK SGP now supports the Enterprise Storage Subsystem, subtype 52 disk devices. Both the ASAP CPU SGP, and System SGP now allows thresholds to be set against the total number of debug breakpoints that are in use. Rank CPU, BrkPnt > 2 November 13, 2018 ASAP 2.5 Technical Update

36 ASAP 2.5 Client Technical Update
Presentation Title ASAP 2.5 Client Technical Update

37 ASAP 2.5 Client New Features Overview
New features - functions Notifications Interfaces Dashboards Save As extensions Secure Property sheets EDL Download, Compile, AutoSync, Export November 13, 2018 ASAP 2.5 Technical Update

38 ASAP 2.5 Notifications - Overview
can now be sent via , phone, pager, or browser Alerts Sent when goals not met, or if objects change state Reports can now be scheduled at various times of the day, eg: 6:00, 10:30, 11:55, ... Example ASAP Report in Outlook preview pane formatted using ASAP options: HTML - Color encoding Score – Object State Matrix Detail – Sorted object states November 13, 2018 ASAP 2.5 Technical Update

39 ASAP 2.5 Notify Options ASAP Notifications have wide range of options
Content options Define notification rule, report content, and formatting style Rules – On State Change, Scheduled, On Each Sample Reports - Alerts, Scoreboard, Sorted object states Formats – Color coded HTML, plain text, abbreviated Recipient options Define who and/or what devices receive notifications Can be a list of people’s addresses, eg Wireless device addresses, eg Web Server path, eg .../inetpub/wwwroot/Alerts Server options Define server address, account, and logon information SMTP server address, eg SMTP.SBCGlobal.Net Account, eg Userid, optional passwords, timeouts, ... November 13, 2018 ASAP 2.5 Technical Update

40 ASAP 2.5 Notify - Content Options
Alerts – show the number of recent object state changes Score – show matrix of object counts, entities, and states Detail – show sorted object states from worst to best (down to up) November 13, 2018 ASAP 2.5 Technical Update

41 ASAP 2.5 Notify - Recipient Options
Recipient property sheet: To, Cc:, Bcc: address list phone number list pager address list From: return address Subject, Priority, Importance Append check box allows user defined HTML or plain text at end of message. November 13, 2018 ASAP 2.5 Technical Update

42 ASAP 2.5 Interface summary
EMS events for Goals and Actions Provider and Consumer APIs Application plug-in entities 3rd Party plug-in entities Published Database Batch Query interface Conversational interface Graphical User interface Optional EMF interfaces Notification interfaces OpenView SPI interface Web Viewpoint interface November 13, 2018 ASAP 2.5 Technical Update

43 ASAP 2.5 Notification - Web content
File field on notify control panel allows dynamic save of content on each sample as web page: Rule – OnEachSample updates on each sample Refresh – defines page pull interval in seconds Style - HTML provides state color-coded pages File – Defines web page file name and path such as: \inetpub\wwwroot\Alerts.htm November 13, 2018 ASAP 2.5 Technical Update

44 ASAP 2.5 WASAP - Web content
WASAP plug-in New WASAP plug-in adds ASAP object state info to Web Viewpoint November 13, 2018 ASAP 2.5 Technical Update

45 ASAP 2.5 OVO SPI - Web content
OpenView smart plug-in shows ASAP object state information in OpenView Console and Web interface. November 13, 2018 ASAP 2.5 Technical Update

46 ASAP 2.5 – OpenView Integration
Enables ASAP data to be added to OpenView Supports all object types (system, application, third-party) Shares object state, availability, performance, and service level data Utilizes both OpenView Service and OpenView Node View Integration is optional; OpenView is not required in order to deploy ASAP Included in base ASAP product November 13, 2018 ASAP 2.5 Technical Update

47 ASAP 2.5 – OpenView Integration
ASAP data can now appear in OpenView Console and OpenView Web Interface November 13, 2018 ASAP 2.5 Technical Update

48 ASAP 2.5 Dashboards - Overview
Allow whole sets of object Graphics Graphic properties are now retained on shutdown, and restored on startup Dashboards can be named, saved, and re-displayed for later analysis November 13, 2018 ASAP 2.5 Technical Update

49 ASAP 2.5 Dashboards – Customization
Mixed graph types now also supported All properties are now saved: x, y, size, node, entity, objects, samples, min state, etc. Right mouse on graph and select “Graph Type” to configure mixed sets of graphics View Dashboard menu dynamically grows and is saved for future reference November 13, 2018 ASAP 2.5 Technical Update

50 ASAP 2.5 Save As ... Analysis can now be saved as... EDL TEXT HTML
EXCEL November 13, 2018 ASAP 2.5 Technical Update

51 ASAP 2.5 Secure property sheets
You can now secure property sheet settings Click “Set Password” button on General tab of properties Dialog on right is displayed Check Property sheet names to password protect settings: Examples: Attribute, Entity, ... Enter and confirm Password Click “Set Password” to lock ASAP property sheet settings November 13, 2018 ASAP 2.5 Technical Update

52 ASAP 2.5 Property password prompt
Protected Property sheets require password to access Enter correct Password, unlocks property sheet If you cancel dialog or don’t know password, you can view properties, but cannot change settings November 13, 2018 ASAP 2.5 Technical Update

53 ASAP 2.5 EDL Download & Compile
New File... menu item Compile Server EDL... Downloads & Compiles Server’s copy of EDL Greatly simplifies EDL synchronization November 13, 2018 ASAP 2.5 Technical Update

54 ASAP 2.5 EDL Download into IDE
New Download EDL toolbar button Downloads EDL into Interactive Development Environment (IDE) Allows view, edit, or debug of EDL Allows ad hoc edits of server EDL for App development November 13, 2018 ASAP 2.5 Technical Update

55 ASAP 2.5 EDL Export entity File... Export EDL...
Export dialog box includes new option to export a specific entity... Simplifies working with or sharing specific entities November 13, 2018 ASAP 2.5 Technical Update

56 ASAP 2.5 EDL Auto Synchronization
EDL now auto synchronizes Entity definition versions are now automatically checked If version mismatch occurs auto sync prompt appears If you Click “Yes”, server EDL is automatically downloaded and compiled, auto correcting version mismatch Eliminates EDL matching Simplifies working with custom application EDLs November 13, 2018 ASAP 2.5 Technical Update

57 ASAP 2.5 Client Hardware-Software Requirements
Server runs on all supported Nonstop servers Minimum OS Release: NonStop Kernel D42 Minimum OS Gateway: SSGCOM T8488AAB 31MAR97 Client runs on any Microsoft Windows workstation Compatible with all ASAP servers Required Hardware: 200 MHz PC or faster Minimum Memory: 256 MB Minimum Disk Space: 30 MB Minimum Windows Release: Windows 2003 Windows XP Windows 2000 Windows NT4 SP6 Windows ME/98 November 13, 2018 ASAP 2.5 Technical Update

58 ASAP 2.5 Client Installation & Configuration
Client can be installed over any existing client. Client compatible with any version of ASAP Server including: 1.0 2.0 2.1 2.2 2.3 2.4 2.5 November 13, 2018 ASAP 2.5 Technical Update

59 ASAP 2.5 Client Migration and Integration
Because ASAP Client is fully compatible with all prior server versions there are no migration or integration considerations All Server versions benefit from ASAP 2.5 Client AutoSync prompt will occur if server is not 2.5, Select YES to synchronize client with server EDL New ASAP 2.5 client features are automatically extended to any prior server version Examples: notifications, dashboards, security, ... features all work with old versions of ASAP server November 13, 2018 ASAP 2.5 Technical Update

60 Presentation Title


Download ppt "ASAP 2.5 Technical Update September 8, 2004."

Similar presentations


Ads by Google