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

Size: px
Start display at page:

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

Transcription

1 Third-Party Client (S3cmd) User Guide Issue 03 Date

2 Contents Contents 1 Overview Interoperability Matrix Set-Up Preparing Tools Creating Access Keys (AKs and SKs) Interconnection with OBS Bucket Management Creating a Bucket Obtaining the Bucket List Viewing Storage Information About a Bucket Viewing Basic Information About a Bucket Configuring a Bucket Policy Configuring Static Website Hosting Configuring CORS Configuring Logging Configuring a Lifecycle Rule Deleting a Bucket Object Management Uploading an Object Obtaining the Object List Synchronizing an Object Copying an Object Moving an Object Viewing Basic Information About an Object Configuring ACL Permissions for an Object Configuring an Expiration Rule for an Object Downloading an Object Deleting an Object Multipart Upload Task Management Viewing a Multipart Upload Task Viewing the Part List Issue 03 ( ) ii

3 Contents Suspending a Multipart Upload Task Other Operations Modifying the Configuration File Operation Example FAQs Can S3cmd Upload an Object in Multiparts? Does S3cmd Have a Limit on the Size of an Object to Be Uploaded? Does S3cmd Have a Limit on the Size of an Object to Be Downloaded? Can S3cmd Batch Upload Objects? Can S3cmd Batch Delete Objects? Does S3cmd Support Resumable Upload? Troubleshooting A Connection to OBS Fails to Be Established Through HTTPS A Bucket or Object Whose Name Contains a Period (.) Fails to Be Accessed Through HTTPS...44 A Change History Issue 03 ( ) iii

4 1 Overview 1 Overview S3cmd is an open-source, free, and easy-to-use command line tool written in Python for uploading, retrieving, and managing data in Amazon Simple Storage Service (Amazon S3) and other cloud storage providers that use the S3 protocol. It is best suited for users familiar with command line. It is also ideal for batch processing and automated tasks. You can use S3cmd to access Object Storage Service (OBS) except for using the official clients provided by OBS. With S3cmd you and upload, download, delete, and set permissions for OBS buckets and objects. S3cmd is applicable to both Linux and MAC operating systems. This document uses S3cmd as an example to describe how to use S3cmd on SUSE Linux. S3cmd is compatible with most OBS application programming interfaces (APIs). This document provides an interoperability matrix and command use cases for your reference. For details, see 2 Interoperability Matrix. If procedures of upgrading S3cmd provided in this document do not suit your needs, visit the S3cmd official website ( for more instructions. Issue 03 ( ) 1

5 2 Interoperability Matrix 2 Interoperability Matrix Table 2-1 S3cmd interoperability matrix Operation Description Link to the Section Create a bucket. Creates a bucket on OBS Creating a Bucket Obtain the bucket list. View storage information about a bucket. View basic information about a bucket. Configure a bucket policy. Configure static website hosting. Configure CORS. Configure logging. Configure a lifecycle rule. Delete a bucket. Upload an object. Obtains all buckets you have on OBS. Views storage information about a specific bucket. Views basic information about a specific bucket. Manages (configures, updates, and deletes) bucket policies. Manages (configures and deletes) static website hosting configuration. Manages (configures, updates, and deletes) CORS rules of buckets. Manages (that is, enables and disables) the logging function for buckets. Manages (configures, updates, and deletes) lifecycle rules for buckets. Deletes a specific bucket from OBS. Uploads an object to a specific bucket Obtaining the Bucket List Viewing Storage Information About a Bucket Viewing Basic Information About a Bucket Configuring a Bucket Policy Configuring Static Website Hosting Configuring CORS Configuring Logging Configuring a Lifecycle Rule Deleting a Bucket Uploading an Object Issue 03 ( ) 2

6 2 Interoperability Matrix Operation Description Link to the Section Obtain the object list. Synchronize an object. Copy an object. Move an object. View basic information about an object. Configure ACL permissions for an object. Configure an expiration rule for an object. Download an object. Delete an object. View a multipart upload task. View the part list. Suspend a multipart upload task. Obtains the list of objects in a specific bucket. Synchronizes an object between the local client and OBS. Creates a copy of an existing object on OBS. Moves an object between buckets or in a bucket on OBS. Views basic information about a specific object. Configures ACL permissions of a specific user for a specific object. Configures an expiration rule for a specific object. Downloads an object from a bucket on OBS to a local client. Deletes a specific object stored on OBS. Views a multipart upload task of a specific bucket. Views the list of multipart upload tasks. Suspends a multipart upload task Obtaining the Object List Synchronizing an Object Copying an Object Moving an Object Viewing Basic Information About an Object Configuring ACL Permissions for an Object Configuring an Expiration Rule for an Object Downloading an Object Deleting an Object Viewing a Multipart Upload Task Viewing the Part List Suspending a Multipart Upload Task Issue 03 ( ) 3

7 3 Set-Up 3 Set-Up 3.1 Preparing Tools Visit the S3cmd official website ( for instructions on preparing the S3cmd installation environment and software package. Install S3cmd following descriptions in file INSTALL in the software package. After the S3cmd installation is complete, you can check whether the installation is successful. The verification procedure is as follows: Run the following command: s3cmd -help If the S3cmd help information is displayed, S3cmd is successfully installed. 3.2 Creating Access Keys (AKs and SKs) 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. Context 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. 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. Issue 03 ( ) 4

8 3 Set-Up Restrictions and Limitations Each user can create up to two valid AK/SK pairs. Prerequisites You have registered and activated a cloud account. Step 4 Log in to OBS Console. In the upper right corner of the page, click the username and select My Credential. 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. 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 5 Step 6 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. 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 7 Open the downloaded credentials.csv file to obtain the access keys (AK and SK). 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. 3.3 Interconnection with OBS After S3cmd is successfully installed, configure the interconnection between OBS and S3cmd. You can use S3cmd to access OBS only after being authenticated by OBS. Issue 03 ( ) 5

9 3 Set-Up Prerequisites You have prepared resources (including S3cmd installation and the access key) needed for the interconnection. (Optional) If you use client-side encryption, install the GPG encryption software beforehand and obtain the software's installation path. Log in to the host where S3cmd is installed as user root. Run the following command to perform basic configuration for S3cmd: s3cmd --configure Step 4 Enter the AK, SK, and region information following the instructions in the command output. Table 3-1 describes the parameters. You can press Enter to skip optional parameters. Table 3-1 Parameters Parameter Description Mandatory or Optional Access Key The AK to access OBS. Mandatory Secret Key The SK to access OBS. Mandatory Default Region Encryption password Path to GPG program Use HTTPS protocol HTTP Proxy server name The default region that indicates where a bucket is located. The encryption password needed when you use client-side encryption to transmit data. The path of the GPG encryption software when you use client-side encryption to transmit data. Whether to use the Hypertext Transfer Protocol Secure (HTTPS) protocol. If yes, set the value of this parameter to Yes. If no, set the value of this parameter to No. Whether to enable the Hypertext Transfer Protocol (HTTP) proxy when HTTPS is not enabled. If this parameter is null, the HTTP proxy is not used. Mandatory Optional Optional Optional Optional After the previous basic parameters are configured, the current configuration result is generated for your confirmation. The following information is displayed at the end of the command output: Issue 03 ( ) 6

10 3 Set-Up Test access with supplied credentials? [Y/n] Step 5 Enter n to quit verifying the access key. By default, S3cmd sends a request to Amazon S3. If you enter Y instead, a message is displayed, indicating an AK and SK authentication failure. The following information is displayed at the end of the command output: Save settings? [y/n] Step 6 Enter y to save the current configuration. After the current configuration is saved, S3cmd will automatically generate file.s3cfg under directory $HOME. The file includes all configuration information about S3cmd. Step 7 Run the following command to open file.s3cfg: vi ~/.s3cfg Step 8 Step 9 0 Press i to go to the edit mode. Locate parameter host_base and modify the domain name address of OBS as follows host_base = Domain name address of OBS Press Esc, input :wq!, and press Enter to save and exit the vi editor. (Optional) After the configuration, run the following command to view the configuration information about S3cmd: s3cmd --dump-config 1 Run the following command to configure S3cmd: s3cmd --configure The value of a configured parameter is displayed in the square brackets ([]) after this parameter. 2 3 Press Enter to skip the AK and SK configuration items until the following message is displayed: Test access with supplied credentials? [Y/n] Enter Y to start authenticating the interconnection with OBS. If the information in the red-line box, as shown in Figure 3-1, is displayed in the command output, it indicates that S3cmd has connected to OBS successfully. Figure 3-1 Verifying the interconnection Issue 03 ( ) 7

11 3 Set-Up 4 Enter y to save the current configuration. Issue 03 ( ) 8

12 4.1 Bucket Management Creating a Bucket Prerequisites This section helps you use S3cmd to create an OBS bucket. You have installed and configured S3cmd. Run the following command to create an OBS bucket: s3cmd mb s3://my-bucket my-bucket is the name of the bucket that you want to create. The name of each bucket is globally unique on OBS and complies with the following rules: Contains 3 to 63 characters, including lowercase letters, digits, hyphens (-), and periods (.), and starts with a digit or letter Cannot be an IP address Cannot start or end with a hyphen (-) or period (.) Cannot contain two consecutive periods (.), for example, my..bucket Cannot contain periods (.) and hyphens (-) adjacent to each other, for example, my-.bucket or my.- bucket If the following command output is displayed, it indicates that an OBS bucket is successfully created. Bucket 's3://my-bucket/' created (Optional) Run the following command to obtain the bucket list and check whether the name of the newly created bucket is in the bucket list: Issue 03 ( ) 9

13 s3cmd ls Obtaining the Bucket List You can run the command to obtain the bucket list so that you can view all your buckets on OBS. Run the following command to obtain the OBS bucket list: s3cmd ls You can only view the buckets created by yourself Viewing Storage Information About a Bucket Bucket owners or users who have the s3:listbucket permission (the permission is configured in the bucket policy) can view the storage information about the bucket, including bucket size and number of objects. For details about how to configure a bucket policy, see section Configuring a Bucket Policy. Run the following command to view the storage information about a specific bucket: s3cmd du s3://my-bucket my-bucket is the name of the bucket whose storage information you want to view. In the command output, the storage information about the bucket is displayed in the following format: Bucket size Number of objects s3://my-bucket/ The unit of the bucket size is KB Viewing Basic Information About a Bucket Bucket owners or users that have the following permissions for the buckets can view the basic information about the bucket, including bucket locations, expiration rules, bucket policies, CORS rules, and ACL rules. Issue 03 ( ) 10

14 s3:getbucketlocation s3:getlifecycleconfiguration s3:getbucketpolicy s3:getbucketcors s3:getbucketacl You can obtain these permissions by configuring a bucket policy. For details about how to configure a bucket policy, see section Configuring a Bucket Policy. Run the following command to obtain the basic information about a specific bucket: s3cmd info s3://my-bucket my-bucket is the name of the bucket whose basic information you want to view. In the command output, the basic information about the bucket is displayed in the following format: s3://my-bucket/(bucket): Location: Payer: None Expiration Rule: policy: cors: ACL: Table 4-1 describes metadata parameters. Table 4-1 Object metadata parameters Metadata Location Payer Expiration Rule policy cors ACL Description The bucket location, that is, the region. The payment policy of the bucket requester. OBS does not support the ability to modify the payment policy. The value of this parameter is None. The expiration rule of a specific object in the bucket. The bucket policy that defines the access control policies of resources (buckets and objects) on OBS. The bucket cross-origin resource sharing (CORS) rule. The bucket Access Control List (ACL) rule. Issue 03 ( ) 11

15 4.1.5 Configuring a Bucket Policy On OBS, you can use a bucket policy to control access to buckets and objects in a stricter manner. For example, you can specify a bucket that a specific OBS account can access, limit a specific address's access to a specified bucket, and more. You can configure a bucket policy for your own bucket. Run the following command to create a file that stores a bucket policy. vi policy-file-name policy-file-name is the name of the file that stores a bucket policy. The value can be user-defined. Press i to go to the edit mode and configure a bucket policy in the following format: { } "Version": " ", "Id": "PolicyId", "Statement": [ { "Sid": "StmtId", "Effect": "Allow", "Principal": { "AWS": [ "arn:aws:iam::domainid:root" ] }, "Action": [ "s3:get*" ], "Resource": [ "arn:aws:s3:::my-bucket" ] } ] Table 4-2 describes parameters in a bucket policy. Table 4-2 Parameters in a bucket policy Parameter Description Mandatory or Optional Version The version that is consistent with Amazon S3. The value can only be Optional Id The bucket policy ID. The value must be unique. Optional Issue 03 ( ) 12

16 Parameter Description Mandatory or Optional Statement The description of the bucket policy. The statement defines complete permission control. Each bucket policy can have multiple statements, and each statement contains the following parameters: Sid Effect Principal NotPrincipal Action NotAction Resource NotResource Condition In each statement, you must select either Principal or NotPrincipal, either Action or NotAction, and either Resource or NotResource. Mandatory Sid The statement ID. Optional Effect Principal NotPrincipal The effect of the bucket policy. The statement can be sent to accept or reject requests. Allow: to accept requests. Deny: to reject requests. The grantee or user on whom the bucket policy statement takes effect. A wildcard character (*) indicates all users. Principal supports authorization of Domain in the following three formats: AWS: [domainid] AWS: [arn:aws:iam::domainid:root] CanonicalUser:[domainid] When authorizing User, Principal is in the AWS: [arn:aws:iam::domainid:user/userid] format. The unauthorized user excluded from the users that match the bucket policy. The value format is the same as Principal. Mandatory Optional Optional Issue 03 ( ) 13

17 Parameter Description Mandatory or Optional Action NotAction Resource NotResource Condition The OBS operation on which the bucket policy statement takes effect. The value is an array configured with many operations that are separated by commas (,). The value is case-insensitive and supports a wildcard character (*) that indicates all operations, for example, "Action": ["List*","Get*"]. The set of operations excluded from the operations that match the bucket policy. The value format is the same as Action. The target resource on which the bucket policy statement takes effect. If the target resource is a bucket, the format of Resource is arn:aws:s3:::my-bucket. If the target resource is an object, the format of Resource is arn:aws:s3:::my-bucket/*. NOTICE The target bucket must be an existing bucket consistent with the one specified in the command. Otherwise, you cannot successfully configure a bucket policy. The set of resources excluded from the resources that match the bucket policy. The condition that defines restrictions of this bucket policy. Optional Optional Optional Optional Optional Step 4 Step 5 Press Esc, input :wq!, and press Enter to save and exit the vi editor. Run the following command to configure this bucket policy for a specific bucket: s3cmd setpolicy policy-file-name s3://my-bucket policy-file-name is the name of the file that stores the bucket policy and my-bucket is the name of the bucket for which you want to configure this bucket policy. If the following information is displayed in the command output, it indicates that the bucket policy is successfully configured for the bucket. s3://my-bucket/: Policy updated Step 6 (Optional) Run the following command to view bucket basic information and check the bucket policy configuration: s3cmd info s3://my-bucket Issue 03 ( ) 14

18 Example A bucket policy can define many access control policies. The following provides several configuration examples. These examples introduce how to control access permissions on OBS by configuring bucket policies in different scenarios. 1. Assigning specific users the permission to obtain objects in specific buckets In the following example, the account (whose Domain ID is 783fc6652cf246c096ea836694f71855) is assigned the permission to obtain all objects in bucket examplebucket. { } "Version": " ", "Id": "Policy1", "Statement": [ { "Sid": "Stmt1", "Effect": "Allow", "Principal": { "AWS": [ "arn:aws:iam::783fc6652cf246c096ea836694f71855:root" ] }, "Action": [ "s3:getobject" ], "Resource": [ "arn:aws:s3:::examplebucket/*" ] } ] 2. Assigning the read-only permission to anonymous users The following example introduces how to assign the permission to anonymous users to obtain all objects in the bucket. This permission allows all users to read objects and is very helpful when you configure a bucket as a website and hope that everyone can read objects stored in the bucket. { } "Version":" ", "Id":"Policy2", "Statement":[ { "Sid":"Stmt2", "Effect":"Allow", "Principal": "*", "Action":["s3:GetObject"], "Resource":["arn:aws:s3:::examplebucket/*"] } ] 3. Configuring access permissions of specific website addresses By default, all OBS resources are private and can only be accessed by accounts that create them. OBS is the storage resource pool of a website (suppose that the website's domain name is and resources such as videos and images are stored in bucket examplebucket). If you want to allow the objects in bucket examplebucket to be accessed from configure a bucket policy based on the following example: { "Version":" ", "Id":"Policy3", "Statement":[ { Issue 03 ( ) 15

19 } ] } "Sid":"Stmt3", "Effect":"Allow", "Principal":{"AWS":["*"]}, "Action":["s3:GetObject"], "Resource":["arn:aws:s3:::examplebucket/*"], "Condition": {"StringEquals":{"aws:Referer":[" } Follow-up If you need to modify the bucket policy, you can modify the original bucket policy file or create a bucket policy file, and then run the bucket policy configuration command. By doing so, the bucket policy can be updated. You can delete an access policy of a bucket as follows if necessary: Run the following command to delete the bucket policy: s3cmd delpolicy s3://my-bucket If the following information is displayed in the command output, it indicates that this bucket policy is successfully deleted. s3://my-bucket/:policy deleted (Optional) Run the following command to view bucket basic information and check the bucket policy configuration: s3cmd info s3://my-bucket Configuring Static Website Hosting Prerequisites Bucket owners or users who have the following permissions on the buckets can configure static website hosting for the buckets and access the static websites using the bucket domain names. s3:putbucketwebsite s3:getbucketwebsite s3:deletebucketwebsite You can obtain these permissions by configuring a bucket policy. For details about how to configure a bucket policy, see section Configuring a Bucket Policy. The web page files required by the static website have been uploaded to the specified bucket. For details about how to upload objects, see section Uploading an Object. Your static website files must contain one default home page file and can contain one default 404 page. When a client attempts to access the static website using the bucket domain name, the browser can resolve the default website resources and present them to the end users. Issue 03 ( ) 16

20 Run the following command to configure static website hosting for a bucket: s3cmd ws-create --ws-index=website_index --ws-error=website_error s3://my-bucket --ws-index=website_index is the website's default home page and website_index varies with the actual home page file name. Only files in the current bucket can be used as the index page (home page) of the static website. If related file names are not entered, the default home page settings are not enabled. OBS only allows files such as index.html in the root directory of a bucket to function as the default homepage. That is to say, do not set the default homepage with a multi-level directory structure (for example, /page/index.html). --ws-error=website_error is the parameter used to set the website's default 404 page and website_error varies with the actual file name of the 404 error page. Only files in the current bucket can be used as the default 404 (Not Found) page of the static website. This error page is returned when incorrect path is being accessed. If this parameter is not used, the default 404 page settings are not enabled. my-bucket is the bucket for which static website hosting is to be configured. If the following information is displayed in the command output, it indicates that the static website is successfully set: Bucket 's3://my-bucket/': website configuration created. (Optional) Run the following command to obtain related information, such as the domain name used to access the bucket website: s3cmd ws-info s3://my-bucket Check whether the following information is displayed in the command output: Bucket s3://my-bucket/: Website configuration Website endpoint: Index document: index.html Error document: error.html Step 4 (Optional) Open the browser and enter information in the address bar in the following format: name.domain name used to access the hosted static website on OBS Follow-up Configuration of static website hosting will take effect within 2 minutes. If you fail to access the static website, try again later. You can disable static website hosting for a bucket as follows if necessary: Run the following command to delete the static website hosting configuration of a bucket as follows: s3cmd ws-delete s3://my-bucket If the following information is displayed in the command output, it indicates that the static website hosting configuration is successfully deleted: Issue 03 ( ) 17

21 Bucket 's3://my-bucket/': website configuration deleted. (Optional) Run the following command to view the static website information: s3cmd ws-info s3://my-bucket If the following information is displayed in the command output, it indicates that static website hosting is not configured for the bucket: Bucket s3://my-bucket/: Unable to receive website configuration Configuring CORS Cross-Origin Resource Sharing (CORS) is a standard mechanism put forward by World Wide Web Consortium (W3C) and enables client-side cross-origin requests. Bucket owners or users who have the following permissions on the buckets can configure CORS. After a CORS rule is configured for a bucket stored on OBS, the bucket policy and ACL permissions on the bucket's objects still prevail. s3:putbucketcors s3:getbucketcors You can obtain these permissions by configuring a bucket policy. For details about how to configure a bucket policy, see section Configuring a Bucket Policy. Run the following commands to create a file that stores a CORS rule. vi cors-file-name cors-file-name is the name of the file that stores a CORS rule and can be user-defined. Press i to go to the edit mode and configure a CORS rule in the following format: <CORSConfiguration> <CORSRule> <ID>id</ID> <AllowedMethod>method</AllowedMethod> <AllowedOrigin>origin</AllowedOrigin> <AllowedHeader>header</AllowedHeader> <MaxAgeSeconds>seconds</MaxAgeSeconds> <ExposeHeader>header</ExposeHeader> </CORSRule> </CORSConfiguration> Table 4-3 describes each parameter in a CORS rule. Issue 03 ( ) 18

22 Table 4-3 CORS rule Parameter Description Mandatory or Not CORSConfiguration CORSRule ID AllowedMethod AllowedOrigin AllowedHeader The root node of CORSRule and its capacity cannot exceed 64 KB. Type: Container Ancestor: None The CORS rule. CORSConfiguration can contain a maximum of 100 CORS rules. Type: Container Ancestor: CORSConfiguration Indicates the unique identifier of a rule. The value can contain a maximum of 255 characters. Type: String Ancestor: CORSRule Specifies the cross-origin request methods allowed by a CORS rule. If the other parameters are the same, each CORS rule can contain multiple allowed methods. Each method occupies one line. Type: String Valid values: GET, PUT, HEAD, POST, and DELETE Ancestor: CORSRule The origin of the cross-origin requests allowed by a CORS rule. Requests from this origin can access the bucket. Multiple matching rules are allowed. One rule occupies one line, and allows one wildcard character (*) at most. Type: String Ancestor: CORSRule Specifies the allowed header of cross-origin requests. Only CORS requests matching the allowed header are valid. You can enter multiple allowed headers (one per line). Each line can contain one wildcard character (*) at most. Spaces and special characters including &:< are not allowed. Type: String Ancestor: CORSRule Mandatory Mandatory Optional Mandatory Mandatory Optional Issue 03 ( ) 19

23 Parameter Description Mandatory or Not ExposeHeader MaxAgeSeconds Specifies the exposed header in CORS responses, providing additional information for clients. You can enter multiple exposed headers (one per line). Spaces and special characters including &:< are not allowed. Type: String Ancestor: CORSRule Specifies the duration that the client can cache CORS responses, expressed in seconds. The default value is 100. Each CORS rule can contain one MaxAgeSeconds at most. Type: Integer Ancestor: CORSRule Optional Optional Step 4 Step 5 Press Esc, input :wq!, and press Enter to save and exit the vi editor. Run the following command to configure this CORS rule for a specified bucket: s3cmd setcors cors-file-name s3://my-bucket cors-file-name is the name of the file that stores the CORS rule and my-bucket is the name of the bucket for which you want to configure this CORS rule. Step 6 (Optional) Run the following command to view the basic information about the bucket and check the CORS rule configuration: s3cmd info s3://my-bucket Bucket owners or users who have all the following five permissions can perform this operation. s3:getbucketlocation s3:getlifecycleconfiguration s3:getbucketpolicy s3:getbucketcors s3:getbucketacl You can obtain these permissions by configuring a bucket policy. For details about how to configure a bucket policy, see section Configuring a Bucket Policy. Example You can configure a CORS rule for a bucket to specify the origin, supported request methods, and other specific operations allowed to access a bucket. The following uses an example to introduce how to configure a CORS rule. In the example, a CORS rule is configured to allow the OBS static website to respond to cross-origin requests from another website. Issue 03 ( ) 20

24 Follow-up Usually, the scripts and content of a website cannot interact with those of another website because of the Same Origin Policy (SOP) for requests on the web page. In the following example rule, the bucket that is allowed to be configured as the static website can respond to the PUT, POST, and DELETE requests from website <CORSConfiguration> <CORSRule> <AllowedOrigin> <AllowedMethod>PUT</AllowedMethod> <AllowedMethod>POST</AllowedMethod> <AllowedMethod>DELETE</AllowedMethod> <AllowedHeader>*</AllowedHeader> <MaxAgeSeconds>3000</MaxAgeSeconds> <ExposeHeader>x-server-side-encryption</ExposeHeader> </CORSRule> </CORSConfiguration> In this example, the optional parameters and their descriptions are as follows: AllowedHeader: In this example, its value is a wildcard character (*) which indicates that all specific headers are allowed to access the bucket. MaxAgeSeconds: In this example, its value is 3000 seconds which indicates that the duration that your browser can cache CORS responses is 3000 seconds. The browser caches the CORS responses so that if repeated requests are sent, it can respond to these requests without sending them to OBS. ExposeHeader: In this example, its value is x-server-side-encryption. Each ExposeHeader element identifies a header in the response that you want customers to be able to access from their applications. If you need to modify a CORS rule for a bucket, you can modify the CORS configuration file or create a CORS file, and then run the CORS rule configuration command. By doing so, the bucket's CORS rule is updated. You can delete a CORS rule as follows if necessary: Run the following command to delete a specific CORS rule: s3cmd delcors s3://my-bucket If the following information is displayed in the command output, it indicates that the CORS rule of the bucket is successfully deleted. s3://my-bucket/: CORS deleted (Optional) Run the following command to view the basic information about the bucket and check that the CORS rule is deleted: s3cmd info s3://my-bucket Issue 03 ( ) 21

25 Bucket owners or users who have all the following five permissions can perform this operation. s3:getbucketlocation s3:getlifecycleconfiguration s3:getbucketpolicy s3:getbucketcors s3:getbucketacl Configuring Logging You can obtain these permissions by configuring a bucket policy. For details about how to configure a bucket policy, see section Configuring a Bucket Policy. By default, creating a bucket does not generate operation logs. If you want to record a bucket's operation logs, enable the logging function for this bucket. The bucket owner can configure logging. Run the following command to enable logging for a specific bucket: s3cmd accesslog --access-logging-target-prefix=log-target-prefix s3://my-bucket log-target-prefix is the path with a specified prefix that stores logs and uses the S3 URI format. For example, s3://examplebucket/logs indicates that logs are stored in bucket examplebucket and log file names are prefixed with logs. my-bucket specifies the bucket for which logging is enabled. If the following information is displayed in the command output, it indicates that logging is successfully enabled: Access logging for: s3://my-bucket/ Logging Enabled: True Target prefix: log-target-prefix Follow-up You can disable logging for the bucket as follows if necessary: Run the following command to disable logging for the bucket: s3cmd accesslog --no-access-logging s3://my-bucket If the following information is displayed in the command output, it indicates that logging is successfully enabled: Access logging for: s3://my-bucket/ Logging Enabled: False Issue 03 ( ) 22

26 4.1.9 Configuring a Lifecycle Rule Bucket owners or users who have the following permissions on the buckets can configure a lifecycle rule. Specify a lifecycle rule to automatically delete objects that match the rule once they expire, saving your storage space and costs. s3:putlifecycleconfiguration s3:getlifecycleconfiguration You can obtain these permissions by configuring a bucket policy. For details about how to configure a bucket policy, see section Configuring a Bucket Policy. Run the following command to create a file that stores a lifecycle rule: vi lifecycle-file-name lifecycle-file-name is the name of the file that stored a lifecycle rule and can be user-defined. Press i to go to the edit mode and configure a lifecycle rule in the following format: <LifecycleConfiguration> <Rule> <ID>id</ID> <Prefix>prefix</Prefix> <Status>status</Status> <Expiration> <Days>days</Days> </Expiration> <NoncurrentVersionExpiration> <NoncurrentDays>1</NoncurrentDays> </NoncurrentVersionExpiration> </Rule> </LifecycleConfiguration> Table 4-4 describes parameters in a lifecycle rule. Table 4-4 Parameters of a lifecycle rule Parameter Description Mandatory or Optional LifecycleConfiguration Indicates the container for lifecycle rules. You can add multiple rules. The total size of the rules cannot exceed 20 KB. Type: XML Children: Rule Ancestor: None Mandatory Issue 03 ( ) 23

27 Parameter Description Mandatory or Optional Rule ID Prefix Status Expiration Days Indicates the container for a specific lifecycle rule. Type: Container Ancestor: LifecycleConfiguration Indicates the unique identifier of a rule. The value can contain a maximum of 255 characters. Type: String Ancestor: Rule Indicates the object name prefix identifying one or more objects to which the rule applies. Type: String Ancestor: Rule Indicates whether the rule is enabled. Type: String Ancestor: Rule Valid values: Enabled and Disabled, which indicate that the rule is enabled or disabled respectively. Indicates the container for the object expiration rule (only applicable to the latest versions of objects). Type: XML Children: Days Ancestor: Rule Indicates the number of days when the rule takes effect after the object creation (only applicable to latest versions of objects). Type: Integer Ancestor: Expiration Mandatory Optional Mandatory Mandatory Mandatory Mandatory Issue 03 ( ) 24

28 Parameter Description Mandatory or Optional NoncurrentVersionExpiration NoncurrentDays Indicates the container for the expiration time of objects' historical versions. If versioning of a bucket is enabled or suspended, you can set NoncurrentVersionExpiration to delete historical versions of objects that match the lifecycle rule (only applicable to the historical versions of objects). Type: XML Children: NoncurrentDays Ancestor: Rule Indicates the number of days when the specified rule takes effect after the object becomes a historical version (only applicable to an object's historical version). Type: Integer Ancestor: NoncurrentVersionExpiration Optional Mandatory if NoncurrentVe rsionexpiratio n exists Step 4 Step 5 Press Esc, input :wq!, and press Enter to save and exit the vi editor. Run the following command to configure a lifecycle rule for a specific bucket: s3cmd setlifecycle lifecycle-file-name s3://my-bucket lifecycle-file-name is the name of the file that stores a lifecycle rule and my-bucket is the name of the bucket for which you want to configure this lifecycle rule. If the following information is displayed in the command output, it indicates that this lifecycle rule is successfully configured: s3://my-bucket/: Lifecycle Policy updated Step 6 (Optional) Run the following command to view the basic information about the bucket and check that the lifecycle rule is configured: s3cmd info s3://my-bucket Bucket owners or users who have all the following five permissions can perform this operation. s3:getbucketlocation s3:getlifecycleconfiguration s3:getbucketpolicy s3:getbucketcors s3:getbucketacl You can obtain these permissions by configuring a bucket policy. For details about how to configure a bucket policy, see section Configuring a Bucket Policy. Issue 03 ( ) 25

29 Example The following provides a configuration example. This example introduces how to use a lifecycle rule to manage log files that are periodically uploaded. Some periodically uploaded files need only to be retained for one week or one month, and can be deleted once they expire. In the following configuration example, log files whose name prefixes are logs/ will be automatically deleted after they are retained on OBS for 7 days. <LifecycleConfiguration> <Rule> <ID>delete-7-days</ID> <Prefix>logs/</Prefix> <Status>Enabled</Status> <Expiration> <Days>7</Days> </Expiration> </Rule> </LifecycleConfiguration> Follow-up You can delete the lifecycle rule of a specific bucket if you do not need automatic object deletion for this bucket. The deletion procedure is as follows: Run the following command to delete the lifecycle rule for a specific bucket: s3cmd dellifecycle s3://my-bucket Step 4 If the following information is displayed in the command output, it indicates that this lifecycle rule is successfully deleted: s3://my-bucket/: Lifecycle Policy deleted (Optional) Run the following command to view the basic information about the bucket and check that the lifecycle rule is successfully deleted: s3cmd info s3://my-bucket Bucket owners or users who have all the following five permissions can perform this operation. s3:getbucketlocation s3:getlifecycleconfiguration s3:getbucketpolicy s3:getbucketcors s3:getbucketacl Deleting a Bucket You can obtain these permissions by configuring a bucket policy. For details about how to configure a bucket policy, see section Configuring a Bucket Policy. You can delete a specific empty bucket and a bucket created by yourself. Issue 03 ( ) 26

30 NOTICE Before deleting a bucket, ensure that all objects in this bucket have been deleted and all multipart upload tasks are completed. Run the following command to delete a specific bucket: s3cmd rb s3://my-bucket my-bucket is the name of the bucket that you want to delete. For example, s3cmd rb s3:// examplebucket indicates that the bucket to be deleted is examplebucket. If the following information is displayed in the command output, it indicates that this bucket is successfully deleted: Bucket 's3://my-bucket/' removed (Optional) Run the following command to check that the deleted bucket does not exist in the bucket list: s3cmd ls 4.2 Object Management Uploading an Object Bucket owners or users who have the s3:putobject permission on buckets can upload local objects to OBS. You can obtain the permission by configuring a bucket policy. For details about how to configure a bucket policy, see section Configuring a Bucket Policy. Prerequisites Currently, S3cmd does not provide versioning. Therefore, an object name must be unique in a bucket. If you upload a new object with the same name as the existing object in the bucket, the new object will overwrite the existing one. The target bucket already exists. Run the following command to upload an object to a specific location on OBS: Issue 03 ( ) 27

31 s3cmd put params object s3://my-bucket object is the name of the object that you want to upload, which can be a file or folder. If the object to be uploaded is a folder, parameter --recursive is mandatory. The object name complies with the following rules: The folder name cannot contain spaces and special characters. The folder name cannot exceed 1023 bytes. The length of a folder name is the sum of the length of its own and the length of its upperlevel directories, and cannot exceed 1023 bytes. Levels of directories are automatically separated by slashes (/). For example, if the upper-level directory of file01 is folder01, file name length is calculated based on folder01/file01. my-bucket varies with the actual bucket to which the object is uploaded. For example, s3cmd put test s3://examplebucket indicates that object test will be uploaded to bucket examplebucket. params is an optional variable. It can be specified in the command to determine whether to encrypt objects for upload and the encryption mode. Multiple parameters can be specified for this variable and they are separated by spaces. Table 4-5 describes the parameters. If parameters are specified in the command, it indicates that these settings are only applicable to the current command. For global application, modify related parameters in the configuration file. For details, see section Modifying the Configuration File. Table 4-5 Parameters of uploading an object Parameter --ssl --encrypt --skip-existing --delete-removed --recursive --disable-multipart --multipart-chunk-sizemb=value --continue-put Description Uploads objects over HTTPS. If you do not want to use HTTPS, use parameter --no-ssl. Uses client-side encryption to upload objects. This encryption function requires installing the GPG encryption tool on the client and configuring client-side encryption through S3cmd. You need to configure the client-side encryption password and path of the encryption tool. For details about how to configure client-side encryption, see 3.3 Interconnection with OBS. Skips existing objects that do not need to be uploaded. Deletes objects that have already been deleted at the source on OBS. Recursively uploads objects. If the object to be uploaded is a folder, you can upload the parent-level object (this folder) first and then the child-level objects (files in this folder) in a recursive manner. Disables the function of uploading an object in multiparts. Specifies the part size. The part size configured through S3cmd ranges from 5 MB to 5120 MB. The number of parts ranges from 1 to 10,000. The default part size is 15 MB. Continues uploading an object's remaining content. Issue 03 ( ) 28

32 Parameter --server-sideencryption-kmsid=kms-key Description Uploads objects using the server-side encryption. KMS-KEY indicates the KMS key used for the server-side encryption. For details about how to create and view a KMS key, see sections Creating a CMK and Querying a CMK in the Key Management Service User Guide. If you use server-side encryption to upload objects, the request must be sent over HTTPS. Therefore, parameters -s or --ssl must be used in the command. --limit-rate=value Restricts the upload speed. If the upload speed is restricted to 10 KB/s, the configuration is: --limit-rate=10k If the unit is not specified, the default unit MB is used. --stop-on-error Stops the upload once an error occurs. In the command output, if done is displayed at the end of all objects uploaded, and the cursor appears on the command-line interface (CLI) again, it indicates that all objects have been uploaded. During the upload, if you want to stop the upload task, press Ctrl+C. OBS retains data that has been uploaded. You can add parameter --continue-put in the upload command to continue the upload next time. (Optional) Run the following command to check whether the object is uploaded to the specified location: s3cmd ls s3://my-bucket Only the bucket owner can run this command Obtaining the Object List You can view the information about an object in your bucket. The information includes the object's creation time, size, and storage path. Run the following command to view the object list in a specific bucket: s3cmd ls s3://my-bucket Issue 03 ( ) 29

33 Follow-up my-bucket is the name of the bucket whose object information you want to view. Operations on S3cmd prevail globally. Thus, you can view all objects in all buckets. The operation method is as follows: Run the following method to list all objects in a bucket: s3cmd la Synchronizing an Object When local data or data stored on OBS changes, you can perform this operation to synchronize the changed data from your local client to OBS or from OBS to your local client. By doing so, local data and data stored on OBS are consistent. Run a command specific to the scenario: Synchronizing local data to a bucket on OBS s3cmd sync params local-dir s3://my-bucket/prefix Synchronizing data in a bucket on OBS to a local client s3cmd sync params s3://my-bucket/prefix local-dir local-dir is the path of local data. my-bucket/prefix is the object to be synchronized. prefix is optional and specifies the prefix of objects in this bucket. If you do not specify objects, it indicates that all objects will be synchronized. params is an optional variable that indicates the command parameter. You can configure a specific parameter to set properties of the object to be uploaded. Table 4-6 describes the optional parameters. Table 4-6 Parameters of synchronizing an object Parameter --no-check-md5 --skip-existing Description Configure this parameter when the MD5 check is not required. After configuring this parameter, consistency between source objects and target objects is checked by object names and size. Skips existing objects that do not need to be synchronized. Issue 03 ( ) 30

34 Parameter --delete-removed --recursive --continue-put --multipart-chunk-sizemb=value --server-sideencryption-kms-id Description my-bucket/prefix is the object to be synchronized. prefix is optional and specifies the prefix of objects in this bucket. Recursively uploads objects. Specifies the part size. The part size configured through S3cmd ranges from 5 MB to 5120 MB. The number of parts ranges from 1 to 10,000. The default part size is 15 MB. Continues uploading an object's remaining content. Specifies the server-side KMS encryption password. In the command output, if done is displayed at the end of all objects synchronized, and the cursor appears on the CLI again, it indicates that all objects have been synchronized. (Optional) Run a command specific to the scenario to check whether objects have been synchronized. Check whether the local object has been synchronized with the target object on OBS. s3cmd ls s3://my-bucket Check whether the object on OBS has been synchronized to the local client. ls local-dir Copying an Object S3cmd provides the object copy command to create a copy for an existing object on OBS. Run a command that varies depending on whether a target object name is specified. Without the target object name specified s3cmd cp s3://my-bucket-1/object s3://my-bucket-2 It is a good practice to copy an object to different buckets or folders. An object name must be unique in a bucket. If the source object's path is the same as the copy's path, the object's copy fails to be created. With the target object name specified s3cmd cp s3://my-bucket-1/object s3://my-bucket-2/object-copy (Optional) Run the following command to check that the object's copy has been created in a specific bucket. s3cmd ls s3://my-bucket-2 Issue 03 ( ) 31

35 4.2.5 Moving an Object You can move data in a bucket to a specific folder within this bucket or between buckets. Run the following command to move an object to a specific location on OBS: s3cmd mv s3://my-bucket-1/object-1 s3://my-bucket-2/object-2 In the command output, the source path and target path are displayed. When the cursor appears on the CLI again, the object is successfully moved. (Optional) Run the following command both in the source path and target path to check that the object has been moved: s3cmd ls s3://my-bucket Viewing Basic Information About an Object Object owners or users who have the read permission on the objects can view the basic information about objects, their size, last modification time, storage class, and so on. Permissions on objects can be obtained by configuring the ACL permissions. For details, see section Configuring ACL Permissions for an Object. Run the following command to view the basic information about a specific object: s3cmd info s3://my-bucket/object In the command output, the object information is displayed in the following format: s3://my-bucket/object(object): File size: Last Mod: MIME type: Storage: MD5 sum: SSE: policy: cors: ACL: x-amz-meta-s3cmd-attrs: Table 4-7 describes metadata parameters. Table 4-7 Object metadata parameters Metadata File size Description The object size. Issue 03 ( ) 32

Third-Party Client (s3fs) User Guide

Third-Party Client (s3fs) User Guide Issue 02 Date 2017-09-28 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

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

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

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

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

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

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

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

AWS Elemental MediaStore. User Guide

AWS Elemental MediaStore. User Guide AWS Elemental MediaStore User Guide AWS Elemental MediaStore: User Guide Copyright 2018 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not

More information

Quick start guide for Infscape UrBackup Appliance on Amazon Web Services

Quick start guide for Infscape UrBackup Appliance on Amazon Web Services Quick start guide for Infscape UrBackup Appliance on Amazon Web Services Purpose of this document This document will give detailed step-by-step instructions on how to get Infscape UrBackup Appliance running

More information

Talend Component tgoogledrive

Talend Component tgoogledrive Talend Component tgoogledrive Purpose and procedure This component manages files on a Google Drive. The component provides these capabilities: 1. Providing only the client for other tgoogledrive components

More information

Live Data Connection to SAP Universes

Live Data Connection to SAP Universes Live Data Connection to SAP Universes You can create a Live Data Connection to SAP Universe using the SAP BusinessObjects Enterprise (BOE) Live Data Connector component deployed on your application server.

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

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

Nasuni Data API Nasuni Corporation Boston, MA

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

More information

StorageGRID Webscale 10.3 Administrator Guide

StorageGRID Webscale 10.3 Administrator Guide StorageGRID Webscale 10.3 Administrator Guide September 2016 215-10810_A0 doccomments@netapp.com Table of Contents 3 Contents Understanding the StorageGRID Webscale system... 8 What the StorageGRID Webscale

More information

Administration 1. DLM Administration. Date of Publish:

Administration 1. DLM Administration. Date of Publish: 1 DLM Administration Date of Publish: 2018-07-03 http://docs.hortonworks.com Contents ii Contents Replication Concepts... 4 HDFS cloud replication...4 Hive cloud replication... 4 Cloud replication guidelines

More information

StorageGRID Webscale 10.3 Simple Storage Service Implementation Guide

StorageGRID Webscale 10.3 Simple Storage Service Implementation Guide StorageGRID Webscale 10.3 Simple Storage Service Implementation Guide September 2016 215-10825_A0 doccomments@netapp.com Table of Contents 3 Contents Support for the S3 REST API... 5 Changes to S3 REST

More information

Web Services Configuration Guide

Web Services Configuration Guide Web Services Configuration Guide Freezerworks 2017 PO Box 174 Mountlake Terrace, WA 98043 www.freezerworks.com support@freezerworks.com 425-673-1974 877-289-7960 U.S. Toll Free Freezerworks is a registered

More information

Backup Solution. User Guide. Issue 01 Date

Backup Solution. User Guide. Issue 01 Date Issue 01 Date 2017-08-30 Contents Contents 1 Introduction... 1 1.1 What Is the Backup Solution?... 1 1.2 Why Choose the Backup Solution?... 2 1.3 Concepts and Principles...3 1.3.1 Basic OBS Concepts...3

More information

Nasuni Data API Nasuni Corporation Boston, MA

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

More information

User Guide. Version R95. English

User Guide. Version R95. English Cloud Backup User Guide Version R95 English September 11, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS

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

User Guide. BlackBerry Workspaces for Windows. Version 5.5

User Guide. BlackBerry Workspaces for Windows. Version 5.5 User Guide BlackBerry Workspaces for Windows Version 5.5 Published: 2017-03-30 SWD-20170330110027321 Contents Introducing BlackBerry Workspaces for Windows... 6 Getting Started... 7 Setting up and installing

More information

DataMan. version 6.5.4

DataMan. version 6.5.4 DataMan version 6.5.4 Contents DataMan User Guide 1 Introduction 1 DataMan 1 Technical Specifications 1 Hardware Requirements 1 Software Requirements 2 Ports 2 DataMan Installation 2 Component Installation

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

Object Storage API Manual

Object Storage API Manual NTT Communications Cloudⁿ Object Storage API Manual Ver.1.0 Do not redistribute (distribute, reproduce or provide) the content listed in this document. 1 Versio n Edited date Ver.1.0 February 20, 2013

More information

Healthcare Database Connector

Healthcare Database Connector Healthcare Database Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

Amazon S3 Glacier. Developer Guide API Version

Amazon S3 Glacier. Developer Guide API Version Amazon S3 Glacier Developer Guide Amazon S3 Glacier: Developer Guide Table of Contents What Is Amazon S3 Glacier?... 1 Are You a First-Time Glacier User?... 1 Data Model... 2 Vault... 2 Archive... 3 Job...

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

Immersion Day. Getting Started with Amazon S3. January Rev

Immersion Day. Getting Started with Amazon S3. January Rev January 2016 Rev 2015-01-15 Table of Contents Overview... 3 Create a Bucket in S3... 4 Add an Object to a Bucket... 5 View an Object... 6 Move an Object... 7 Delete an Object and Bucket... 8 Conclusion...

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

Identity and Access Management. User Guide. Issue 09 Date

Identity and Access Management. User Guide. Issue 09 Date Issue 09 Date 2017-08-16 Contents Contents 1 What Is IAM?...1 2 How Do I Manage User Groups and Grant Permissions to Them?... 2 3 Permission Description... 4 4 How Do I Manage Users?... 11 5 How Do I Create

More information

Release Notes Release (December 4, 2017)... 4 Release (November 27, 2017)... 5 Release

Release Notes Release (December 4, 2017)... 4 Release (November 27, 2017)... 5 Release Release Notes Release 2.1.4. 201712031143 (December 4, 2017)... 4 Release 2.1.4. 201711260843 (November 27, 2017)... 5 Release 2.1.4. 201711190811 (November 20, 2017)... 6 Release 2.1.4. 201711121228 (November

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

Cloud object storage : the right way. Orit Wasserman Open Source Summit 2018

Cloud object storage : the right way. Orit Wasserman Open Source Summit 2018 Cloud object storage : the right way Orit Wasserman Open Source Summit 2018 1 About me 20+ years of development 10+ in open source: Nested virtualization for KVM Maintainer of live migration in Qemu/kvm

More information

Interface Reference. McAfee Application Control Windows Interface Reference Guide. Add Installer page. (McAfee epolicy Orchestrator)

Interface Reference. McAfee Application Control Windows Interface Reference Guide. Add Installer page. (McAfee epolicy Orchestrator) McAfee Application Control 8.1.0 - Windows Interface Reference Guide (McAfee epolicy Orchestrator) Interface Reference Add Installer page Add an existing installer to the McAfee epo repository. Table 1

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

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

lab Creating a Low Cost Sync Database for JavaScript Applications with AWS V1.00 AWS Certified Developer Associate lab title Course title

lab Creating a Low Cost Sync Database for JavaScript Applications with AWS V1.00 AWS Certified Developer Associate lab title Course title lab lab title Creating a Low Cost Sync Database for JavaScript Applications with AWS V1.00 Course title AWS Certified Developer Associate Table of Contents Contents Table of Contents... 1 About the Lab...

More information

CPM Quick Start Guide V2.2.0

CPM Quick Start Guide V2.2.0 CPM Quick Start Guide V2.2.0 1 Content 1 Introduction... 3 1.1 Launching the instance... 3 1.2 CPM Server Instance Connectivity... 3 2 CPM Server Instance Configuration... 3 3 Creating a Simple Backup

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

Healthcare Database Connector

Healthcare Database Connector Healthcare Database Connector Installation and Setup Guide Version: 3.0.0 Written by: Product Knowledge, R&D Date: February 2017 2015-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark

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

Highwinds CDN Content Protection Products. August 2009

Highwinds CDN Content Protection Products. August 2009 Highwinds CDN Content Protection Products August 2009 1 Highwinds CDN Content Protection Products August 2009 Table of Contents CDN SECURITY INTRO... 3 CONTENT PROTECTION BY CDN DELIVERY PRODUCT... 3 HTTP

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

BMS Managing Users in Modelpedia V1.1

BMS Managing Users in Modelpedia V1.1 BMS 3.2.0 Managing Users in Modelpedia V1.1 Version Control Version Number Purpose/Change Author Date 1.0 Initial published version Gillian Dass 26/10/2017 1.1 Changes to User roles Gillian Dass 14/11/2017

More information

Elastic Cloud Storage (ECS)

Elastic Cloud Storage (ECS) Elastic Cloud Storage (ECS) Version 3.1 Data Access Guide 302-003-865 01 Copyright 2013-2017 Dell Inc. or its subsidiaries. All rights reserved. Published August 2017 Dell believes the information in this

More information

Nasuni Desktop Client User Guide

Nasuni Desktop Client User Guide Nasuni combines the best features of consumer file-sharing applications with the secure and robust storage infrastructure that enterprises demand. The Nasuni Desktop Client provides an easy-to-use, enterprise-friendly

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

Zimbra Connector for Microsoft Outlook User Guide. Zimbra Collaboration

Zimbra Connector for Microsoft Outlook User Guide. Zimbra Collaboration Zimbra Connector for Microsoft Outlook User Guide Zimbra Collaboration 8.8.11 Table of Contents Legal Notices............................................................................... 1 1. Introduction..............................................................................

More information

Dell EMC License Manager Version 1.5 User's Guide

Dell EMC License Manager Version 1.5 User's Guide Dell EMC License Manager Version 1.5 User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

Oracle Beehive. Before Using Oracle Beehive Client and Communicator. Using BlackBerry with Oracle Beehive Release 2 ( )

Oracle Beehive. Before Using Oracle Beehive Client and Communicator. Using BlackBerry with Oracle Beehive Release 2 ( ) Oracle Beehive Using BlackBerry with Oracle Beehive Release 2 (2.0.1.6) November 2011 Document updated November 4, 2011 This document describes how to access Oracle Beehive from your RIM BlackBerry device

More information

StorageGRID Webscale 11.0 Tenant Administrator Guide

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

More information

How to ensure OpenStack Swift & Amazon S3 Conformance for storage products & services supporting multiple Object APIs

How to ensure OpenStack Swift & Amazon S3 Conformance for storage products & services supporting multiple Object APIs How to ensure OpenStack Swift & Amazon S3 Conformance for storage products & services supporting multiple Object APIs Ankit Agrawal Tata Consultancy Services Ltd. 30 May 2017 1 Copyright 2017 Tata Consultancy

More information

Kernel Migrator. for SharePoint. Configuration Guide

Kernel Migrator. for SharePoint. Configuration Guide Kernel Migrator for SharePoint Table of Contents 1. System Requirements... 4 1.1 Minimum System Requirements... 4 1.2 Required Operating Systems... 4 1.3 Supported Virtual Environment... 4 1.4 Supported

More information

Object Storage Service FAQ. Issue 14 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service FAQ. Issue 14 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 14 Date 2019-01-29 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

Healthcare Database Connector

Healthcare Database Connector Healthcare Database Connector Installation and Setup Guide Version: 3.1.1 Written by: Product Knowledge, R&D Date: May 2018 2008-2018 Hyland Software, Inc. and its affiliates. Table of Contents What is

More information

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment NetBrain Integrated Edition 7.1 Upgrade Instructions Two-Server Deployment Version 7.1a Last Updated 2018-09-04 Copyright 2004-2018 NetBrain Technologies, Inc. All rights reserved. Contents 1. Upgrading

More information

Image Management Service. User Guide. Issue 03. Date

Image Management Service. User Guide. Issue 03. Date Issue 03 Date 2016-10-19 Contents Contents Change History... v 1 Overview... 6 1.1 Concept... 6 1.1.1 What Is Image Management Service?... 6 1.1.2 OSs for Public Images Supported by IMS... 7 1.1.3 Image

More information

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

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

More information

Amazon Web Services Hands On S3 January, 2012

Amazon Web Services Hands On S3 January, 2012 Amazon Web Services Hands On S3 January, 2012 Copyright 2011-2012, Amazon Web Services, All Rights Reserved Page 1-8 Table of Contents Overview... 3 Create S3 Bucket... 3 Upload Content and Set Permissions...

More information

Dell Repository Manager Business Client Version 2.0 User s Guide

Dell Repository Manager Business Client Version 2.0 User s Guide Dell Repository Manager Business Client Version 2.0 User s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION

More information

The following sections describe the various menu options.

The following sections describe the various menu options. The Tools menu of the Unified CCX Administration web interface provides access to system tools you can use to perform a variety of administrative tasks and contains the following menu options: Plug-ins

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

Enterprise Integration Module for SAP Solution Manager 7.2

Enterprise Integration Module for SAP Solution Manager 7.2 Enterprise Integration Module for SAP Solution Manager 7.2 Software Version: 12.53-12.55 User Guide Go to HELP CENTER ONLINE http://admhelp.microfocus.com/alm Document Release Date: May 2018 Software Release

More information

IBM Endpoint Manager Version 9.0. Software Distribution User's Guide

IBM Endpoint Manager Version 9.0. Software Distribution User's Guide IBM Endpoint Manager Version 9.0 Software Distribution User's Guide IBM Endpoint Manager Version 9.0 Software Distribution User's Guide Note Before using this information and the product it supports,

More information

Table of Contents. About this Guide..3. This workis licensed under a Creative Commons Attribution 2.5 License. Getting Help..4. Welcome to Pinnacle..

Table of Contents. About this Guide..3. This workis licensed under a Creative Commons Attribution 2.5 License. Getting Help..4. Welcome to Pinnacle.. Installation Guide Table of Contents About this Guide..3 This workis licensed under a Creative Commons Attribution 2.5 License. Getting Help..4 Welcome to Pinnacle..4 Introduction..4 Organizational Hierarchy..4

More information

ForeScout CounterACT. (AWS) Plugin. Configuration Guide. Version 1.3

ForeScout CounterACT. (AWS) Plugin. Configuration Guide. Version 1.3 ForeScout CounterACT Hybrid Cloud Module: Amazon Web Services (AWS) Plugin Version 1.3 Table of Contents Amazon Web Services Plugin Overview... 4 Use Cases... 5 Providing Consolidated Visibility... 5 Dynamic

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

Side Load Feature Nasuni Corporation Boston, MA

Side Load Feature Nasuni Corporation Boston, MA Feature Nasuni Corporation Boston, MA Overview When Nasuni first supported the Disaster Recovery (DR) process, it was intended to be used to recover from true disasters such as hardware failure or buildings

More information

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1 Using the VMware vcenter Orchestrator Client vrealize Orchestrator 5.5.1 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

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

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

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

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

More information

Dell Repository Manager Business Client Version 2.1 User s Guide

Dell Repository Manager Business Client Version 2.1 User s Guide Dell Repository Manager Business Client Version 2.1 User s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION

More information

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

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

More information

Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide

Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide Published: 2018-Oct-09 Contents 1 Microsoft SharePoint 2013, 2016 and Online Connector 4 1.1 Products 4 1.2 Supported

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

ACS 5.x: LDAP Server Configuration Example

ACS 5.x: LDAP Server Configuration Example ACS 5.x: LDAP Server Configuration Example Document ID: 113473 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information Directory Service Authentication Using

More information

Using the VMware vrealize Orchestrator Client

Using the VMware vrealize Orchestrator Client Using the VMware vrealize Orchestrator Client vrealize Orchestrator 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

Inventory Reports. Detailed Device Report CHAPTER

Inventory Reports. Detailed Device Report CHAPTER CHAPTER 2 include the following device reports. Detailed Device Report Device Attributes Reports Generating a 24-Hour Inventory Change Report Hardware Reports Management Status Reports Software Reports

More information

SAML-Based SSO Configuration

SAML-Based SSO Configuration Prerequisites, page 1 SAML SSO Configuration Task Flow, page 5 Reconfigure OpenAM SSO to SAML SSO Following an Upgrade, page 9 SAML SSO Deployment Interactions and Restrictions, page 9 Prerequisites NTP

More information

Amazon Glacier. Developer Guide API Version

Amazon Glacier. Developer Guide API Version Amazon Glacier Developer Guide Amazon Glacier: Developer Guide Copyright 2018 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in

More information

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

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

More information

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

S-Drive Installation Guide v1.28

S-Drive Installation Guide v1.28 S-Drive Installation Guide v1.28 Important Note This installation guide contains basic information about S-Drive installation. Refer to the S-Drive Advanced Configuration Guide for advanced installation/configuration

More information

Mirroring - Configuration and Operation

Mirroring - Configuration and Operation Mirroring - Configuration and Operation Product version: 4.60 Document version: 1.0 Document creation date: 31-03-2006 Purpose This document contains a description of content mirroring and explains how

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

vcenter Support Assistant User's Guide

vcenter Support Assistant User's Guide vcenter Support Assistant 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

IMPLEMENTING SINGLE SIGN-ON (SSO) TO KERBEROS CONSTRAINED DELEGATION AND HEADER-BASED APPS. VMware Identity Manager.

IMPLEMENTING SINGLE SIGN-ON (SSO) TO KERBEROS CONSTRAINED DELEGATION AND HEADER-BASED APPS. VMware Identity Manager. IMPLEMENTING SINGLE SIGN-ON (SSO) TO KERBEROS CONSTRAINED DELEGATION AND HEADER-BASED APPS VMware Identity Manager February 2017 V1 1 2 Table of Contents Overview... 5 Benefits of BIG-IP APM and Identity

More information

INTEGRATION TO MICROSOFT EXCHANGE Installation Guide

INTEGRATION TO MICROSOFT EXCHANGE Installation Guide INTEGRATION TO MICROSOFT EXCHANGE Installation Guide V44.1 Last Updated: March 5, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER

More information

Synchronization Agent Configuration Guide

Synchronization Agent Configuration Guide SafeNet Authentication Service Synchronization Agent Configuration Guide 1 Document Information Document Part Number 007-012848-001, Rev. E Release Date July 2015 Applicability This version of the SAS

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

Coveo Platform 7.0. Atlassian Confluence V2 Connector Guide

Coveo Platform 7.0. Atlassian Confluence V2 Connector Guide Coveo Platform 7.0 Atlassian Confluence V2 Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to

More information

EMC SourceOne for Microsoft SharePoint Version 6.7

EMC SourceOne for Microsoft SharePoint Version 6.7 EMC SourceOne for Microsoft SharePoint Version 6.7 Administration Guide P/N 300-012-746 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2011

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

User Manual. Admin Report Kit for IIS 7 (ARKIIS)

User Manual. Admin Report Kit for IIS 7 (ARKIIS) User Manual Admin Report Kit for IIS 7 (ARKIIS) Table of Contents 1 Admin Report Kit for IIS 7... 1 1.1 About ARKIIS... 1 1.2 Who can Use ARKIIS?... 1 1.3 System requirements... 2 1.4 Technical Support...

More information