Third-Party Client (s3fs) User Guide

Size: px
Start display at page:

Download "Third-Party Client (s3fs) User Guide"

Transcription

1 Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD.

2 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of Huawei Technologies Co., Ltd. Trademarks and Permissions and other Huawei trademarks are trademarks of Huawei Technologies Co., Ltd. All other trademarks and trade names mentioned in this document are the property of their respective holders. Notice The purchased products, services and features are stipulated by the contract made between Huawei and the customer. All or part of the products, services and features described in this document may not be within the purchase scope or the usage scope. Unless otherwise specified in the contract, all statements, information, and recommendations in this document are provided "AS IS" without warranties, guarantees or representations of any kind, either express or implied. The information in this document is subject to change without notice. Every effort has been made in the preparation of this document to ensure accuracy of the contents, but all statements, information, and recommendations in this document do not constitute a warranty of any kind, express or implied. Huawei Technologies Co., Ltd. Address: Website: Huawei Industrial Base Bantian, Longgang Shenzhen People's Republic of China support@huawei.com i

3 Contents Contents 1 Introduction Set-Up Preparing Tools Registering a Public Cloud Service Account Enabling OBS Logging In to OBS Console Creating Access Keys (AKs and SKs) Creating a Bucket Configuring Key Files Operation Guide Mounting a Bucket Unmounting a Bucket Troubleshooting Error: CURLE_COULDNT_RESOLVE_HOST Error: CURLE_SSL_CACERT Related Resources...14 A Document Change History ii

4 1 Introduction 1 Introduction S3 File System (s3fs) is a solution based on the Filesystem in Userspace (FUSE) interface. It allows users to use Object Storage Service (OBS) as a file folder in their local operating system (OS). Specifically, s3fs allows user to mount a bucket to a local directory and then copy files/folders to and from the directory, or delete files/folders from the directory. These operations are actually performed on the bucket. s3fs is applicable to Linux and Mac OS X operating systems. This document uses the s3fs 1.79 version as an example to describe how to use s3fs in the Linux Red Hat operating system. If you find any software operation inconsistency with this document due to an s3fs software upgrade (for example), please refer to the operation guide on the s3fs official website 1

5 2 Set-Up 2 Set-Up 2.1 Preparing Tools s3fs is a FUSE-based open-source tool, which is applicable to the Linux and Mac OS X operating systems. Its required installation environment and method differ according to the operating system. For details about how to install s3fs and its required installation environment, go to its official website Installation-Notes. After installation, check whether s3fs is installed successfully: Step 1 Step 2 Open the command terminal. Run the following commands: s3fs --version If s3fs version information is displayed, the installation is successful. ----End 2.2 Registering a Public Cloud Service Account You must register a public cloud service account before using OBS. Step 1 Step 2 Step 3 Step 4 Open a browser. Log in to the HUAWEI CLOUD website at Click Register. Complete the registration as instructed. After the registration is complete, you are navigated to your account information page. ----End 2

6 2 Set-Up 2.3 Enabling OBS You must recharge the account before using the OBS service. Step 1 Step 2 Step 3 Step 4 Step 5 Log in to Console. Click Fees. The Billing Center window is displayed. Recharge the account as prompted. After the recharging, close the window. On the homepage, click Object Storage Service to enable the OBS service and log in to OBS Console. ----End 2.4 Logging In to OBS Console This section describes how to log in to OBS Console using a web browser. Step 1 Step 2 Step 3 Log in to the HUAWEI CLOUD website at In the upper left corner, click Console. Log in using your account. If you have not registered with the public cloud, click Register and register a public cloud service account as prompted. Step 4 On the homepage of the management Console, choose All Services > Storage > Object Storage Service. ----End 2.5 Creating Access Keys (AKs and SKs) Context This section describes how to create access keys (AKs and SKs) in OBS Console. A pair of AK and SK is used to encrypt the signature of a request, ensuring that the request is secure and integral, and that identities of the request sender and receiver are correct. AKs and SKs support the authentication mechanism of Identity and Access Management (IAM). Detailed explanations are as follows: An Access Key ID (AK) defines a user that accesses the OBS system. An AK belongs to only one user, but one user can have multiple AKs. The OBS system recognizes the users that access the system by their AKs. 3

7 2 Set-Up A Secret Access Key (SK) is the key used by users to access OBS. It is the authentication information generated based on the AK and the request header. SKs and AKs are in one-to-one mapping. Restrictions and Limitations Prerequisites Each user can create up to two valid AK/SK pairs. You have registered and activated a cloud account. Step 1 Step 2 Step 3 Step 4 Step 5 Log in to OBS Console. In the upper right corner of the page, click the username and select Basic Information from the drop-down list. On the displayed page, click Manage my credentials. On the My Credential page, click the Access Keys tab, and then click Add Access Key below the displayed access key list. In the Add Access Key dialog box that is displayed, enter the password and its verification code. NOTE If you have not bound an address or mobile number, you need to enter only the password. If you have bound an address and a mobile number, you can select the verification either by address or mobile number. Step 6 Step 7 Click OK. In the Download Access Key dialog box that is displayed, click OK to save the access keys to your browser's default download path. NOTE To prevent the access keys from being leaked, keep it secure. If you click Cancel in the dialog box, the access keys will not be downloaded, and you cannot download them later. You can re-create an access key if you need to use it. Step 8 Open the downloaded credentials.csv file to obtain the access keys (AK and SK). ----End Follow-up If the AK and SK are used abnormally (including loss and leakage) or they are no longer needed, click Delete on the My Credential page to delete them. When deleting the AK and SK, you need to enter the login password and either an or mobile verification code. After the AK and SK are deleted, they will be permanently deleted and cannot be restored. 4

8 2 Set-Up 2.6 Creating a Bucket A bucket is a container used to store objects on OBS. This section describes how to create buckets. Step 1 Step 2 Log in to OBS Console. In the upper right corner of the page, click + Create Bucket. A dialog box is displayed, as shown in Figure 2-1. Figure 2-1 Creating a bucket Step 3 Set Region and Storage Class, and then enter a name for the bucket. NOTE Once you create a bucket, you cannot change the name of it. Make sure that the bucket name you set is appropriate. When a URL is used to access a bucket, the bucket name will become a part of the URL. According to the DNS rule, URLs do not support uppercase letters and cannot be used to access a bucket whose name contains uppercase letters. Therefore, a bucket name can contain only lowercase letters, digits, hyphens (-), and periods (.). For example, if you attempt to access bucket MyBucket using the URL, bucket mybucket will be accessed instead, causing an access error. Step 4 Click OK. NOTE In a multi-region scenario, if you create a bucket in a region, delete it from the region later, and immediately create a bucket with the same name in another region, the system will show a message stating that the bucket failed to be created. In this case, wait one hour and create a bucket with the same name again. Then, the system will show a message stating that the bucket has been created successfully. ----End 5

9 2 Set-Up 2.7 Configuring Key Files To access OBS, an account must use a pair of keys (AK and SK). Before using s3fs, you need to write the key information into the key file, enabling account authentication before mounting a bucket and performing other bucket operations. Prerequisites The s3fs tool is ready in place. For details about how to prepare the s3fs tool, see 2.1 Preparing Tools. You have obtained the access keys (AK and SK). For details about how to obtain access keys, see 2.5 Creating Access Keys (AKs and SKs). Step 1 Step 2 Open the command line interface (CLI). Run the following command to write the OBS account's access key into the global default file /etc/passwd-s3fs or a user-created file: echo AK:SK > Key file name Command example: echo XVSM6UAMWTPEC8G6IYBY:NxiNK1IfQVtZ4dSPNMw9QdU6EYLmXJJgvz8pB1G q > /etc/passwd-s3fs Step 3 Run the following command to check whether the key information is successfully configured: cat Key file name Step 4 Run the following command to set the key file to be used only by the current user: chmod 600 Key file name ----End 6

10 3 Operation Guide 3 Operation Guide 3.1 Mounting a Bucket Limitations and Constraints To access OBS using s3fs, you need to mount an OBS bucket to the local operating system on your host. After mounting an OBS bucket, you can operate the bucket as a local directory. For example, you can upload an object to OBS by saving a file to the mount directory. The local mount directory can either be empty or contain contents. But after an OBS bucket is mounted to the directory, the contents in the directory will be unavailable until the OBS bucket is unmounted. Therefore, it is recommended that you use an empty directory as the mount directory. A mounted OBS bucket cannot provide exact performance and functions as a local file system. For details about how to use the mounted bucket, see limitations on the official website of s3fs. Prerequisites You have configured the access keys. For details, see 2.7 Configuring Key Files. The bucket to be mounted is available on OBS. For details about how to create a bucket, see 2.6 Creating a Bucket. The local mount directory already exists. NOTE You can run the mkdir command to create a directory for mounting a bucket. For example, the command for creating a directory named mountpoint is as follows: [root@host01 ~]mkdir mountpoint Step 1 Step 2 Open the CLI. Run the mount command in the following format: s3fs Bucket name Local mounting directory -o url=endpoint address of the region -o endpoint=region Mounting parameter 7

11 3 Operation Guide You can create a bucket in a specified region on OBS. Each region has separate resources. To shorten the response time, each region provides endpoints to process OBS requests. Therefore, obtain the owning region and endpoint of the bucket to be mounted. For details, see Regions and Endpoints.. The mount parameter is optional and its format is -o Parameter name=parameter value. If you do not need to assign a parameter value, use only -o Parameter name. Table 3-1 lists OBS mount parameters and their descriptions. NOTE For details about s3fs mount parameter settings, run the s3fs --help command. Table 3-1 s3fs mount parameters Parameter Description Configuration passwd_file default_acl retries use_cache connect_timeout readwrite_timeout Indicates the key file path where the AK and SK are obtained for account authentication when using s3fs. The default path is /etc/passwds3fs. Indicates the default access control list (ACL) policy. The default value is private, indicating that the owner of the bucket has the full control permission for the bucket. Other users have no permissions to access the bucket. Indicates the maximum allowed number of attempts. The default value is 2. Indicates the local file cache used by the local directory. This parameter is not mandatory. If you set a value for this parameter, the local directory cache is used. If you do not set any value, the local directory cache is disabled. Indicates the connection timeout interval (in seconds). The default value is 10. Indicates the read/write timeout interval (in seconds). The default value is 30. Set the parameter to the path configured in 2.7 Configuring Key Files. Configure this parameter based on the preset ACL policies. The parameter value must be a positive integer. you need to enable the local directory cache. you need to change the connection timeout interval. you need to change the read/ write timeout interval. 8

12 3 Operation Guide Parameter Description Configuration max_stat_cache_size stat_cache_expire enable_noobj_cache Indicates the maximum number of items that can be saved in the local cache. This parameter is available only after use_cache is specified. The default value is 1000, approximately 4 MB in size. Indicates the cached items' expiration time (in seconds). If you use this parameter, cached items will expire after the specified time. This parameter is available only after use_cache is specified. If you do not use this parameter, cached items will not expire. Indicates whether to use the object in the cache when a specific object does not exist. By default, this function is disabled. The parameter value must be a positive integer. you need to configure an expiration time for cached items. you need to enable this function. sigv2 Indicates using for OBS requests. no_check_certificate nodnscache nosscache multireq_max parallel_count Indicates not to authenticate the server's license when the server connects to OBS using Hypertext Transfer Protocol Secure (HTTPS). Indicates not to use the domain name server (DNS) cache. Indicates not to use the Secure Sockets Layer (SSL) session cache. Indicates the maximum allowed number of concurrent requests for listing objects. The default value is 20. Indicates the maximum allowed number of requests for uploading objects. The default value is 5. you do not need to authenticate certificates. you do not need to enable DNS cache. you do not need to enable SSL session cache. you need to change the maximum allowed number of concurrent requests for listing objects. you need to change the maximum number of allowed requests for uploading objects. 9

13 3 Operation Guide Parameter Description Configuration multipart_size fd_page_size nomultipart enable_content_md5 use_path_request_styl e Indicates the size of each part in a multipart upload. The setting takes effect only when the multipart upload function is enabled. The default value is 10 MB. Indicates the size of the file description's internal management page. The default value is 50 MB. Indicates not to use a multipart upload. If you do not configure this parameter, the multipart upload method will be used. Use this parameter together with the multipart_size parameter. Indicates using content_md5 as the HTTP header when uploading an object. Do not configure this parameter, if you do not need to use content_md5 as the HTTP header. Indicates the path-based access. When using a path to access OBS, the endpoint domain name of a specific region is used to access a bucket. you need to change the size of each part in a multipart upload. you need to change the size. you do not need to use the multipart upload. Configure this parameter, if you need to use content_md5 as the HTTP header when uploading an object. - NOTE If a bucket mount fails, you can add the following parameter following up to the mount command, to display the mount process and detailed debug logs in the command return: -d -d -d -o f2 -o curldbg Then, locate the fault according to the detailed error information. For common troubleshooting information, see 4 Troubleshooting and 5 Related Resources. Step 3 Run the following command to view the mount result: df -h If the information similar to the following is displayed, the OBS bucket is successfully mounted: 10

14 3 Operation Guide ~]df -h Filesystem Size Used Avail Use% Mounted on s3fs 256T 0 256T 0% /path/to/mountpoint ----End Follow-up Operations Before adding, modifying, or deleting a parameter setting for a mounted bucket, you need to unmount the bucket and then mount it again. For details about how to unmount a bucket, see 3.2 Unmounting a Bucket. 3.2 Unmounting a Bucket Prerequisites If you do not need to access OBS by mounting a bucket, you can unmount the bucket. Unmounting the bucket does not affect data that has been stored to OBS. The to-be-unmounted bucket is in the mounted state. Step 1 Step 2 Open the CLI. Run the following command to unmount the bucket: umount Local mount directory Step 3 Run the following command to check whether the bucket has been unmounted: df -h ----End 11

15 4 Troubleshooting 4 Troubleshooting 4.1 Error: CURLE_COULDNT_RESOLVE_HOST Symptom The CURLE_COULDNT_RESOLVE_HOST error is reported when a user tries to mount a bucket by using an IP address, as shown in Figure 4-1. Figure 4-1 Mounting exception when using an IP address to mount Possible Causes Handling Method s3fs does not support IP address-based connection to OBS. None Mount the bucket using a domain name. 4.2 Error: CURLE_SSL_CACERT Symptom The CURLE_SSL_CACERT error is reported when a user tries to mount a bucket through HTTPS, as shown in Figure

16 4 Troubleshooting Figure 4-2 Mounting exception when using HTTPS to mount Possible Causes Handling Method The OBS domain name address is not authenticated by any well-known Certificate Authority (CA) authentication center. None. In the bucket mount command, set the parameter no_check_certificate. 13

17 5 Related Resources 5 Related Resources As an open source project, s3fs is highly active on GitHub and keeps irregular updates on the wiki page, helping users better understand and use s3fs. For specific page links, see Table 5-1. Table 5-1 Related resources Page s3fs overview s3fs FAQs URL

18 A Document Change History A Document Change History Release Date What's New This is the second official release. The modification is as follows: Added section "2 Set-Up", describing the basic configurations required before using s3fs. In section "3.1 Mounting a Bucket", added information about HUAWEI CLOUD regions and endpoints This issue is the first official release. 15

Third-Party Client (s3fs) User Guide

Third-Party Client (s3fs) User Guide Issue 02 Date 2017-09-28 HUAWEI TECHNOLOGIES CO., LTD. 2017. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Object Storage Service. Client Guide (OBS Browser) Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service. Client Guide (OBS Browser) Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 02 Date 2018-01-17 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Object Storage Service. Client Guide (OBS Browser) Issue 10 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service. Client Guide (OBS Browser) Issue 10 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 10 Date 2018-07-15 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Image Recognition. SDK Reference. Issue 09 Date HUAWEI TECHNOLOGIES CO., LTD.

Image Recognition. SDK Reference. Issue 09 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 09 Date 2019-01-31 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Object Storage Service. Product Introduction. Issue 04 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service. Product Introduction. Issue 04 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 04 Date 2017-12-20 HUAWEI TECHNOLOGIES CO., LTD. 2017. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Data Ingestion Service. SDK Development Guide. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

Data Ingestion Service. SDK Development Guide. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2018-06-12 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

OBS. Management Console Operation Guide. Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD.

OBS. Management Console Operation Guide. Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD. Management Console Operation Guide Issue 02 Date 2015-10-30 HUAWEI TECHNOLOGIES CO., LTD. 2015. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means

More information

Elastic Load Balance. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

Elastic Load Balance. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date 2018-04-30 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Vulnerability Scan Service. User Guide. Issue 20 Date HUAWEI TECHNOLOGIES CO., LTD.

Vulnerability Scan Service. User Guide. Issue 20 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 20 Date 2018-08-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Live Streaming Accelerator. Quick Start. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

Live Streaming Accelerator. Quick Start. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2018-08-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

My Account. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

My Account. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date 2018-09-28 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Advanced Anti-DDoS. User Guide. Issue 17 Date HUAWEI TECHNOLOGIES CO., LTD.

Advanced Anti-DDoS. User Guide. Issue 17 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 17 Date 2018-08-13 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

CDN. Product Description. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

CDN. Product Description. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2018-08-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Anti-DDoS. User Guide (Paris) Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

Anti-DDoS. User Guide (Paris) Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date 2018-08-15 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Virtual Private Cloud. User Guide. Issue 21 Date HUAWEI TECHNOLOGIES CO., LTD.

Virtual Private Cloud. User Guide. Issue 21 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 21 Date 2018-09-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Domain Name Service. Product Description. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

Domain Name Service. Product Description. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2018-08-15 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Object Storage Service. Third-Party Client (S3cmd) User Guide. Issue 03 Date

Object Storage Service. Third-Party Client (S3cmd) User Guide. Issue 03 Date Third-Party Client (S3cmd) User Guide Issue 03 Date 2017-11-30 Contents Contents 1 Overview... 1 2 Interoperability Matrix...2 3 Set-Up... 4 3.1 Preparing Tools...4 3.2 Creating Access Keys (AKs and SKs)...

More information

HUAWEI Secospace USG Series User Management and Control White Paper

HUAWEI Secospace USG Series User Management and Control White Paper Doc. code HUAWEI Secospace USG Series User Management and Control White Paper Issue 1.0 Date 2014-03-27 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2012. All rights reserved.

More information

Object Storage Service. User Guide. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service. User Guide. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2016-02-02 HUAWEI TECHNOLOGIES CO., LTD. 2016. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Domain Name Service. FAQs. Issue 07 Date HUAWEI TECHNOLOGIES CO., LTD.

Domain Name Service. FAQs. Issue 07 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 07 Date 2019-03-05 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

esdk Storage Plugins 1.0.RC4 Compilation Guide 01(vRO) Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

esdk Storage Plugins 1.0.RC4 Compilation Guide 01(vRO) Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. 1.0.RC4 Issue 01 Date 2017-04-06 HUAWEI TECHNOLOGIES CO., LTD. 2017. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent

More information

AD SSO Technical White Paper

AD SSO Technical White Paper Issue V1.0 Date 2017-02-28 Huawei Technologies Co., Ltd. 2017. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

espace SoftConsole V200R001C02 Product Description HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date

espace SoftConsole V200R001C02 Product Description HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date espace SoftConsole V200R001C02 Issue 01 Date 2012-07-10 HUAWEI TECHNOLOGIES CO., LTD. 2012. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without

More information

Face Recognition. SDK Reference. Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD.

Face Recognition. SDK Reference. Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 02 Date 2018-12-28 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Cloud Stream Service. User Guide. Issue 18 Date HUAWEI TECHNOLOGIES CO., LTD.

Cloud Stream Service. User Guide. Issue 18 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 18 Date 2018-11-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

SAP Business One. User Guide. Issue 04 Date HUAWEI TECHNOLOGIES CO., LTD.

SAP Business One. User Guide. Issue 04 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 04 Date 2018-12-31 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Optical Character Recognition. SDK Reference. Issue 04 Date

Optical Character Recognition. SDK Reference. Issue 04 Date Issue 04 Date 2018-09-12 Contents Contents 1 SDK Environment Setup...1 1.1 Applying for a Service...1 1.2 Obtaining the SDK... 1 1.3 Preparing a Java Development Environment... 1 1.4 Installing Eclipse

More information

Object Storage Service. Console Operation Guide. Issue 01. Date

Object Storage Service. Console Operation Guide. Issue 01. Date Issue 01 Date 2016-02-05 Contents Contents 1 Definition... 1 2 Advantages... 3 3 Relationship Between OBS and Other Products... 4 4 Basic OBS Operations... 5 4.1 Logging In to the Management Console...

More information

Object Storage Service. User Guide. Issue 01. Date

Object Storage Service. User Guide. Issue 01. Date Issue 01 Date 2016-02-05 Contents Contents 1 Introduction... 1 1.1 Definition... 1 1.2 Basic Concepts... 2 1.2.1 Object... 2 1.2.2 Bucket... 3 1.2.3 AK/SK... 3 1.2.4 Region... 4 1.3 Advantages... 4 2 Accessing

More information

Equitrac Embedded for Ricoh Basic. Setup Guide Equitrac Corporation

Equitrac Embedded for Ricoh Basic. Setup Guide Equitrac Corporation Equitrac Embedded for Ricoh Basic 1.1 Setup Guide 2012 Equitrac Corporation Equitrac Embedded for Ricoh Basic Setup Guide Document History Revision Date Revision List November 2, 2012 Update for Equitrac

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

H3C SecBlade SSL VPN Card

H3C SecBlade SSL VPN Card H3C SecBlade SSL VPN Card Super Administrator Web Configuration Guide Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Document version: 5PW105-20130801 Copyright 2003-2013, Hangzhou H3C Technologies

More information

COS6.20 Cloud Client User Manual

COS6.20 Cloud Client User Manual COS 6.20 Cloud Client User Manual Date: 2015-05 Centerm Information Co., Ltd Copyright Centerm Information Co., Ltd. 2002-2015. All rights reserved. The information contained in this document is subject

More information

ForeScout CounterACT. Configuration Guide. Version 4.1

ForeScout CounterACT. Configuration Guide. Version 4.1 ForeScout CounterACT Network Module: VPN Concentrator Plugin Version 4.1 Table of Contents About the VPN Concentrator Plugin... 3 What to Do... 3 Requirements... 3 CounterACT Requirements... 3 Supported

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client The feature provides a consistent interface for users and applications by implementing support for HTTP 1.1 in Cisco IOS XE software-based devices. When combined with the HTTPS feature, the feature provides

More information

Anti-DDoS. FAQs. Issue 11 Date HUAWEI TECHNOLOGIES CO., LTD.

Anti-DDoS. FAQs. Issue 11 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 11 Date 2018-05-28 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Integration Guide. Dell EMC Data Domain Operating System and Gemalto KeySecure. DD OS and Gemalto KeySecure Integration. Version 6.

Integration Guide. Dell EMC Data Domain Operating System and Gemalto KeySecure. DD OS and Gemalto KeySecure Integration. Version 6. Dell EMC Data Domain Operating System and Gemalto KeySecure Version 6.1 DD OS and Gemalto KeySecure Integration P/N 302-003-978 REV 01 June 2017 This document describes how to configure Gemalto KeySecure

More information

MULTI FACTOR AUTHENTICATION USING THE NETOP PORTAL. 31 January 2017

MULTI FACTOR AUTHENTICATION USING THE NETOP PORTAL. 31 January 2017 MULTI FACTOR AUTHENTICATION USING THE NETOP PORTAL 31 January 2017 Contents 1 Introduction... 2 1.1 Prerequisite for configuring the multi-factor authentication:... 2 1.1.1 On the Guest side... 2 1.1.2

More information

Database Security Service. FAQs. Issue 19 Date HUAWEI TECHNOLOGIES CO., LTD.

Database Security Service. FAQs. Issue 19 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 19 Date 2019-04-08 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

RSA NetWitness Platform

RSA NetWitness Platform RSA NetWitness Platform AWS CloudTrail Last Modified: Tuesday, May 1, 2018 Event Source Product Information: Vendor: Amazon Web Services Event Source: AWS CloudTrail Versions: all RSA Product Information:

More information

Forescout. Configuration Guide. Version 4.2

Forescout. Configuration Guide. Version 4.2 Forescout Version 4.2 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

Managing External Identity Sources

Managing External Identity Sources CHAPTER 5 The Cisco Identity Services Engine (Cisco ISE) integrates with external identity sources to validate credentials in user authentication functions, and to retrieve group information and other

More information

Web Cloud Solution. User Guide. Issue 01. Date

Web Cloud Solution. User Guide. Issue 01. Date Issue 01 Date 2017-05-30 Contents Contents 1 Overview... 3 1.1 What Is Web (CCE+RDS)?... 3 1.2 Why You Should Choose Web (CCE+RDS)... 3 1.3 Concept and Principle... 4... 5 2.1 Required Services... 5 2.2

More information

Object Storage Service. Developer Guide. Issue 05 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service. Developer Guide. Issue 05 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 05 Date 2018-12-14 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Sophos SafeGuard File Encryption for Mac Quick startup guide. Product version: 7

Sophos SafeGuard File Encryption for Mac Quick startup guide. Product version: 7 Sophos SafeGuard File Encryption for Mac Quick startup guide Product version: 7 Document date: December 2014 Contents 1 About Sophos SafeGuard File Encryption for Mac...3 2 First use...4 3 Working with

More information

Cisco Unified Serviceability

Cisco Unified Serviceability Cisco Unified Serviceability Introduction, page 1 Installation, page 5 Introduction This document uses the following abbreviations to identify administration differences for these Cisco products: Unified

More information

FunctionGraph. Best Practices. Issue 05 Date HUAWEI TECHNOLOGIES CO., LTD.

FunctionGraph. Best Practices. Issue 05 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 05 Date 2018-09-12 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

VMware AirWatch Certificate Authentication for EAS with ADCS

VMware AirWatch Certificate Authentication for EAS with ADCS VMware AirWatch Certificate Authentication for EAS with ADCS For VMware AirWatch Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

October J. Polycom Cloud Services Portal

October J. Polycom Cloud Services Portal October 2018 3725-42461-001J Polycom Cloud Services Portal Copyright 2018, Polycom, Inc. All rights reserved. No part of this document may be reproduced, translated into another language or format, or

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client HTTP 1.1 Web Server and Client Finding Feature Information HTTP 1.1 Web Server and Client Last Updated: June 01, 2011 The HTTP 1.1 Web Server and Client feature provides a consistent interface for users

More information

Workspace. User Guide (Administrators) Issue 19 Date HUAWEI TECHNOLOGIES CO., LTD.

Workspace. User Guide (Administrators) Issue 19 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 19 Date 2018-10-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Workspace. User Guide (Administrators) Issue 18 Date HUAWEI TECHNOLOGIES CO., LTD.

Workspace. User Guide (Administrators) Issue 18 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 18 Date 2018-08-17 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Novell Access Manager

Novell Access Manager Setup Guide AUTHORIZED DOCUMENTATION Novell Access Manager 3.1 SP3 February 02, 2011 www.novell.com Novell Access Manager 3.1 SP3 Setup Guide Legal Notices Novell, Inc., makes no representations or warranties

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client HTTP 1.1 Web Server and Client Last Updated: October 12, 2011 The HTTP 1.1 Web Server and Client feature provides a consistent interface for users and applications by implementing support for HTTP 1.1

More information

Novell Access Manager

Novell Access Manager Quick Start AUTHORIZED DOCUMENTATION Novell Access Manager 3.1 SP2 June 11, 2010 www.novell.com Novell Access Manager 3.1 SP2 Quick Start Legal Notices Novell, Inc., makes no representations or warranties

More information

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Description ProcessMaker is an easy-to-use, open source workflow automation and Business Process Management platform, designed so Business

More information

Microsoft Dynamics GP Web Client Installation and Administration Guide For Service Pack 1

Microsoft Dynamics GP Web Client Installation and Administration Guide For Service Pack 1 Microsoft Dynamics GP 2013 Web Client Installation and Administration Guide For Service Pack 1 Copyright Copyright 2013 Microsoft. All rights reserved. Limitation of liability This document is provided

More information

Managing GSS Devices from the GUI

Managing GSS Devices from the GUI CHAPTER 1 This chapter describes how to configure and manage your Global Site Selector Manager (GSSM) and Global Site Selector (GSS) devices from the primary GSSM graphical user interface. It includes

More information

Configuration Manager

Configuration Manager CHAPTER 7 This chapter describes how to perform routine Cisco VXC Manager configuration management tasks using the Administrator Console. It provides information on managing the configuration settings

More information

Setting Up the DR Series System as an NFS Target on Amanda Enterprise 3.3.5

Setting Up the DR Series System as an NFS Target on Amanda Enterprise 3.3.5 Setting Up the DR Series System as an NFS Target on Amanda Enterprise 3.3.5 Dell Engineering November 2016 A Quest Technical White Paper Revisions Date June 2015 November 2016 Description Initial release

More information

Installation and Upgrade Guide Zend Studio 9.x

Installation and Upgrade Guide Zend Studio 9.x Installation and Upgrade Guide Zend Studio 9.x By Zend Technologies, Inc. www.zend.com Disclaimer The information in this document is subject to change without notice and does not represent a commitment

More information

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide Software Release 8.1 March 2018 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES

More information

Adobe Marketing Cloud Bloodhound for Mac 3.0

Adobe Marketing Cloud Bloodhound for Mac 3.0 Adobe Marketing Cloud Bloodhound for Mac 3.0 Contents Adobe Bloodhound for Mac 3.x for OSX...3 Getting Started...4 Processing Rules Mapping...6 Enable SSL...7 View Hits...8 Save Hits into a Test...9 Compare

More information

Installation and Upgrade Guide Zend Studio 9.x

Installation and Upgrade Guide Zend Studio 9.x Installation and Upgrade Guide Zend Studio 9.x By Zend Technologies, Inc. www.zend.com Disclaimer The information in this document is subject to change without notice and does not represent a commitment

More information

Testing and Restoring the Nasuni Filer in a Disaster Recovery Scenario

Testing and Restoring the Nasuni Filer in a Disaster Recovery Scenario Testing and Restoring the Nasuni Filer in a Disaster Recovery Scenario Version 7.8 April 2017 Last modified: July 17, 2017 2017 Nasuni Corporation All Rights Reserved Document Information Testing Disaster

More information

K5 Portal User Guide

K5 Portal User Guide FUJITSU Cloud Service K5 K5 Portal User Guide Version 2.6 FUJITSU LIMITED Preface Purpose of This Document This guide describes the operating procedures for the services provided by FUJITSU Cloud Service

More information

MOVE AntiVirus page-level reference

MOVE AntiVirus page-level reference McAfee MOVE AntiVirus 4.7.0 Interface Reference Guide (McAfee epolicy Orchestrator) MOVE AntiVirus page-level reference General page (Configuration tab) Allows you to configure your McAfee epo details,

More information

How to Configure Authentication and Access Control (AAA)

How to Configure Authentication and Access Control (AAA) How to Configure Authentication and Access Control (AAA) Overview The Barracuda Web Application Firewall provides features to implement user authentication and access control. You can create a virtual

More information

Workspace ONE UEM Certificate Authentication for Cisco IPSec VPN. VMware Workspace ONE UEM 1810

Workspace ONE UEM Certificate Authentication for Cisco IPSec VPN. VMware Workspace ONE UEM 1810 Workspace ONE UEM Certificate Authentication for Cisco IPSec VPN VMware Workspace ONE UEM 1810 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

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

Bitnami Dolibarr for Huawei Enterprise Cloud

Bitnami Dolibarr for Huawei Enterprise Cloud Bitnami Dolibarr for Huawei Enterprise Cloud Description Dolibarr is an open source, free software package for small and medium companies, foundations or freelancers. It includes different features for

More information

Setting Up the Dell DR Series System as an NFS Target on Amanda Enterprise 3.3.5

Setting Up the Dell DR Series System as an NFS Target on Amanda Enterprise 3.3.5 Setting Up the Dell DR Series System as an NFS Target on Amanda Enterprise 3.3.5 Dell Engineering September 2015 A Dell Technical White Paper Revisions Date June 2015 September 2015 Description Initial

More information

Hitachi File Services Manager Release Notes

Hitachi File Services Manager Release Notes Hitachi File Services Manager Release Notes Copyright 2011, 2015, Hitachi, Ltd., Hitachi Data Systems Corporation, ALL RIGHTS RESERVED Notice: No part of this publication may be reproduced or transmitted

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

Viewing System Status, page 404. Backing Up and Restoring a Configuration, page 416. Managing Certificates for Authentication, page 418

Viewing System Status, page 404. Backing Up and Restoring a Configuration, page 416. Managing Certificates for Authentication, page 418 This chapter describes how to maintain the configuration and firmware, reboot or reset the security appliance, manage the security license and digital certificates, and configure other features to help

More information

Message Networking 5.2 Administration print guide

Message Networking 5.2 Administration print guide Page 1 of 421 Administration print guide This print guide is a collection of system topics provided in an easy-to-print format for your convenience. Please note that the links shown in this document do

More information

Login with Amazon. Customer Experience Overview for Android/Fire apps

Login with Amazon. Customer Experience Overview for Android/Fire apps Login with Amazon Customer Experience Overview for Android/Fire apps Customer Experience Overview for Android/Fire apps Copyright 2017 Amazon Services, LLC or its affiliates. All rights reserved. Amazon

More information

CounterACT User Directory Plugin

CounterACT User Directory Plugin Version 6.1.2 and Above Table of Contents About the User Directory Plugin... 3 Endpoint User Details... 3 Verify Endpoint Authentication... 3 User Directory Inventory... 4 HTTP Login Action... 5 HTTP Sign

More information

Identity Services Engine Guest Portal Local Web Authentication Configuration Example

Identity Services Engine Guest Portal Local Web Authentication Configuration Example Identity Services Engine Guest Portal Local Web Authentication Configuration Example Document ID: 116217 Contributed by Marcin Latosiewicz, Cisco TAC Engineer. Jun 21, 2013 Contents Introduction Prerequisites

More information

Relational Database Service. User Guide. Issue 05 Date

Relational Database Service. User Guide. Issue 05 Date Issue 05 Date 2017-02-08 Contents Contents 1 Introduction... 1 1.1 Concepts... 2 1.1.1 RDS... 2 1.1.2 DB Cluster... 2 1.1.3 DB Instance... 2 1.1.4 DB Backup... 3 1.1.5 DB Snapshot... 3 1.2 RDS DB Instances...

More information

Frequently Asked Questions About Performance Monitor

Frequently Asked Questions About Performance Monitor APPENDIXA Frequently Asked Questions About Performance Monitor The following topics answer common questions about Performance monitor and contain troubleshooting tips: Installation, page A-1 Importing,

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 2.4.5 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 4 4 Examine the Tower Dashboard 6 5 The Setup

More information

VMware Identity Manager Connector Installation and Configuration (Legacy Mode)

VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until

More information

Hitachi File Services Manager Release Notes

Hitachi File Services Manager Release Notes Hitachi File Services Manager 5.3.0-00 Release Notes Copyright 2011, 2015, Hitachi, Ltd., Hitachi Data Systems Corporation, ALL RIGHTS RESERVED Notice: No part of this publication may be reproduced or

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.0.0 The owncloud developers December 14, 2017 CONTENTS 1 Using the owncloud Android App 1 1.1 Getting the owncloud Android App...................................

More information

DOE Intranet Quick Reference Getting Started

DOE Intranet Quick Reference Getting Started DOE Intranet Quick Reference Getting Started How do I get to the DOE Intranet? DOE employees can access the DOE intranet two ways: 1) Go directly to the DOE intranet using the following address: https://intranet.hawaiipublicschools.org/

More information

METADATA FRAMEWORK 6.3. and High Availability

METADATA FRAMEWORK 6.3. and High Availability METADATA FRAMEWORK 6.3 and High Availability Publishing Information Software version 6.3.160 Document version 4 Publication date May 22, 2017 Copyright (c) 2005-2017 Varonis Systems Inc. All rights reserved.

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authentication for Cisco IPSec VPN For VMware AirWatch Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

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

CDP Data Center Console User Guide CDP Data Center Console User Guide Version

CDP Data Center Console User Guide CDP Data Center Console User Guide Version CDP Data Center Console User Guide CDP Data Center Console User Guide Version 3.18.2 1 README FIRST Welcome to the R1Soft CDP Data Center Console User Guide The purpose of this manual is to provide you

More information

HUAWEI TE30&TE40&TE50&TE60&TX50 Videoconferencing Endpoint V500R002C00. Configuration Guide. Issue 04 Date HUAWEI TECHNOLOGIES CO., LTD.

HUAWEI TE30&TE40&TE50&TE60&TX50 Videoconferencing Endpoint V500R002C00. Configuration Guide. Issue 04 Date HUAWEI TECHNOLOGIES CO., LTD. V500R002C00 Issue 04 Date 2016-08-10 HUAWEI TECHNOLOGIES CO., LTD. 2016. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written

More information

Agile Controller-Campus V100R002C10. Permission Control Technical White Paper. Issue 01. Date HUAWEI TECHNOLOGIES CO., LTD.

Agile Controller-Campus V100R002C10. Permission Control Technical White Paper. Issue 01. Date HUAWEI TECHNOLOGIES CO., LTD. V100R002C10 Permission Control Technical White Paper Issue 01 Date 2016-04-15 HUAWEI TECHNOLOGIES CO., LTD. 2016. All rights reserved. No part of this document may be reproduced or transmitted in any form

More information

SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES

SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES TABLE OF CONTENTS SCENARIO... 2 IMPLEMENTATION STEPS... 2 PREREQUISITES... 3 1. CONFIGURE ADMINISTRATOR FOR THE SECURE LOGIN ADMINISTRATION

More information

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 0. Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

exacqvision Web Service Configuration User Manual Version 9.4

exacqvision Web Service Configuration User Manual Version 9.4 exacqvision Web Service Configuration User Manual Version 9.4 www.exacq.com 1 of 12 June 12, 2018 Information in this document is subject to change without notice. Copyright 2008-2018, Exacq Technologies,

More information

ZENworks 2017 Audit Management Reference. December 2016

ZENworks 2017 Audit Management Reference. December 2016 ZENworks 2017 Audit Management Reference December 2016 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights,

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

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

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

Bitnami JFrog Artifactory for Huawei Enterprise Cloud

Bitnami JFrog Artifactory for Huawei Enterprise Cloud Bitnami JFrog Artifactory for Huawei Enterprise Cloud Description JFrog Artifactory is a Binary Repository Manager for Maven, Ivy, Gradle modules, etc. Integrates with CI servers for fully traceable builds.

More information