Patch Server for Jamf Pro Documentation

Size: px
Start display at page:

Download "Patch Server for Jamf Pro Documentation"

Transcription

1 Patch Server for Jamf Pro Documentation Release Bryson Tyrrell Mar 16, 2018

2

3 Contents 1 Change History 3 2 Setup the Patch Server Web Application 7 3 Add Your Patch Server to Jamf Pro 11 4 API Authentication 17 5 Patch Server API 19 6 Jamf Pro Patch API 25 7 User Interface 29 HTTP Routing Table 33 i

4 ii

5 An open-source implementation of an external patch source for use with Jamf Pro (version 10.2+). User Interface Upload a New Software Title Upload Errors View a Patch Definition Delete a Software Title Backup Your Patch Definitions Webhooks Contents 1

6 2 Contents

7 CHAPTER 1 Change History ( ) New webhook feature to allow the patch server to notify remote servers of changes to software titles via HTTP POSTs ( ) You can secure the API with token authentication (if you really want to) ( ) Because accurate and easy to read instructions are important ( ) A minor renaming ( ) Make the GUI great(ish) again. The New Title button has been updated. It now prompts you to select a JSON file (the patch definition) and performs the upload. Validation is still performed on the uploaded file as with the API. The new /api/v1/backup feature is available in the GUI. Click the Backup button to trigger. The View button for a software title has been moved to the right and will take the user to the /jamf/v1/patch/ title endpoint to view the JSON. 3

8 All GUI actions now provide feeback on success or error ( ) Organized code. JSON validation for API. Really big documentation update (now hosted on Read the Docs). Installation instructions for macos and Docker. Added GET /api/v1/backup. Download a zipped archive of all patch definitions on the server. Version history notes. Note: Removed most of the UI and some API endpoints no longer required without the associated UI views ( ) The non-existent requirements file now exists ( ) Patch eligibility criteria added to software title view ( ) Fixed UI redirects ( ) Switched to Pipenv for development ( ) Typos and such ( ) Editing software title in the UI view ( ) Moved javascript out of the HTML and into static. Database moved to application directory. Patch title deletion. Bug fixes. 4 Chapter 1. Change History

9 ( ) UI view for individual software titles ( ) Bug fix for software title creation ( ) Added RSS feed ( ) Database improvements. Proper deletion of all objects linked to a patch ( ) Initial GUI. Deduplication of criteria entries. Extension attribute objects ( ) Initial commit ( ) 5

10 6 Chapter 1. Change History

11 CHAPTER 2 Setup the Patch Server Web Application Warning: These instructions do not cover securing your patch server with a TLS certificate for HTTPS connections. Note: You will need to have the pip and virtualenv commands installed to follow these instructions. 2.1 Testing the Patch Server Warning: Using the included run.py script is not recommended for a production environment. See the other options below depending upon your platform. Clone the project repository to the system that will run the application. Change into the directory for the project, create a Python virtual environment, and install the project requirements to it. $ cd /path/to/patchserver $ virtualenv./venv $ source./venv/bin/activate (venv) $ pip install -r./requirements.txt Run the application. python run.py You will be able to access the application using localhost or your computer s IP address at port

12 2.2 Running as a Docker Container In the installation/docker/ directory of the project repository is a Dockerfile that can be used to launch the patch server as a container. Clone the project repository to your computer. Create the Docker image with: $ cd /path/to/patchserver $ docker build --tag patchserver:latest -f installation/docker/dockerfile. If you have Docker installed, you can run the image with: $ docker run -v /<patchserver-data>:/var/lib/patchserver -p 5000:5000 patchserver Note: Use the -d option to run the container in the background. Note: The -v /<patchserver-data>:/var/lib/patchserver option is to mount a local directory to the path in the running container where the persistent data for the patch server is stored (i.e. the database). Warning: If you do not attach a volume to /var/lib/patchserver the database will be erased when the container is stopped and removed. You will be able to access the application using the IP address of the host (your computer s IP address when running Docker locally) at port Installation on macos The following instructions are for setting up the patch server application on a macos system using mod_wsgi-express. Create a new directory in your /Library named PatchServer. Clone the project repository to this directory. Write the following into a new file called patch_server.wsgi: Note: Grant execute permissions on this file (mode 755). This file can be found in the repository at installation/macos/ import sys sys.path.insert(0, '/Library/PatchServer/') from patchserver.factory import create_app application = create_app() In the Terminal, create a virtual environment within this directory called venv and install the project requirements. $ cd /Library/PatchServer $ virtualenv./venv 8 Chapter 2. Setup the Patch Server Web Application

13 $ source./venv/bin/activate (venv) $ pip install -r./requirements.txt Now install mod_wsgi into the environment (this process may take several minutes): (venv) $ pip install mod_wsgi Change the ownership of the /Library/PatchServer directory to the _www user and group (the server will be run as this user and must have read/write access to this directory): $ sudo chown -R _www:_www /Library/PatchServer Now, in a new Terminal window in /Library/PatchServer, create a command line utility to run and manage the apache server with: $ sudo venv/bin/mod_wsgi-express setup-server patch_server.wsgi --port= user _ www --group _www --server-root=/usr/local/bin/patchserver You can now launch the application using the following command: $ sudo /usr/local/bin/patchserver/apachectl start To launch the patch server automatically when the system boots, write the following launch daemon to /Library/ LaunchDaemons/com.patchserver.daemon.plist. Note: This launch daemon should be owned by root:wheel with mode 644. This file can be found in the repository at installation/macos/ <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" " PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>label</key> <string>com.patchserver.daemon</string> <key>programarguments</key> <array> <string>/usr/local/bin/patchserver/apachectl</string> <string>start</string> </array> <key>runatload</key> <true/> <key>keepalive</key> <true/> </dict> </plist> The following file tree shows the locations of all the required files and resources copied or created during these steps: / Library/ PatchServer/ venv/ patchserver/ patch_server.wsgi requirements.txt <-- Owned by _www:_www <-- Python virtual environment <-- Application dir from GitHub 2.3. Installation on macos 9

14 LaunchDaemons/ com.patchserver.daemon.plist usr/ local/ bin/ patchserver/ <-- Apache server utilities You will be able to access the application using localhost or your computer s IP address at port Chapter 2. Setup the Patch Server Web Application

15 CHAPTER 3 Add Your Patch Server to Jamf Pro Configure the patch server as an External Patch Source in Jamf Pro. Note: External Patch Sources is a feature of Jamf Pro v To add your Patch Server as a Patch External Source in Jamf Pro, go to Settings > Computer Management > Patch Management in the management console. 11

16 Click the + New button next to Patch External Source. On the next screen assign a name to your Patch Server. In the SERVER field enter the URL without with the schema or port and append /jamf/v1: <server-ip-or-hostname>/jamf/v1 In the PORT field enter 5000 (or alternatively, the the port you configured during setup). Note: Only check the Use SSL box if you have configured a TLS certificate and are serving traffic over HTTPS from your Patch Server. If you are using HTTP leave this box unchecked. 12 Chapter 3. Add Your Patch Server to Jamf Pro

17 After saving your settings, a Test button will be available on the Patch Server s page. Click it to verify Jamf Pro can connect to your Patch Server and data is being received. 13

18 Your Patch Server will now be displayed on the Patch Management settings page. 14 Chapter 3. Add Your Patch Server to Jamf Pro

19 You will now be able to add your software titles on your Patch Server from the Computers > Patch Management > Software Titles list. 15

20 16 Chapter 3. Add Your Patch Server to Jamf Pro

21 CHAPTER 4 API Authentication You may optionally generate an API token that will be required for all requests made to the following /api/v1/ title* endpoints to prevent unauthenticated requests to create, update, or delete software titles. Note: The /jamf/v1 and /api/v1/backup endpoints remain open and will not use the API token for authentication. Warning: THe UI does not yet support API authentication. You will receive a Unauthorized: Authentication required message if you attempt to use the New Title + or X (delete) options. See the Patch Server API documentation for how to create an API token. 4.1 Authenticating Requests If you have created an API token, you must include it with your requests in the Authorization header and the Bearer type: Authorization: Bearer 94631ec5c65e4dd19fb81479abdd2929 Requests without this header will be rejected with a 401 status. 4.2 Retrieve/Reset the API Token In the event you lose your API token, you can use a command line utillity such as sqlite3 to retrieve the existing token: 17

22 $ sqlite3 patch_server.db "SELECT * FROM api_token;" If you wish to reset the token, write a stub file into the patchserver application directory named reset_api_token and restart the server. The API token will be deleted from the database and the stub file cleared. You will then be allowed to create a new API token using /api/v1/token. 18 Chapter 4. API Authentication

23 CHAPTER 5 Patch Server API Note: To retrieve the JSON of a patch definition on the server, refer to the Jamf Pro Patch API documentation. 5.1 Endpoints Resource Operation Description Backup GET /api/v1/backup Downloadable archive of all software titles. Software Title POST /api/v1/title Create a patch definition. POST /api/v1/title/(name_id)/version Create a patch version. DELETE /api/v1/title/(name_id) Delete a patch definition. Token POST /api/v1/token Create the API token. Webhooks DELETE /api/v1/webhooks/(webhook_id) Delete a webhook. 5.2 Reference GET /api/v1/backup Download a zipped archive of all patch definitions. Example Request: GET /api/v1/backup HTTP/1.1 Example Response: A successful response will return a 200 status and a zipped archive containing the patch definitions. 19

24 HTTP/ OK Content-Type: application/zip <patch_archive.zip> POST /api/v1/token Create an API token for the server. Example Request: POST /api/v1/token HTTP/1.1 Example Response: A successful response will return a 201 status with the API token. HTTP/ Created Content-Type: application/json "token_created": "94631ec5c65e4dd19fb81479abdd2929" Error Responses A 403 status is returned if an API token already exists. HTTP/ Forbidden Content-Type: application/json "forbidden": "A token already exists for this server" Return POST /api/v1/title Create a new patch definition on the server. Example Request: POST /api/v1/title HTTP/1.1 Content-Type: application/json "id": "Composer", "name": "Composer", "publisher": "Jamf", "appname": "Composer.app", "bundleid": "com.jamfsoftware.composer", "requirements": ["requirementobjects"], "patches": ["versionobjects"], "extensionattributes": ["extensionattributeobjects"] Note: The JSON schema for a patch definition can be found in the project repository at: patchserver/ 20 Chapter 5. Patch Server API

25 routes/validator/schema_full_definition.json Example Response: A successful response will return a 201 status with the numerical database ID as well as the definition s ID. HTTP/ Created Content-Type: application/json "database_id": 1, "id": "Composer" Error Responses A 409 status is returned if you attempt to create a patch definition using an ID that already exists in the database. HTTP/ Conflict Content-Type: application/json "database_conflict": "A software title of the provided name already exists." A 400 status can be returned if your patch definition fails a validation check against the JSON schema. If this occurs, a reason will be provided in the JSON response. HTTP/ Bad Request Content-Type: application/json "invalid_json": "Validation error encountered with submitted JSON for item: /u 'true' is not of type u'boolean'" A 400 status can be returned if your patch definition fails a validation check against the JSON schema. If this occurs, a reason will be provided in the JSON response. HTTP/ Bad Request Content-Type: application/json "invalid_json": "Validation error encountered with submitted JSON: u'true' is not of type u'boolean' for item: /patches/0/components/0/criteria/0/and" POST /api/v1/title/(name_id)/version Create a new patch version for an existing patch definition. Example Request: POST /api/v1/title/composer/version HTTP/1.1 Content-Type: application/json "items": [ "version": "10.1.1", 5.2. Reference 21

26 ] "releasedate": " T10:08:38.270Z", "standalone": true, "minimumoperatingsystem": "10.9", "reboot": false, "killapps": [ "bundleid": "com.jamfsoftware.composer", "appname": "Composer.app" ], "components": [ "name": "Composer", "version": "10.1.1", "criteria": ["requirementsobjects"] ], "capabilities": ["requirementsobjects"], "dependencies": [] Note: The JSON schema for a patch definition can be found in the project repository at: patchserver/ routes/validator/schema_version.json Warning: You may pass multiple version objects in the items array to this endpoint. You must arrange these objects in descending order of the version to be written to the patch definition correctly! Example Response: A successful response will return a 201 status. HTTP/ Created Content-Type: application/json Error Responses A 400 status can be returned if your patch version fails a validation check against the JSON schema. If this occurs, a reason will be provided in the JSON response. HTTP/ Bad Request Content-Type: application/json "invalid_json": "Validation error encountered with submitted JSON: u'true' is not of type u'boolean' for item: /patches/0/components/0/criteria/0/and" DELETE /api/v1/webhooks/(webhook_id) Delete a configured webhook from the server by ID. Example Request: 22 Chapter 5. Patch Server API

27 DELETE /api/v1/webhooks/1 HTTP/1.1 Example Response: A successful response will return a 204 status. HTTP/ No Content Error Responses A 404 status is returned if the specified webhook does not exist. HTTP/ Not Found Content-Type: application/json "webhook_id_not_found": 1 DELETE /api/v1/title/(name_id) Delete a patch definition on the server. Example Request: DELETE /api/v1/title/composer HTTP/1.1 Example Response: A successful response will return a 204 status. HTTP/ No Content Error Responses A 404 status is returned if the specified patch definition does not exist. HTTP/ Not Found Content-Type: application/json "title_not_found": "Composer" 5.2. Reference 23

28 24 Chapter 5. Patch Server API

29 CHAPTER 6 Jamf Pro Patch API 6.1 Endpoints Resource Operation Description Software Title GET /jamf/v1/software List all software titles. GET /jamf/v1/software/(name_ids) List selected software titles. GET /jamf/v1/patch/(name_id) Return a patch definition. 6.2 Reference GET /jamf/v1/software Returns all available software titles on server. Example Request: GET /jamf/v1/software HTTP/1.1 Accept: application/json Example Response: A successful response will return a 200 status and an array of software title summaries. HTTP/ OK Content-Type: application/json [ "currentversion": "10.1.1", "id": "Composer", "lastmodified": " T17:39:58Z", "name": "Composer", "publisher": "Jamf" 25

30 ],,, "currentversion": "10.1.1", "id": "JamfAdmin", "lastmodified": " T17:39:51Z", "name": "Jamf Admin", "publisher": "Jamf" "currentversion": "10.1.1", "id": "JamfImaging", "lastmodified": " T17:39:53Z", "name": "Jamf Imaging", "publisher": "Jamf" "currentversion": "10.1.1", "id": "JamfRemote", "lastmodified": " T17:39:56Z", "name": "Jamf Remote", "publisher": "Jamf" GET /jamf/v1/software/(name_ids) Returns a selection of software titles on server. The software title IDs must be passed as a comma separated string. Example Request: GET /jamf/v1/software/composer,jamfimaging HTTP/1.1 Accept: application/json Example Response: A successful response will return a 200 status and an array of software title summaries. HTTP/ OK Content-Type: application/json [ ], "currentversion": "10.1.1", "id": "Composer", "lastmodified": " T17:39:58Z", "name": "Composer", "publisher": "Jamf" "currentversion": "10.1.1", "id": "JamfImaging", "lastmodified": " T17:39:53Z", "name": "Jamf Imaging", "publisher": "Jamf" Error Responses 26 Chapter 6. Jamf Pro Patch API

31 GET /jamf/v1/software/composers,jamfimager HTTP/1.1 Accept: application/json A 404 status is returned if any of the specified software titles do not exist. HTTP/ Not Found Content-Type: application/json "title_not_found": [ "Composers", "JamfImager" ] GET /jamf/v1/patch/(name_id) Returns a selection of software titles on server. The software title IDs must be passed as a comma separated string. Example Request: GET /jamf/v1/patch/composer HTTP/1.1 Accept: application/json Example Response: A successful response will return a 200 status and the full patch definition for the specified software title. HTTP/ OK Content-Type: application/json "id": "Composer", "name": "Composer", "publisher": "Jamf", "appname": "Composer.app", "bundleid": "com.jamfsoftware.composer", "requirements": ["requirementobjects"], "patches": ["versionobjects"], "extensionattributes": ["extensionattributeobjects"] Error Responses GET /jamf/v1/software/composers HTTP/1.1 Accept: application/json A 404 status is returned if any of the specified software title does not exist. HTTP/ Not Found Content-Type: application/json "title_not_found": "Composers" 6.2. Reference 27

32 28 Chapter 6. Jamf Pro Patch API

33 CHAPTER 7 User Interface In a browser, the root of the patch server will take you to the main page where you can view and manage the available software titles. 7.1 Upload a New Software Title Click the New Title button to bring up the file selector. Browse for the JSON file of the patch definition and then click Upload. 29

34 You will recieve a confirmation of a successful upload. 7.2 Upload Errors If the patch server rejects your upload of a patch definition, it will provide a notification with the reason so you can correct the cause and retry. There is a conflict with an existing software title. The patch definition failed validation, but the cause is displayed. 30 Chapter 7. User Interface

35 7.3 View a Patch Definition Click the blue View icon for a software title to be taken to the URL of the patch definition JSON. 7.4 Delete a Software Title Click the red X button for a software title to delete it. Warning: This action cannot be undone. 7.5 Backup Your Patch Definitions Click the Backup button and you will download a zipped archive of all patch definitions for all your software titles. Note: This is a feature of the API that you can use with automation for scheduled backups of the server View a Patch Definition 31

36 7.6 Webhooks The patch server can send notifications on changes to software titles on the server to remote servers via HTTP POST. To configure a webhook, click the New Webhook button to bring up the configuration screen. Enter the remote URL and select from the available options: Enabled: Enable or disable this webhook. Verify SSL: Enable or disable SSL verification (HTTPS). Send Definition: When an event is sent, include a fully copy of the entire patch definition for the software title. 32 Chapter 7. User Interface

37 HTTP Routing Table /api GET /api/v1/backup, 19 POST /api/v1/title, 20 POST /api/v1/title/(name_id)/version, 21 POST /api/v1/token, 20 DELETE /api/v1/title/(name_id), 23 DELETE /api/v1/webhooks/(webhook_id), 22 /jamf GET /jamf/v1/patch/(name_id), 27 GET /jamf/v1/software, 25 GET /jamf/v1/software/(name_ids), 26 33

Patch Server for Jamf Pro Documentation

Patch Server for Jamf Pro Documentation Patch Server for Jamf Pro Documentation Release 0.8.2 Bryson Tyrrell Jun 06, 2018 Contents 1 Change History 3 2 Using Patch Starter Script 7 3 Troubleshooting 9 4 Testing the Patch Server 11 5 Running

More information

Jackalope Documentation

Jackalope Documentation Jackalope Documentation Release 0.2.0 Bryson Tyrrell May 23, 2017 Getting Started 1 Create the Slack App for Your Team 3 2 Deploying the Slack App 5 2.1 Run from application.py.........................................

More information

I hate money. Release 1.0

I hate money. Release 1.0 I hate money Release 1.0 Nov 01, 2017 Contents 1 Table of content 3 2 Indices and tables 15 i ii «I hate money» is a web application made to ease shared budget management. It keeps track of who bought

More information

ExtraHop 7.3 ExtraHop Trace REST API Guide

ExtraHop 7.3 ExtraHop Trace REST API Guide ExtraHop 7.3 ExtraHop Trace REST API Guide 2018 ExtraHop Networks, Inc. All rights reserved. This manual in whole or in part, may not be reproduced, translated, or reduced to any machinereadable form without

More information

Scripting Opportunities for Systems Administrators. Greg Neagle, Walt Disney Animation Studios

Scripting Opportunities for Systems Administrators. Greg Neagle, Walt Disney Animation Studios Scripting Opportunities for Systems Administrators Greg Neagle, Walt Disney Animation Studios This is not a presentation on scripting. Why? System configuration #!/bin/sh # add staff to lpadmin group so

More information

ClickToCall SkypeTest Documentation

ClickToCall SkypeTest Documentation ClickToCall SkypeTest Documentation Release 0.0.1 Andrea Mucci August 04, 2015 Contents 1 Requirements 3 2 Installation 5 3 Database Installation 7 4 Usage 9 5 Contents 11 5.1 REST API................................................

More information

LUCITY REST API INTRODUCTION AND CORE CONCEPTS

LUCITY REST API INTRODUCTION AND CORE CONCEPTS LUCITY REST API INTRODUCTION AND CORE CONCEPTS REST API OFFERINGS Lucity Citizen Portal REST API Lucity REST API Both products are included in our REST API Historically we also offered a COM API and a.net

More information

GMusicProcurator Documentation

GMusicProcurator Documentation GMusicProcurator Documentation Release 0.5.0 Mark Lee Sep 27, 2017 Contents 1 Features 3 2 Table of Contents 5 2.1 Installation................................................ 5 2.1.1 Requirements..........................................

More information

Libra Client Documentation

Libra Client Documentation Libra Client Documentation Release 2015-10-17-beta Andrew Hutchings October 17, 2015 Contents 1 Introduction 1 2 Installation 3 2.1 From Ubuntu Package via PPA..................................... 3 2.2

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

VMware AirWatch Content Gateway for Linux. VMware Workspace ONE UEM 1811 Unified Access Gateway

VMware AirWatch Content Gateway for Linux. VMware Workspace ONE UEM 1811 Unified Access Gateway VMware AirWatch Content Gateway for Linux VMware Workspace ONE UEM 1811 Unified Access Gateway You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications File Manager allows you to take full control of your website files. You can copy, move, delete, rename and edit files, create and remove directories, change file permissions and upload files from your

More information

EasyMorph Server Administrator Guide

EasyMorph Server Administrator Guide EasyMorph Server Administrator Guide Version 3.9.2 December, 24 th 2018 Table of Contents TABLE OF CONTENTS... 1 PREREQUISITES... 2 Memory requirements... 2 INSTALLATION... 2 License key... 3 SERVER SERVICE

More information

Configuring Apache Knox SSO

Configuring Apache Knox SSO 3 Configuring Apache Knox SSO Date of Publish: 2018-07-15 http://docs.hortonworks.com Contents Setting Up Knox SSO...3 Configuring an Identity Provider (IdP)... 3 Configuring an LDAP/AD Identity Provider

More information

Hortonworks DataFlow

Hortonworks DataFlow Hortonworks DataFlow Installing NiFi (February 28, 2018) docs.hortonworks.com Hortonworks DataFlow: Installing NiFi Copyright 2012-2018 Hortonworks, Inc. Some rights reserved. Except where otherwise noted,

More information

Usage of "OAuth2" policy action in CentraSite and Mediator

Usage of OAuth2 policy action in CentraSite and Mediator Usage of "OAuth2" policy action in CentraSite and Mediator Introduction Prerequisite Configurations Mediator Configurations watt.server.auth.skipformediator The pg.oauth2 Parameters Asset Creation and

More information

CGI / HTTP(s) GET NETIO M2M API protocols docs

CGI / HTTP(s) GET NETIO M2M API protocols docs CGI / HTTP(s) GET NETIO M2M API protocols docs Short summary CGI protocol is one way control only, command based M2M API protocol, where NETIO device is HTTP(s) server accepting commands sent over HTTP(s)

More information

Bitnami Re:dash for Huawei Enterprise Cloud

Bitnami Re:dash for Huawei Enterprise Cloud Bitnami Re:dash for Huawei Enterprise Cloud Description Re:dash is an open source data visualization and collaboration tool. It was designed to allow fast and easy access to billions of records in all

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

ExtraHop Rest API Guide

ExtraHop Rest API Guide ExtraHop Rest API Guide Version 5.0 Introduction to ExtraHop REST API The ExtraHop REST application programming interface (API) enables you to automate administration and configuration tasks on your ExtraHop

More information

Reset the Admin Password with the ExtraHop Rescue CD

Reset the Admin Password with the ExtraHop Rescue CD Reset the Admin Password with the ExtraHop Rescue CD Published: 2018-01-19 This guide explains how to reset the administration password on physical and virtual ExtraHop appliances with the ExtraHop Rescue

More information

Kaseya 2. Installation guide. Version R8. English

Kaseya 2. Installation guide. Version R8. English Kaseya 2 Kaseya Server Setup Installation guide Version R8 English October 24, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

StorageGRID Webscale 11.0 Tenant Administrator Guide

StorageGRID Webscale 11.0 Tenant Administrator Guide StorageGRID Webscale 11.0 Tenant Administrator Guide January 2018 215-12403_B0 doccomments@netapp.com Table of Contents 3 Contents Administering a StorageGRID Webscale tenant account... 5 Understanding

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

Grapevine web hosting user manual. 12 August 2005

Grapevine web hosting user manual. 12 August 2005 Grapevine web hosting user manual 12 August 2005 Grapevine web hosting user manual 2 Contents Contents... 2 Introduction... 4 System features... 4 How it looks... 5 Main navigation... 5 Reports... 6 Web

More information

websnort Documentation

websnort Documentation websnort Documentation Release 0.8 Steve Henderson Jul 04, 2018 Contents 1 Features 3 2 Contents 5 3 Issues 15 Python Module Index 17 i ii Websnort is an Open Source web service for analysing pcap files

More information

ExtraHop 6.0 ExtraHop REST API Guide

ExtraHop 6.0 ExtraHop REST API Guide ExtraHop 6.0 ExtraHop REST API Guide 2018 ExtraHop Networks, Inc. All rights reserved. This manual in whole or in part, may not be reproduced, translated, or reduced to any machinereadable form without

More information

Reporting with MunkiReport. John Eberle and Rick Heil

Reporting with MunkiReport. John Eberle and Rick Heil Reporting with MunkiReport John Eberle (@tuxudo) and Rick Heil (@refreshingapathy) John: Mac Admin @ University of Pittsburgh @tuxudo @tuxudo github.com/tuxudo Rick: Senior IT Manager @ Myelin @refrshingapathy

More information

Abstract. This is the MySQL OS X extract from the MySQL 5.5 Reference Manual. For legal information, see the Legal Notices.

Abstract. This is the MySQL OS X extract from the MySQL 5.5 Reference Manual. For legal information, see the Legal Notices. MySQL and OS X Abstract This is the MySQL OS X extract from the MySQL 5.5 Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit either the MySQL Forums

More information

Deploying Code42 CrashPlan with Jamf Pro. Technical Paper Jamf Pro 9.0 or Later 21 January 2019

Deploying Code42 CrashPlan with Jamf Pro. Technical Paper Jamf Pro 9.0 or Later 21 January 2019 Deploying Code42 CrashPlan with Jamf Pro Technical Paper Jamf Pro 9.0 or Later 21 January 2019 copyright 2002-2019 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate.

More information

Table of Contents. Configure and Manage Logging in to the Management Portal Verify and Trust Certificates

Table of Contents. Configure and Manage Logging in to the Management Portal Verify and Trust Certificates Table of Contents Configure and Manage Logging in to the Management Portal Verify and Trust Certificates Configure System Settings Add Cloud Administrators Add Viewers, Developers, or DevOps Administrators

More information

BMC FootPrints 12 Integration with Remote Support

BMC FootPrints 12 Integration with Remote Support BMC FootPrints 12 Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are

More information

User's Guide c-treeace SQL Explorer

User's Guide c-treeace SQL Explorer User's Guide c-treeace SQL Explorer Contents 1. c-treeace SQL Explorer... 4 1.1 Database Operations... 5 Add Existing Database... 6 Change Database... 7 Create User... 7 New Database... 8 Refresh... 8

More information

Managing Software Images Using Software Management

Managing Software Images Using Software Management CHAPTER 8 Managing Software Images Using Software Management Manually upgrading your devices to the latest software version can be an error-prone, and time-consuming process. To ensure rapid, reliable

More information

Seeder Documentation. Release 0.1. Visgean Skeloru

Seeder Documentation. Release 0.1. Visgean Skeloru Seeder Documentation Release 0.1 Visgean Skeloru Nov 06, 2018 Contents 1 Installation 3 2 Docker Compose 5 3 Deploying 7 4 Integration with legacy system 9 5 Crons 11 6 Translation 13 7 Terminology 15

More information

datapusher Documentation

datapusher Documentation datapusher Documentation Release 1.0 Open Knowledge International July 13, 2018 Contents 1 Development installation 3 2 Production installation and Setup 5 2.1 Download and Install (All CKAN Versions)...............................

More information

FileCruiser. Administrator Portal Guide

FileCruiser. Administrator Portal Guide FileCruiser Administrator Portal Guide Contents Administrator Portal Guide Contents Login to the Administration Portal 1 Home 2 Capacity Overview 2 Menu Features 3 OU Space/Team Space/Personal Space Usage

More information

APPLICATION USER GUIDE

APPLICATION USER GUIDE APPLICATION USER GUIDE Application: FileManager Version: 3.2 Description: File Manager allows you to take full control of your website files. You can copy, move, delete, rename and edit files, create and

More information

ACE Live on RSP: Installation Instructions

ACE Live on RSP: Installation Instructions ACE Live on RSP ACE Live on RSP: Installation Instructions These installation instructions apply to OPNET ACE Live on RSP Release 7.1.3. You can find the latest version of this document at the OPNET Support

More information

Developer Cockpit. Introduction 1. Prerequisites 2. Application Lifecycle in MindSphere 3. User interfaces "Developer Cockpit" 4

Developer Cockpit. Introduction 1. Prerequisites 2. Application Lifecycle in MindSphere 3. User interfaces Developer Cockpit 4 Introduction 1 Prerequisites 2 Application Lifecycle in MindSphere 3 System Manual User interfaces "Developer Cockpit" 4 User rights in "Developer Cockpit" 5 Workflow of Developer Cockpit 6 Develop applications

More information

Configuring Apache Knox SSO

Configuring Apache Knox SSO 3 Configuring Apache Knox SSO Date of Publish: 2018-07-15 http://docs.hortonworks.com Contents Configuring Knox SSO... 3 Configuring an Identity Provider (IdP)... 4 Configuring an LDAP/AD Identity Provider

More information

Getting Started with launchd for Sys Admins. Penn State MacAdmins Conference 2012

Getting Started with launchd for Sys Admins. Penn State MacAdmins Conference 2012 Getting Started with launchd for Sys Admins Penn State MacAdmins Conference 2012 whoami Matt Hansen Systems Administrator Penn State College of Education @hansen_m history Released with 10.4 Tiger (2005)

More information

Metasploit. Installation Guide Release 4.4

Metasploit. Installation Guide Release 4.4 Metasploit Installation Guide Release 4.4 TABLE OF CONTENTS About this Guide Target Audience...1 Organization...1 Document Conventions...1 Support...2 Support for Metasploit Pro and Metasploit Express...2

More information

SafeConsole On-Prem Install Guide. version DataLocker Inc. July, SafeConsole. Reference for SafeConsole OnPrem

SafeConsole On-Prem Install Guide. version DataLocker Inc. July, SafeConsole. Reference for SafeConsole OnPrem version 5.2.2 DataLocker Inc. July, 2017 SafeConsole Reference for SafeConsole OnPrem 1 Contents Introduction................................................ 2 How do the devices become managed by SafeConsole?....................

More information

PHPBasket 4 Administrator Documentation

PHPBasket 4 Administrator Documentation PHPBasket 4 Please ensure you have the latest version of this document from http://www.phpbasket.com Contents CONTENTS 2 REQUIREMENTS 3 INSTALLATION 4 PREPARATION 4 UPLOAD 4 INSTALLATION 4 ADMINISTRATOR

More information

DCLI User's Guide. Data Center Command-Line Interface

DCLI User's Guide. Data Center Command-Line Interface Data Center Command-Line Interface 2.10.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit

More information

DCLI User's Guide. Modified on 20 SEP 2018 Data Center Command-Line Interface

DCLI User's Guide. Modified on 20 SEP 2018 Data Center Command-Line Interface Modified on 20 SEP 2018 Data Center Command-Line Interface 2.10.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

VMware AirWatch Content Gateway Guide for Linux For Linux

VMware AirWatch Content Gateway Guide for Linux For Linux VMware AirWatch Content Gateway Guide for Linux For Linux Workspace ONE UEM v9.7 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

SeaPea v2.0 for Mac OSX 10.4.X X

SeaPea v2.0 for Mac OSX 10.4.X X ##################### CLASSIFICATION: SECRET ##################### Last Updated: 11/06/08 SeaPea v2.0 for Mac OSX 10.4.X - 10.5.X Developer: IOC/EDG/AED/UDB Version: SeaPea v2.0 Introduction SeaPea is

More information

Early Data Analyzer Web User Guide

Early Data Analyzer Web User Guide Early Data Analyzer Web User Guide Early Data Analyzer, Version 1.4 About Early Data Analyzer Web Getting Started Installing Early Data Analyzer Web Opening a Case About the Case Dashboard Filtering Tagging

More information

Release Notes. Dell SonicWALL SRA Release Notes

Release Notes. Dell SonicWALL SRA Release Notes Secure Remote Access Contents Platform Compatibility... 1 Licensing on the Dell SonicWALL SRA Appliances and Virtual Appliance... 1 Important Differences between the SRA Appliances... 2 Known Issues...

More information

Integrate HEAT Software with Bomgar Remote Support

Integrate HEAT Software with Bomgar Remote Support Integrate HEAT Software with Bomgar Remote Support 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

More information

Single Sign-On for PCF. User's Guide

Single Sign-On for PCF. User's Guide Single Sign-On for PCF Version 1.2 User's Guide 2018 Pivotal Software, Inc. Table of Contents Table of Contents Single Sign-On Overview Installation Getting Started with Single Sign-On Manage Service Plans

More information

Abstract. This is the MySQL OS X extract from the MySQL 5.7 Reference Manual. For legal information, see the Legal Notices.

Abstract. This is the MySQL OS X extract from the MySQL 5.7 Reference Manual. For legal information, see the Legal Notices. MySQL and OS X Abstract This is the MySQL OS X extract from the MySQL 5.7 Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit either the MySQL Forums

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

ZipRecruiter Apply Webhook Documentation. ZR ATS Integration Team. Version 1.1,

ZipRecruiter Apply Webhook Documentation. ZR ATS Integration Team. Version 1.1, ZipRecruiter Apply Webhook Documentation ZR ATS Integration Team Version 1.1, 2017-10-12 Table of Contents Introduction................................................................................ 1

More information

Anchore Container Image Scanner Plugin

Anchore Container Image Scanner Plugin Anchore Container Image Scanner Plugin Plugin Information View Anchore Container Image Scanner on the plugin site for more information. Older versions of this plugin may not be safe to use. Please review

More information

DCLI User's Guide. Data Center Command-Line Interface 2.9.1

DCLI User's Guide. Data Center Command-Line Interface 2.9.1 Data Center Command-Line Interface 2.9.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit

More information

LAB EXERCISE: RedHat OpenShift with Contrail 5.0

LAB EXERCISE: RedHat OpenShift with Contrail 5.0 LAB EXERCISE: RedHat OpenShift with Contrail 5.0 Author Savithru Lokanath , v1.4 Prerequisites An AWS account with permissions to CRUD Compute, Storage & Network resources CentOS

More information

Trellis Magento 2 Salsify Connector

Trellis Magento 2 Salsify Connector Trellis Magento 2 Salsify Connector Version 0.x 09/01/2018 Table of Contents Introduction 3 Overview 3 Purpose of The Magento 2 Salsify Connector 3 Compatibility 4 Installation & Configuration 5 Magento

More information

HEAT Software Integration with Remote Support

HEAT Software Integration with Remote Support HEAT Software Integration with Remote Support 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their

More information

StorageGRID Webscale 11.0 Administrator Guide

StorageGRID Webscale 11.0 Administrator Guide StorageGRID Webscale 11.0 Administrator Guide January 2018 215-12402_C0 doccomments@netapp.com Table of Contents 3 Contents Understanding the StorageGRID Webscale system... 8 What the StorageGRID Webscale

More information

Browser Configuration Reference

Browser Configuration Reference Sitecore CMS 7.0 or later Browser Configuration Reference Rev: 2013-09-30 Sitecore CMS 7.0 or later Browser Configuration Reference Optimizing Internet Explorer and other web browsers to work with Sitecore

More information

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS)

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS) Overview Contents This document provides an overview to web server technology particularly Microsoft s Internet Information Server (IIS) and its relationship with. Although this article has been written

More information

Abstract. This is the MySQL OS X extract from the MySQL 5.6 Reference Manual. For legal information, see the Legal Notices.

Abstract. This is the MySQL OS X extract from the MySQL 5.6 Reference Manual. For legal information, see the Legal Notices. MySQL and OS X Abstract This is the MySQL OS X extract from the MySQL 5.6 Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit either the MySQL Forums

More information

Lesson 7: Defining an Application

Lesson 7: Defining an Application 35 Lesson 7: Defining an Application In this lesson, we will define two new applications in the realm server, with an endpoint for each application. We will also define two new transports to be used by

More information

SteelEye Protection Suite for Windows Microsoft Internet Information Services Recovery Kit v Administration Guide

SteelEye Protection Suite for Windows Microsoft Internet Information Services Recovery Kit v Administration Guide SteelEye Protection Suite for Windows Microsoft Internet Information Services Recovery Kit v8.0.1 Administration Guide March 2014 This document and the information herein is the property of SIOS Technology

More information

BaasBox. Open Source Backend as a Service. Otto Hylli

BaasBox. Open Source Backend as a Service. Otto Hylli BaasBox Open Source Backend as a Service Otto Hylli Overview (1/2) Developed by BaasBox an Italian startup company Project was declared started on 1st of July 2012 on the BaasBox blog Open source under

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Developing and Deploying vsphere Solutions, vservices, and ESX Agents vsphere 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Salesforce IoT REST API Getting Started Guide

Salesforce IoT REST API Getting Started Guide Salesforce IoT REST API Getting Started Guide Version 42.0, Spring 18 @salesforcedocs Last updated: March 9, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Nesstar Server Configuration Tool User Guide

Nesstar Server Configuration Tool User Guide Nesstar Server Configuration Tool User Guide Version 3.50 The Configuration Tool allows the server Administrator to edit most of the server configuration properties and to perform basic administrative

More information

emam and Adobe Premiere Panel Guide

emam and Adobe Premiere Panel Guide emam and Adobe Premiere Panel Guide Version 3.8 April, 2017 Notice The content in this document represents the current view of Empress Media Asset Management, LLC as of the date of publication. As Empress

More information

Akana API Platform: Upgrade Guide

Akana API Platform: Upgrade Guide Akana API Platform: Upgrade Guide Version 8.0 to 8.2 Akana API Platform Upgrade Guide Version 8.0 to 8.2 November, 2016 (update v2) Copyright Copyright 2016 Akana, Inc. All rights reserved. Trademarks

More information

Load testing with WAPT: Quick Start Guide

Load testing with WAPT: Quick Start Guide Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

Bitnami Pimcore for Huawei Enterprise Cloud

Bitnami Pimcore for Huawei Enterprise Cloud Bitnami Pimcore for Huawei Enterprise Cloud Description Pimcore is the open source platform for managing digital experiences. It is the consolidated platform for web content management, product information

More information

Casper Suite Release Notes. Version 8.5

Casper Suite Release Notes. Version 8.5 Casper Suite Release Notes Version 8.5 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software 301 4th Ave

More information

Automation Anywhere Enterprise 10 LTS

Automation Anywhere Enterprise 10 LTS Automation Anywhere Enterprise 10 LTS Document Version: 1.3 Installation Guide Date of Publication: 15 th November, 2016 Update(s) to this document edition: Table of Contents 1. Client Prerequisites Processor

More information

CA Service Desk Integration with Remote Support

CA Service Desk Integration with Remote Support CA Service Desk Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the

More information

SafeConsole On-Prem Install Guide

SafeConsole On-Prem Install Guide SafeConsole On-Prem Install Guide This guide applies to SafeConsole 5.0.5 Introduction This guide describes how to install a new SafeConsole server on Windows using the SafeConsole installer. As an option,

More information

Configuration Export and Import

Configuration Export and Import This chapter includes the following sections:, page 1 From the Export & Import, you can schedule configuration backup for Cisco UCS Central and the registered Cisco UCS Domains. You can schedule export

More information

StreamSets Control Hub Installation Guide

StreamSets Control Hub Installation Guide StreamSets Control Hub Installation Guide Version 3.2.1 2018, StreamSets, Inc. All rights reserved. Table of Contents 2 Table of Contents Chapter 1: What's New...1 What's New in 3.2.1... 2 What's New in

More information

Salesforce Mobile App Security Guide

Salesforce Mobile App Security Guide Salesforce Mobile App Security Guide Version 3, 0 @salesforcedocs Last updated: October 11, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Administering vrealize Log Insight. 05-SEP-2017 vrealize Log Insight 4.3

Administering vrealize Log Insight. 05-SEP-2017 vrealize Log Insight 4.3 Administering vrealize Log Insight 05-SEP-2017 4.3 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation,

More information

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Demo Introduction Keywords: Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Goal of Demo: Oracle Big Data Preparation Cloud Services can ingest data from various

More information

Cisco Prime Service Catalog Virtual Appliance Quick Start Guide 2

Cisco Prime Service Catalog Virtual Appliance Quick Start Guide 2 Cisco Prime Service Catalog 11.1.1 Virtual Appliance Quick Start Guide Cisco Prime Service Catalog 11.1.1 Virtual Appliance Quick Start Guide 2 Introduction 2 Before You Begin 2 Preparing the Virtual Appliance

More information

Bitnami JRuby for Huawei Enterprise Cloud

Bitnami JRuby for Huawei Enterprise Cloud Bitnami JRuby for Huawei Enterprise Cloud Description JRuby is a 100% Java implementation of the Ruby programming language. It is Ruby for the JVM. JRuby provides a complete set of core built-in classes

More information

DreamFactory Security Guide

DreamFactory Security Guide DreamFactory Security Guide This white paper is designed to provide security information about DreamFactory. The sections below discuss the inherently secure characteristics of the platform and the explicit

More information

VMware AirWatch Content Gateway Guide For Linux

VMware AirWatch Content Gateway Guide For Linux VMware AirWatch Content Gateway Guide For Linux AirWatch v9.2 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. This product

More information

f5-icontrol-rest Documentation

f5-icontrol-rest Documentation f5-icontrol-rest Documentation Release 1.3.10 F5 Networks Aug 04, 2018 Contents 1 Overview 1 2 Installation 3 2.1 Using Pip................................................. 3 2.2 GitHub..................................................

More information

Notification Template Limitations. Bridge Limitations

Notification Template Limitations. Bridge Limitations Oracle Cloud Known Issues for Oracle Identity Cloud Service Release 18.1.2 E55915-17 February 2018 Notification Template Limitations Note the following limitations with Oracle Identity Cloud Service notification

More information

McAfee epolicy Orchestrator Release Notes

McAfee epolicy Orchestrator Release Notes McAfee epolicy Orchestrator 5.9.1 Release Notes Contents About this release What's new Resolved issues Known issues Installation information Getting product information by email Where to find product documentation

More information

Surveyor Getting Started Guide

Surveyor Getting Started Guide Surveyor Getting Started Guide This Getting Started Guide shows you how you can get the most out of Surveyor from start to finish. Surveyor can accomplish a number of tasks that will be extremely beneficial

More information

LiveNX Upgrade Guide from v5.2.0 to v5.2.1

LiveNX Upgrade Guide from v5.2.0 to v5.2.1 LIVEACTION, INC. LiveNX Upgrade Guide from v5.2.0 to v5.2.1 UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction

More information

SonicOS Enhanced Release Notes

SonicOS Enhanced Release Notes SonicOS Contents Platform Compatibility... 1 Known Issues... 2 Resolved Known Issues... 3 Upgrading SonicOS Enhanced Image Procedures... 4 Related Technical Documentation...7 Platform Compatibility The

More information

Installation Guide. for 6.5 and all add-on modules

Installation Guide. for 6.5 and all add-on modules Kaseya Server Setup Installation Guide for 6.5 and all add-on modules February 11, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

Silk Performance Manager Installation and Setup Help

Silk Performance Manager Installation and Setup Help Silk Performance Manager 18.5 Installation and Setup Help Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright 2004-2017 Micro Focus. All rights reserved.

More information

Configuring the SMA 500v Virtual Appliance

Configuring the SMA 500v Virtual Appliance Using the SMA 500v Virtual Appliance Configuring the SMA 500v Virtual Appliance Registering Your Appliance Using the 30-day Trial Version Upgrading Your Appliance Configuring the SMA 500v Virtual Appliance

More information

PRODUCT MANUAL. idashboards Reports Admin Manual. Version 9.1

PRODUCT MANUAL. idashboards Reports Admin Manual. Version 9.1 PRODUCT MANUAL idashboards Reports Admin Manual Version 9.1 idashboards Reports Admin Manual Version 9.1 No part of the computer software or this document may be reproduced or transmitted in any form or

More information

QuickStart Guide for Managing Computers. Version

QuickStart Guide for Managing Computers. Version QuickStart Guide for Managing Computers Version 10.6.0 copyright 2002-2018 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate. Jamf 100 Washington Ave S Suite 1100

More information

vrealize Log Insight Developer Resources

vrealize Log Insight Developer Resources vrealize Log Insight Developer Resources vrealize Log Insight 4.3 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information