Managing System Administration Settings

Size: px
Start display at page:

Download "Managing System Administration Settings"

Transcription

1 This chapter contains the following sections: Setting Up the Outgoing Mail Server, page 1 Working with Templates, page 2 Customizing an Template, page 3 Configuring System Parameters (Optional), page 5 Updating the License, page 7 Verifying License Utilization, page 7 Viewing License Utilization History, page 8 Viewing Resource Usage Data, page 8 Edit Application Categories, page 9 Customizing the Portal, page 10 Customizing Reports, page 13 Advanced Controls, page 14 User Menus, page 15 Setting User Permissions, page 16 Managing System Tasks, page 16 Managing Icons, page 20 Support Information, page 22 Setting Up the Outgoing Mail Server All outgoing s from Cisco UCS Director require an SMTP server. OL

2 Working with Templates Choose the Mail Setup tab. In the Mail Setup pane, complete the following fields: Name Description Outgoing Server (SMTP) field Outgoing SMTP Port field Outgoing SMTP User field Outgoing SMTP Password field Address field Cloupia Server IP address field The outgoing SMTP server address. The outgoing SMTP server port number. The user ID. The user password. The sender s address The IP address or DNS name of the Cisco UCS Director virtual appliance. This field is used to create proper links in s for user workflow actions. Send Test check box Check this check box to test the current settings. Click Save. Working with Templates Cisco UCS Director has a notification mechanism through which you can configure s to be sent to an administrator when specific events occur. For example, when a VM is provisioned. In addition, if approvals are required for any task, an notification can be sent to an administrator or to the group administrator. Note You can specify multiple recipients for an notification. Use a comma as a separator for multiple addresses. Cisco UCS Director provides a set of templates in the HTML format in the filesystem of the server appliance. These templates are available in the following location: /opt/infra/inframgr/ templates You can edit not just the message details in the s, but also the formatting and presentation details such as font, colors, and table borders. You must login to the server appliance, and access the file system to customize the message or formatting styles of the notification. Following are the templates that are available and the corresponding HTML files that you can edit. 2 OL

3 Customizing an Template Template Name Life Cycle Notification Template Failure Notification Template CreateVM Notification Template Trigger Notification Template User VM Action Notification Template Workflow Notification Template VM Provision Notification Template Technical Notification Template HTML File Name LifeCycleNotification Template.html FailureNotification Template.html CreateVMNotification Template.html TriggerNotification Template.html UserVMActionNotification Template.html WorkflowNotification Template.html Notification Sender.html Technical Sender.html Customizing an Template Before You Begin You must be logged in to the appliance to complete this task. Take a backup of the templates prior to editing it. By doing so, you can revert to the original templates at a later point in time. Go to the Templates folder in the filesystem of the server appliance. [root@xyz] # cd opt [root@xyz opt] # cd infra [root@xyz infra] # cd inframgr [root@xyz inframgr] # cd Templates [root@xyz Templates] # Run the ls command to view the list of templates and their corresponding HTML versions that are available. Open the template file that you want to customize. [root@xyz] # vi LifecycleNotification Template.html Important You must always open the.html version of the template. Do not edit the XML files. Edit the fields that you want to customize. OL

4 Customizing an Template Step 6 Important You can modify not just the message details in the s, but also the formatting and presentation details such as font, colors, and table borders. However, do not modify Java-code related information or the call names included in the template. The templates are supported in different languages. This multi-language support is defined by the rbutil.getstring phrase for each parameter. If you delete this string while editing your template, then the changes you make to the current template will not be available in other languages. Ensure that the file permissions are the same as the default permissions. Run the :wq command to save and exit the edit mode. Example of Editing an Template This example shows how to access the file system and how to open an template for editing. [root@xyz] # cd opt [root@xyz opt] # cd infra [root@xyz infra] # cd inframgr [root@xyz inframgr] # cd Templates [root@xyz Templates] # ls LifeCycleNotification Template.html LifeCycleNotification Template.xml FailureNotification Template.html FailureNotification Template.xml CreateVMNotification Template.html CreateVMNotification Template.xml TriggerNotification Template.html TriggerNotification Template.xml UserVMActionNotification Template.html UserVMActionNotification Template.xml WorkflowNotification Template.html WorkflowNotification Template.xml Notification Sender.html Notification Sender.xml Technical Sender.html Technical Sender.xml [root@xyz inframgr] # vi CreateVMNotification Template.html <head> <style type='text/css'>\r\n out.println(".c1 {font-weight: normal;\r\ntext-align: left;\r\nfont-size: 8pt;\r\nfont-family: Verdana, Arial, sans-serif}\r\n"); out.println(".c2 {font-weight: bold;\r\ntext-align: left;\r\nfont-size: 8pt;\r\nfont-family: Verdana, Arial, sans-serif}\r\n"); </style> </head> <body bgcolor=#ffffff> <table class='c1' border=0 cellspacing=2 cellpadding=1 width=100%> <tr> <td bgcolor=#bfdbfd><b> + rbutil.getstring ("System.string.ET.vm.id")</b></td> <td bgcolor=#bfdbfd><b> + rbutil.getstring ("System.string.ET.Cloud.name")</b></td> <td bgcolor=#bfdbfd><b> + rbutil.getstring ("System.string.ET.instance.name")</b></td> <td bgcolor=#bfdbfd><b> + rbutil.getstring ("System.string.ET.ip.address")</b></td> <td bgcolor=#bfdbfd><b> + rbutil.getstring ("System.string.ET.hostname")</b></td> </tr> <Cloupia:ReportScript> var dataobject = request.getdataobject(); for(var i = 0; i< dataobject.size(); i =i+1) 4 OL

5 Configuring System Parameters (Optional) { var vmc = dataobject.get(i); println("<tr>"); println("<td bgcolor=#ffffff>"); println(""+vmc.gvm.getvmid()); println("</td>"); println("<td bgcolor=#ffffff>"); println(""+vmc.gvm.getaccountname()); println("</td>"); println("<td bgcolor=#ffffff>"); println(""+vmc.gvm.getinstanceid()); println("</td>"); println("<td bgcolor=#ffffff>"); println(""+vmc.gvm.gethostname()); println("</td>"); println("<td bgcolor=#ffffff>"); println(""+vmc.gvm.getipaddress()); println("</td>"); println("</tr>"); } </Cloupia:ReportScript> </table> </td></tr></table> </body> [root@xyz Templates]# ls -l *html -rw-r--r-- 1 root root 7040 Mar 27 02:59 CreateVMNotification Template.html -rw-r--r-- 1 root root 4674 Mar 27 02:59 FailureNotification Template.html -rw-r--r-- 1 root root 1569 Mar 27 02:59 LifeCycleNotification Template.html -rw-r--r-- 1 root root Mar 27 02:59 Notification Sender.html -rw-r--r-- 1 root root 8946 Mar 27 02:59 Technical Sender.html -rw-r--r-- 1 root root 4387 Mar 27 02:59 TriggerNotification Template.html -rw-r--r-- 1 root root 3946 Mar 27 02:59 UserVMActionNotification Template.html -rw-r--r-- 1 root root 4517 Mar 27 02:59 WorkflowNotification Template.html Configuring System Parameters (Optional) Configuring System Parameters You should edit the system parameters only if you need to change the default values. Choose the System Parameters tab. In the System pane, complete the following fields: OL

6 Configuring System Parameters Name Number of Days to Keep Deleted VMs Data field Number of Days to Keep Events field Number of Days to Keep Trend Data field Number of Days to Keep Metering Data drop-down list Download VM Locking Controls from URL field Currency drop-down list Currency field Currency Precision drop-down list Funds Availability Check Interval (mins) drop-down list Description The user-defined number of days that the system retains VM data. The user-defined number of days that the system retains all events. Note Events older than the mentioned time period are deleted. The user-defined number of days that the system retains trend data or historical data of the inventory (such as CPU, storage, and memory usage). Note This data is used for reporting. Choose the number of days that the system retains VM metering records. Note This data is specific to VMs and their resources. VM locking controls from the specified URL. Note This file must be in XML format. Choose the type of currency to use. Available currencies are US, EURO, GBP, KRW, CAD, CHF, CLP, NR, JPY, AUD, NZD, SGD, HKD, MYR, MXN, BRL, AED, DKK, SEK, KWD, CYN, RUB, ZAR, and Other. Enter the currency name (one only). Note This field appears when Other is chosen as the currency. Choose the currency precision in decimal points. Available precision is from 0 to 5 decimal points. Choose a time interval to check the availability of funds. Click Save. 6 OL

7 Configuring Infrastructure System Parameters (Optional) Configuring Infrastructure System Parameters (Optional) You can set parameters for polling the virtual and physical system infrastructure resources. Choose the Infrastructure System Parameters tab. In the entry box, enter the number of days to keep trend data for the system infrastructure. The default is 30 days. Click Save. Updating the License You can update the license using Product Authorization Key (PAK). Step 6 On the menu bar, choose Administration > License. Choose the License Keys tab. Click the Update License option. The Update PAK dialog box is displayed. Click Browse to navigate and choose the PAK license file. Click Upload to upload the PAK license file. Note If the license file does not upload, check the check box and copy and paste the license text into the license text field. Click Submit. The license is updated. Verifying License Utilization The License Utilization page shows the licenses in use and details about each license, including license limit, available quantity, status, and remarks. License audits can also be run from this page. OL

8 Viewing License Utilization History On the menu bar, choose Administration > License. Choose the License Utilization tab. Choose a Cisco UCS Director appliance. (Optional) To run a license audit, click Run License Audit. In the Run License Audit dialog box, click Submit. This process takes several minutes to run. Viewing License Utilization History The number of licensed network and storage controllers, servers, server and desktop VMs, and small and medium pods can be tracked over time to see how network resources are being utilized. On the menu bar, choose Administration > License. Choose the License Utilization History tab. The license utilization history is displayed for the following resource categories with timestamp: Network Controllers Storage Controllers Servers Server VMs Desktop VMs Small pods Medium pods Viewing Resource Usage Data You can view how resources are being utilized in your environment. On the menu bar, choose Administration > License. Choose the Resource Usage Data tab. Following are the available report categories: 8 OL

9 Edit Application Categories Resource Name Name of the available resources associated with Cisco UCS Director. Resource Count Number of each available resource. Edit Application Categories Any VM provisioned using Cisco UCS Director is categorized based on its type. The VM type can be a web server, database, application server, or other. Cisco UCS Director also has a separate category for discovered VMs. Following are the application categories available for you to use or edit: Discovered VM Generic VM Web Server Application Server Database App CPU Intensive App Memory Intensive App Disk Intensive App Network Intensive Other App 1 Other App 2 Other App 3 Choose the Application Categories tab. Choose an application category. Click Edit. In the Edit Category dialog box, complete the following fields: Name Description Category ID display-only field Category Label field The numerical value given to the category by the system. The category type. OL

10 Customizing the Portal Name Category Code field Description display-only field Category Enabled display-only check box Default Smart Allocation Algorithm drop-down list Description The VM and host naming. A description of the category. The check box default is checked. Choose an algorithm. Step 6 Click Submit. Customizing the Portal Organizations can customize self-service portals. The logo, login page, home page, and so on can be customized for branding and user interface-related changes. Customizing the Login Page and Background Images You can change the login page and background images by uploading custom images. On the menu bar, choose Administration > User Interface Settings. Click Login Page. Check the Use customizable Login page check box. In the Logo Images and Background Images pane, choose an item or click Add to add a logo image or background image. Click Submit. Customizing the Application Logo You can customize the application logo on the home page by uploading a custom image. 10 OL

11 Customizing Favicons On the menu bar, choose Administration > User Interface Settings. Choose the Application Logo tab. In the Images pane, choose the image, or click Add to add a new image that is not listed. Click Submit. Customizing Favicons You can customize a favorites icon (Favicon) that is displayed in the browser s address bar or next to the page name, if it is bookmarked. On the menu bar, choose Administration > User Interface Settings. Choose the Favicon tab. In the Image Label column, choose the image, or click Add to add a new image not listed. Click Submit. Customizing Application Header You can customize the self-service portal labels, next to the customer logo, by modifying existing labels. On the menu bar, choose Administration > User Interface Settings. Choose the Application Header tab. In the Application Header pane, complete the following fields: Name Description Hide Entire Header check box Product Name field Product Name 2nd Line field Check the check box to hide the header section. If checked, the header that contains the logo image, application name, and links, such as Logout, are hidden. Continuation of the product name. Continuation of the product name. OL

12 Customizing Date Display Name Enable About Dialog check box Description Check the check box to enable the About link in the header. Uncheck the check box to disable the About link in the header. Administrator Portal Custom Link 1 Label field Custom Link 1 URL field Custom Link 2 Label field Custom Link 2 URL field The custom link label 1 for the administrator portal. The custom link URL 1 for the administrator portal. The custom link label 2 for the administrator portal. The custom link URL 2 for the administrator portal.end-user Portal End-user Portal Custom Link 1 Label field Custom Link 1 URL field Custom Link 2 Label field Custom Link 2 URL field The custom link label 1 for the end-user portal. The custom link URL 1 for the end-user portal. The custom link label 2 for the end-user portal. The custom link URL 2 for the end-user portal. Click Save. Customizing Date Display Numerous data display formats are supported. On the menu bar, choose Administration > User Interface Settings. Choose the Date Display tab. Edit the date format. If required, click Hide Timezone to hide the time zone display from the user interface. Click Save. 12 OL

13 Customizing the Color Theme Customizing the Color Theme On the menu bar, choose Administration > User Interface Settings. Choose the Color Theme tab. From the drop-down list, choose from the available theme styles. Click Save. Customizing Logout Redirect On the menu bar, choose Administration > User Interface Settings. Choose the Login Redirect tab. Enter the URL. Click Save. Customizing Reports Report customization enables you to make a custom label or hide the available reports. On the menu bar, choose Administration > User Interface Settings. Choose the Reports Customization tab. Choose a report. Click Edit. In the dialog box, complete the following fields: Name Description Hide Report check box New Label field Check the check box to hide the report. Uncheck the check box to show the report. A new label for the report if required. OL

14 Advanced Controls Step 6 Click Save. Advanced Controls You can use advanced controls to enable or disable certain properties of Cisco UCS Director. Enabling Advanced Controls Choose the Advanced Controls tab. Complete the following steps: Name Monitoring check box Resource Metering check box Event Monitoring check box Heat Map Report Computing check box Automatic Assessment check box Adaptive Provisioning Indexing check box Description Check the check box to enable virtual infrastructure monitoring, physical infrastructure monitoring, and external cloud monitoring. Check all additional check boxes under this category, as needed. Check the check box to enable monitoring of VM metering functions. Note If the VM metering function is disabled, chargeback does not work. Check the check box to enable virtual and physical infrastructure events. Check the check box to enable generation of heat map reports for the virtual infrastructure. Check the check box to generate reports on virtual assessment. Check the check box to enable and compute the load indices for hosts for various host parameters every 4 hours. These indices are used in adaptive provisioning of the catalogs. A lower index indicates a better chance for the host being chosen for provisioning. This process works according to the computing policy of a specific VDC. 14 OL

15 User Menus Name Delete Inactive VM s Based on VDC Policy check box System Task Remoting check box Enable Service Provider Feature (Requires System Restart) check box Description Check the check box to enable and delete the inactive (powered off) VMs under a VDC after a time that is specified by the administrator. This property is associated with the Delete after inactive VM days field in a VDC. Note By default, the property box is not checked. Check the check box to administratively enable the remote execution. Check the check box to enable service providers in Cisco UCS Director. Click Submit. User Menus Apart from the default menu operations available for the typical user roles, you can allow customized menu operations for individual user roles. Note The menu settings that you can use depends upon your user permissions. For example, you can view or perform the operations on menus, only if you are given read and write permission. Setting User Menus Choose the Menu Settings tab. From the drop-down list, choose a user role. Check or uncheck the menu check boxes to allow menus for that role or check the Reset to Defaults check box. Click Submit. OL

16 Setting User Permissions Setting User Permissions Step 6 Choose the User Permissions tab. From the drop-down list, choose a user role. In the Allowed Operations dialog box, you can view the read and write operations for the chosen user role. Check or uncheck the check boxes to allow read and write operations for an individual role, or check the Reset to Defaults check box. Click Submit. Managing System Tasks A multinode setup defines which system tasks are performed by what service node. The processing of system tasks such as data collection can be delegated to VM service nodes. The number of nodes depends on how processing tasks are scaled. Note Ensure that Cisco UCS Director is installed on all remote VM nodes and that these VM nodes are configured for the multinode setup. See the Cisco UCS Director Installation and Upgrade guides for more information. Creating a Node Pool Step 6 Step 7 Choose the Service Nodes tab. Click the Service Node Pools icon. The Service Node Pool dialog box displays. Click the + (plus) icon. The Add Entry to Service Node Pools dialog box displays. In the Name field, enter the node pool name. (Optional) In the Description field, enter a description of the node pool name. Click Submit. The node pool is created. 16 OL

17 Creating System Task Policy Creating System Task Policy You can group system tasks into a system task policy to later determine which system tasks are running on which node. Note A new system task policy is created when an administrator decides when one or more policies are needed in addition to the default system task policy. Step 6 Step 7 Choose the System Task Policy tab. Click the Add icon. The Add dialog box displays. In the Name field, enter the name that you gave the system task policy. (Optional) In the Description field, enter a description of the system task policy. From the Node Pool drop-down list, choose the node pool to which this system task policy belongs. Click Submit. The selected node pool now belongs to the newly created system task policy. Assigning a Node Pool to System Policy Task Choose the System Task Policy tab. Select an existing system task policy from the Name column and click the Edit icon. The Edit dialog box displays. Note If the default system task policy is used, you can assign service nodes to this policy. See the Creating System Task Policy, on page 17 section, if you want to configure a policy that is different from the default. Select a node pool to which this System Task Policy belongs from the Node Pool drop-down list, choose the node pool to which this system task policy belongs. Click Submit. The selected node pool now belongs to the system task policy. OL

18 Creating a Service Node Creating a Service Node Choose the Service Nodes tab. Click the Add (+) In the Service Node dialog box, complete the following fields: Name Description Node Name field Enter the name of the service node. Role field Service Node Pool drop-down list DNS Name field Description field Protocol drop-down list Port field UserName field Service is described as the role of this node. The default-service-node-pool is chosen. Enter either the DNS name or IP address of the service node. Note This field cannot use the Primary Node s IP address. Ensure that a valid Service Node DNS name or IP address is entered. The description of the of the service node. Choose either http (default) or https. The default TCP port for the Hypertext Transfer Protocol (HTTP) 80 is entered by default. Enter a different TCP port if necessary. The infrauser user name is entered by default. The infrauser is a user account created by default. To find this user account on the menu bar, choose Administration> Users and Groups. Choose the Login Users tab to find the infrauser user account in the Login Name column. Note The InfraUser user name is not the default administrator user to login to the UCS Director system itself. Another user name can be added to this field. This user s API key is used to authenticate with the Service Node. Click Submit. 18 OL

19 Assigning a System Policy to a System Task Assigning a System Policy to a System Task Step 6 Step 7 Choose the System Task tab. Choose a folder that contains system task(s). Click the folder arrow to expand its tasks. Note 128 system tasks are available. Choose the task and click the Manage Task icon. The Manage Task dialog box displays. From the Task Execution drop-down list, choose Enable. From the System Task Policy drop-down list, choose a system policy. Click Submit. The system task is assigned to the selected system policy. Executing System Tasks Choose the System Tasks tab Choose a task from the list. Click Run Now. The selected task updates its information. Disabling a System Task Choose the System Task tab. Choose a folder that contains system task(s). Click the folder arrow to expand its tasks. Note 128 system tasks are available. Choose the task and click the Manage Task icon. The Manage Task dialog box displays. From the Task Execution drop-down list, choose Disable. Click Submit. OL

20 Managing Icons Managing Icons Cisco UCS Director supports customization and management of catalog icons. Each icon set contains many images. The images in each icon set correspond to the icons that are available in the catalog creation form. The four prepopulated icon sets are as follows: Container Catalog Icon Set Advanced Catalog Icon Set Standard Catalog Icon Set VDI Catalog Icon Set Adding an Icon On the menu bar, choose Administration > User Interface Settings. Choose the Icon Management tab. Choose an icon set category. Click Icon Images. In the Manage Icon Images window, click Add (+). Step 6 In the Add entry to Icon Images dialog box, complete the following fields: Name Description Image Label field Description field Select a file for Upload field The new label for the image. The label is used to populate the drop-down list for the icon during catalog creation. The description of the image. The file that you browse to and upload. 20 OL

21 Editing an Icon Editing an Icon On the menu bar, choose Administration > User Interface Settings. Choose the Icon Management tab. Choose an icon category. Click Icon Images. In the Manage Icon Images window, choose an icon image to edit. Step 6 Click Edit (pencil) Step 7 In the Edit Icon Images Entry dialog box, edit the Description. Step 8 Choose a replacement file to upload by clicking Browse and browsing to an image. Step 9 Click Upload. 0 Once upload is finished, click Submit. Deleting an Icon On the menu bar, choose Administration > User Interface Settings. Choose the Icon Management tab. In the Manage Icon Images window, choose an icon image and click Delete icon. Click Delete (X). Previewing an Icon On the menu bar, choose Administration > User Interface Settings. Choose the Icon Management tab Click Icon Images. In the Manage Icon Images window, choose an icon image to preview. Click Informationicon to preview the image. OL

22 Support Information Support Information Cisco UCS Director support provides basic and advanced system information, including the license status, database tables, version, resource usage, logs, and debugging processes for troubleshooting. Viewing Support Information On the menu bar, choose Administration > Support Information. Choose the System Information tab. Click the System Information and Logs Link Page link. The Cisco UCS Director Product System Information window displays. Viewing System Information Basic system information includes the version, uptimes, service status, system license status, usage, compute accounts status, compute server status, storage account status, system catalogs, network device status, and cloud status. The advanced system information includes basic system information, and database tables summary, product configuration, top process information, and information on processors, memory, disks, log files, network, and login. You can also view the system task status, cloud inventory, and monitoring status. Showing Logs You can choose one of the log files from the drop-down list. Clicking Show Log allows you to view the last few lines of the log. Downloading the Logs You can click Download All Logs to download all of the log files in a Zip format. Starting the Debug Log Debug logging enables you to record a maximum of 30 minutes debug logging to a log file. 22 OL

23 Viewing Support Information Click Start Debug Logging.. After the debug is finished, click Stop Debug Logging.. From HH.MM.SS (time) to download the files, click Download Debug Logs.. OL

24 Viewing Support Information 24 OL

Managing System Administration Settings

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

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

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 Running an Object Search,

More information

Multiple Disk VM Provisioning

Multiple Disk VM Provisioning This chapter contains the following sections: About, page 1 Workflow for, page 2 About Templates with Multiple Disks, page 2 Assigning Disk Categories, page 2 Defining Storage Policies, page 3 Creating

More information

Managing Virtual Data Centers

Managing Virtual Data Centers This chapter contains the following sections: Virtual Data Centers, page 1 VDC Actions, page 2 Virtual Data Center Service Profiles, page 7 Virtual Data Centers A Virtual Data Center (VDC) is a logical

More information

Overview of the Self-Service Portal

Overview of the Self-Service Portal This chapter contains the following sections: Cisco UCS Director Self-Service Portal, page 1 Logging into the Self-Service Portal, page 1 Examining the Interface, page 4 Cisco UCS Director Self-Service

More information

Securing Containers Using a PNSC and a Cisco VSG

Securing Containers Using a PNSC and a Cisco VSG Securing Containers Using a PNSC and a Cisco VSG This chapter contains the following sections: About Prime Network Service Controllers, page 1 Integrating a VSG into an Application Container, page 3 About

More information

Securing Containers Using a PNSC and a Cisco VSG

Securing Containers Using a PNSC and a Cisco VSG Securing Containers Using a PNSC and a Cisco VSG This chapter contains the following sections: About Prime Network Service Controllers, page 1 Integrating a VSG into an Application Container, page 4 About

More information

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) You can find the most up-to-date technical documentation

More information

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) You can find the most up-to-date

More information

Multiple Disk VM Provisioning

Multiple Disk VM Provisioning This chapter contains the following sections: About, page 1 Overview of the Procedure for, page 2 About Templates with Multiple Disks, page 2 Assigning Disk Categories, page 2 Defining Storage Policies,

More information

Version 2.3 User Guide

Version 2.3 User Guide V Mware vcloud Usage Meter Version 2.3 User Guide 2012 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. This product is covered

More information

Web Self Service Administrator Guide. Version 1.1.2

Web Self Service Administrator Guide. Version 1.1.2 Version 1.1.2 Web Self Service Administrator Guide Version 1.1.2 Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior acceptance of the End User License Agreement.

More information

vcloud Director User's Guide

vcloud Director User's Guide vcloud Director 8.20 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of

More information

Tenant Onboarding. Tenant Onboarding Overview. Tenant Onboarding with Virtual Data Centers

Tenant Onboarding. Tenant Onboarding Overview. Tenant Onboarding with Virtual Data Centers Overview, page 1 with Virtual Data Centers, page 1 with Resource Groups, page 5 Overview In Cisco UCS Director, tenants enable you to securely control and allocate the virtual and physical infrastructure

More information

vcloud Director User's Guide 04 OCT 2018 vcloud Director 9.5

vcloud Director User's Guide 04 OCT 2018 vcloud Director 9.5 vcloud Director User's Guide 04 OCT 2018 vcloud Director 9.5 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

More information

Setting Up Resources in VMware Identity Manager. VMware Identity Manager 2.8

Setting Up Resources in VMware Identity Manager. VMware Identity Manager 2.8 Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.8 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

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

Managing VMware vcenter Site Recovery Manager

Managing VMware vcenter Site Recovery Manager Managing VMware vcenter Site Recovery Manager This chapter contains the following sections: About VMware vcenter Site Recovery Manager, page 1 Overview of SRM Configuration, page 2 Integrating SRM with

More information

Using the Horizon vrealize Orchestrator Plug-In

Using the Horizon vrealize Orchestrator Plug-In Using the Horizon vrealize Orchestrator Plug-In VMware Horizon 6 version 6.2.3, VMware Horizon 7 versions 7.0.3 and later Modified on 4 JAN 2018 VMware Horizon 7 7.4 You can find the most up-to-date technical

More information

vcloud Director User's Guide

vcloud Director User's Guide vcloud Director 8.20 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of

More information

Application Provisioning

Application Provisioning Overview, page 1 Application Categories, page 1 Application Containers, page 2 Catalogs, page 7 Self-Service Provisioning, page 8 Overview After you have allocated your resources among your user groups,

More information

KYOCERA Net Admin User Guide

KYOCERA Net Admin User Guide KYOCERA Net Admin User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Integrating with Prime Service Catalog

Integrating with Prime Service Catalog This chapter consist of the following topics: Overview, page 1 Integrating with Third Party Applications, page 4 Creating Custom Integrations, page 7 Providing Infrastructure as a Service (IaaS) using

More information

Tenant Administration. vrealize Automation 6.2

Tenant Administration. vrealize Automation 6.2 vrealize Automation 6.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 your feedback to

More information

Configuring EMC Isilon

Configuring EMC Isilon This chapter contains the following sections: System, page 1 Configuring SMB Shares, page 3 Creating an NFS Export, page 5 Configuring Quotas, page 6 Creating a Group for the Isilon Cluster, page 8 Creating

More information

Barracuda NextGen Report Creator

Barracuda NextGen Report Creator The creates customized reports using statistics and logs collected on Barracuda NextGen F-Series Firewalls. Each report can be configured to use multiple appliances, custom or predefined report data templates,

More information

VMware vfabric Data Director Installation Guide

VMware vfabric Data Director Installation Guide VMware vfabric Data Director Installation Guide vfabric Data Director 1.0.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Using vrealize Operations Tenant App as a Service Provider

Using vrealize Operations Tenant App as a Service Provider Using vrealize Operations Tenant App as a Service Provider Using vrealize Operations Tenant App as a Service Provider You can find the most up-to-date technical documentation on the VMware Web site at:

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

vcloud Director User's Guide

vcloud Director User's Guide vcloud Director 8.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of

More information

WEB ANALYTICS HOW-TO GUIDE

WEB ANALYTICS HOW-TO GUIDE WEB ANALYTICS HOW-TO GUIDE MOTOROLA, MOTO, MOTOROLA SOLUTIONS and the Stylized M logo are trademarks or registered trademarks of Motorola Trademark Holdings, LLC and are used under license. All other trademarks

More information

Cisco UCS Director F5 BIG-IP Management Guide, Release 5.0

Cisco UCS Director F5 BIG-IP Management Guide, Release 5.0 First Published: July 31, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 Text

More information

Tenant Administration

Tenant Administration vcloud Automation Center 6.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

vapp Deployment and Configuration Guide

vapp Deployment and Configuration Guide vapp Deployment and Configuration Guide vcenter Operations Manager 5.8.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

Getting Started with the Aloha Community Template for Salesforce Identity

Getting Started with the Aloha Community Template for Salesforce Identity Getting Started with the Aloha Community Template for Salesforce Identity Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved.

More information

VMware vcloud Air User's Guide

VMware vcloud Air User's Guide vcloud Air This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,

More information

Setting Up Resources in VMware Identity Manager 3.1 (On Premises) Modified JUL 2018 VMware Identity Manager 3.1

Setting Up Resources in VMware Identity Manager 3.1 (On Premises) Modified JUL 2018 VMware Identity Manager 3.1 Setting Up Resources in VMware Identity Manager 3.1 (On Premises) Modified JUL 2018 VMware Identity Manager 3.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Web Publishing Basics II

Web Publishing Basics II Web Publishing Basics II Jeff Pankin Information Services and Technology Table of Contents Course Objectives... 2 Create a Site Definition... 3 The Dreamweaver CS4 Interface... 4 Panels are groups of icons

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

BOLT eportfolio Student Guide

BOLT eportfolio Student Guide BOLT eportfolio Student Guide Contents BOLT EPORTFOLIO STUDENT GUIDE... I BOLT EPORTFOLIO BASICS... 3 BOLT eportfolio user interface overview... 3 Dashboard... 3 My Items Page... 4 Explore Page... 5 Sharing

More information

BrainCert Enterprise LMS. Learning Management System (LMS) documentation Administrator Guide Version 3.0

BrainCert Enterprise LMS. Learning Management System (LMS) documentation Administrator Guide Version 3.0 BrainCert Enterprise LMS Learning Management System (LMS) documentation Administrator Guide Version 3.0 1 P a g e Table of Contents... 3... 3... 4... 4... 5... 5... 6... 6... 8... 8... 9... 9... 10...

More information

AuditConfigurationArchiveandSoftwareManagementChanges (Network Audit)

AuditConfigurationArchiveandSoftwareManagementChanges (Network Audit) This section contains the following topics: Audit Configuration Archive and Software Management Changes (Network Audit), on page 1 Audit Changes Made By Users (Change Audit), on page 1 Audit Actions Executed

More information

Acronis Data Cloud Version 7.8

Acronis Data Cloud Version 7.8 Acronis Data Cloud Version 7.8 PARTNER'S GUIDE Revision: 10/5/2018 Table of contents 1 About this document...3 2 About Acronis Data Cloud...3 2.1 Services and offerings... 3 2.2 User accounts and tenants...

More information

ForeScout Extended Module for VMware AirWatch MDM

ForeScout Extended Module for VMware AirWatch MDM ForeScout Extended Module for VMware AirWatch MDM Version 1.7.2 Table of Contents About the AirWatch MDM Integration... 4 Additional AirWatch Documentation... 4 About this Module... 4 How it Works... 5

More information

Creating Application Containers

Creating Application Containers This chapter contains the following sections: General Application Container Creation Process, page 1 Creating Application Container Policies, page 2 About Application Container Templates, page 5 Creating

More information

vcloud Usage Meter 3.5 User's Guide vcloud Usage Meter 3.5

vcloud Usage Meter 3.5 User's Guide vcloud Usage Meter 3.5 vcloud Usage Meter 3.5 User's Guide vcloud Usage Meter 3.5 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

User Guide Product Design Version 1.7

User Guide Product Design Version 1.7 User Guide Product Design Version 1.7 1 INTRODUCTION 3 Guide 3 USING THE SYSTEM 4 Accessing the System 5 Logging In Using an Access Email 5 Normal Login 6 Resetting a Password 6 Logging Off 6 Home Page

More information

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation Agent and Agent Browser Updated Friday, January 26, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 The AEM Agent and Agent Browser 3 AEM Agent 5 Privacy Mode 9 Agent Browser 11 Agent

More information

Tenant Administration

Tenant Administration vcloud Automation Center 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Prerequisites...1 Installation...2 Salesforce App Installation... 2 Salesforce Lightning... 2 WordPress Manual Plug-in installation...

More information

WebPrint Quick Start User Guide

WebPrint Quick Start User Guide WebPrint Quick Start User Guide Getting Started Accessing Print Center Navigate your Web browser to Print Center Log in page. If you do not have an acocunt, you will need to create a new User account.

More information

Creating Application Containers

Creating Application Containers This chapter contains the following sections: General Application Container Creation Process, page 1 Creating Application Container Policies, page 3 About Application Container Templates, page 5 Creating

More information

MN Studio Website - User Guide

MN Studio Website - User Guide MN Studio Website - User Guide Version 1.1 MN Studio Website Program 1. Introduction Welcome to the new website program! The MN Studio Website program allows you to create your own website with customized

More information

Legal Notes. Regarding Trademarks KYOCERA MITA Corporation

Legal Notes. Regarding Trademarks KYOCERA MITA Corporation Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

Overview of Cisco UCS Manager GUI

Overview of Cisco UCS Manager GUI Overview of Cisco UCS Manager GUI This chapter includes the following sections: Overview of Cisco UCS Manager GUI, page 1 Logging in to Cisco UCS Manager GUI through HTTPS, page 6 Logging in to Cisco UCS

More information

Self-Service Portal Implementation Guide

Self-Service Portal Implementation Guide Self-Service Portal Implementation Guide Salesforce, Spring 6 @salesforcedocs Last updated: April 7, 06 Copyright 000 06 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Administrative Training Mura CMS Version 5.6

Administrative Training Mura CMS Version 5.6 Administrative Training Mura CMS Version 5.6 Published: March 9, 2012 Table of Contents Mura CMS Overview! 6 Dashboard!... 6 Site Manager!... 6 Drafts!... 6 Components!... 6 Categories!... 6 Content Collections:

More information

Managing the VM Lifecycle

Managing the VM Lifecycle This chapter contains the following sections:, page 1 Managing VM Power, page 2 Resizing a VM, page 3 Resizing a VM Disk, page 4 Managing VM Snapshots, page 5 Managing Other VM Actions, page 7 You can

More information

Setting Up the Server

Setting Up the Server Managing Licenses, page 1 Cross-launch from Prime Collaboration Provisioning, page 5 Integrating Prime Collaboration Servers, page 6 Single Sign-On for Prime Collaboration, page 7 Changing the SSL Port,

More information

vcenter Operations Manager for Horizon View Administration

vcenter Operations Manager for Horizon View Administration vcenter Operations Manager for Horizon View Administration vcenter Operations Manager for Horizon View 1.5 vcenter Operations Manager for Horizon View 1.5.1 This document supports the version of each product

More information

Using the Prime Performance Manager Web Interface

Using the Prime Performance Manager Web Interface 3 CHAPTER Using the Prime Performance Manager Web Interface The following topics provide information about using the Cisco Prime Performance Manager web interface: Accessing the Prime Performance Manager

More information

Branding Customizations

Branding Customizations Branding Overview, page 1 Branding Prerequisites, page 1 Branding Task Flow, page 2 Branding File Requirements, page 4 Branding Overview The Branding feature lets you upload customized branding for Cisco

More information

Using the Control Panel

Using the Control Panel Using the Control Panel Technical Manual: User Guide Creating a New Email Account 3. If prompted, select a domain from the list. Or, to change domains, click the change domain link. 4. Click the Add Mailbox

More information

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

More information

VMware Infrastructure Planner

VMware Infrastructure Planner Thanks for participating in a assessment! Table of Contents 1. Release Notes for vsan Assessment v. 2.0.168.0... 2 2. About vsan Assessment... 34 3. Install and configure the virtual appliance... 45 2.1

More information

Cisco Integrated Management Controller (IMC) Supervisor is a management system that allows you to manage rack mount servers on a large scale.

Cisco Integrated Management Controller (IMC) Supervisor is a management system that allows you to manage rack mount servers on a large scale. Contents Introduction Prerequisites Requirements Qualified Serviers Minimum Firmware Versions Supported PCiE Cards Supported Hypervisor versions Supported Browser Versions Configure Deploying Cisco IMC

More information

vcloud Usage Meter 3.6 User's Guide vcloud Usage Meter 3.6

vcloud Usage Meter 3.6 User's Guide vcloud Usage Meter 3.6 vcloud Usage Meter 3.6 You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The VMware Web site also provides the latest product updates. If you

More information

Sponsor Documentation

Sponsor Documentation CHAPTER 17 This chapter provides user documentation for sponsor users who create guest accounts. It contains the following sections: Introduction to Cisco NAC Guest Server Connecting to the Cisco NAC Guest

More information

WEBppliance for Windows User Administrator's Help

WEBppliance for Windows User Administrator's Help WEBppliance for Windows User Administrator's Help September 23, 2003 Contents About This Document...3 How to use this Help system...4 Getting started...6 What to do first... 6 Viewing your account settings...

More information

vcloud Director Administrator's Guide

vcloud Director Administrator's Guide vcloud Director 5.1.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of

More information

JIRA Integration Guide

JIRA Integration Guide JIRA Integration Guide 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

Using the Horizon vcenter Orchestrator Plug-In. VMware Horizon 6 6.0

Using the Horizon vcenter Orchestrator Plug-In. VMware Horizon 6 6.0 Using the Horizon vcenter Orchestrator Plug-In VMware Horizon 6 6.0 You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The VMware Web site also

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

Overview of Cisco UCS Manager GUI

Overview of Cisco UCS Manager GUI Overview of Cisco UCS Manager GUI This chapter includes the following sections: Overview of Cisco UCS Manager GUI, page 1 Logging in to Cisco UCS Manager GUI through HTTPS, page 6 Logging in to Cisco UCS

More information

UCS Director 5.4 Windows/Linux CSV Workflow Deployment

UCS Director 5.4 Windows/Linux CSV Workflow Deployment UCS Director 5.4 Windows/Linux CSV Workflow Deployment The purpose of this document is to illustrate the steps to implement the CSV Workflow that can be used for Windows or Linux VM deployments. The CSV

More information

Sophos Mobile as a Service

Sophos Mobile as a Service startup guide Product Version: 8 Contents About this guide... 1 What are the key steps?... 2 Change your password... 3 Change your login name... 4 Activate Mobile Advanced licenses...5 Check your licenses...6

More information

Tools for Troubleshooting

Tools for Troubleshooting This chapter contains the following sections: Tools Reference, page 1 Support Information, page 2 Viewing Log Details for a Service Request, page 5 Using the Database Audit Log, page 6 Viewing the Workflow

More information

Archiware Pure Quick Start Guide

Archiware Pure Quick Start Guide Archiware Pure Quick Start Guide Content 1 System Requirements... 3 1.1 Hardware Requirements... 3 1.2 Supported Hypervisors... 3 1.3 Deployment Requirements... 3 2 Deploying the Virtual Appliance... 4

More information

SOA Software API Gateway Appliance 6.3 Administration Guide

SOA Software API Gateway Appliance 6.3 Administration Guide SOA Software API Gateway Appliance 6.3 Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names, logos,

More information

Hands-On Introduction to Queens College Web Sites

Hands-On Introduction to Queens College Web Sites Hands-On Introduction to Queens College Web Sites This handout accompanies training workshops for Queens College Content Editors who will manage and maintain the web content in their areas. Overview of

More information

EMC Isilon. Cisco UCS Director Support for EMC Isilon

EMC Isilon. Cisco UCS Director Support for EMC Isilon Cisco UCS Director Support for, page 1 Adding an Account, page 2 Storage Pool Tiers, page 3 Storage Node Pools, page 4 SMB Shares, page 5 Creating an NFS Export, page 7 Quotas, page 9 Configuring a space

More information

WebCT Customize Your Course Look How to Guide

WebCT Customize Your Course Look How to Guide WebCT Customize Your Course Look How to Guide HOW TO GUIDE CONTROL THE LOOK OF YOUR COURSE CALIFORNIA STATE UNIVERSITY, SACRAMENTO As a course instructor you are in control of how your course appears to

More information

AppController :21:56 UTC Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement

AppController :21:56 UTC Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement AppController 2.6 2014-03-18 13:21:56 UTC 2014 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement Contents AppController 2.6... 6 About This Release... 8 Getting Started...

More information

akkadian Provisioning Manager Express

akkadian Provisioning Manager Express akkadian Provisioning Manager Express Version 4.9.04 Release Notes January 31 st, 2017 Copyright and Trademarks: I. Copyright: This website and its content is copyright 2017 Akkadian Labs, LLC. All rights

More information

Create and Manage Partner Portals

Create and Manage Partner Portals Create and Manage Partner Portals Salesforce, Summer 18 @salesforcedocs Last updated: June 20, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Tasks. User Guide 4.12

Tasks. User Guide 4.12 Tasks User Guide 4.12 ABOUT NORTHWOODS CONSULTING PARTNERS Northwoods Consulting Partners, Inc., founded in 1999, is a privately-held software development and services company headquartered in Dublin,

More information

Evoq 8 Content Managers Training Manual

Evoq 8 Content Managers Training Manual Evoq 8 Content Managers Training Manual Table of Contents Chapter 1: User Login... 2 User Login...2 User Login Screen...2 User Logout...2 Chapter 2: Navigating within Evoq 8...3 Editing Bar...3 Dashboard...4

More information

KYOCERA Net Admin Installation Guide

KYOCERA Net Admin Installation Guide KYOCERA Net Admin Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for

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

GRS Enterprise Synchronization Tool

GRS Enterprise Synchronization Tool GRS Enterprise Synchronization Tool Last Revised: Thursday, April 05, 2018 Page i TABLE OF CONTENTS Anchor End User Guide... Error! Bookmark not defined. Last Revised: Monday, March 12, 2018... 1 Table

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

Performing Administrative Tasks

Performing Administrative Tasks CHAPTER 6 This section provides information about administrative tasks. It includes these topics: Stopping and Restarting the Cisco License Manager Server, page 6-1 How to Manage Users, page 6-2 Working

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.1 Data Protection Guide For VMs and Datastores using the SnapCenter Plug-in for VMware vsphere September 2018 215-13399_B0 doccomments@netapp.com Table of Contents 3 Contents Deciding

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA Contacting Leostream Leostream Corporation http://www.leostream.com 271 Waverley Oaks Rd. Telephone: +1 781 890 2019 Suite 206 Waltham, MA 02452 USA To submit an enhancement request, email features@leostream.com.

More information

Getting Started Quick Start Guide

Getting Started Quick Start Guide Getting Started Quick Start Guide This guide provides tips for users new to using the Learning Environment. It discusses how to navigate the main areas and how to change your personal preferences and settings.

More information

BCI.com Sitecore Publishing Guide. November 2017

BCI.com Sitecore Publishing Guide. November 2017 BCI.com Sitecore Publishing Guide November 2017 Table of contents 3 Introduction 63 Search 4 Sitecore terms 66 Change your personal settings 5 Publishing basics 5 Log in to Sitecore Editing 69 BCI.com

More information