Ranger 0.5 Audit Configuration

Size: px
Start display at page:

Download "Ranger 0.5 Audit Configuration"

Transcription

1 Ranger 0.5 Audit Configuration Introduction Scope of this document Configuration properties naming convention Audit to Solr Audit to Db Audit to HDFS Audit to Log4j Example Configure a log4j appender for audit logs in component's log4j configuration file (hive-log4j.properties for Hive): Configure Ranger plugin to write audit logs to log4j (ranger-hive-audit.xml for Hive): Ambari Examples HiveServer2 Configuration Audit Queues Asynchronous logging to in-memory buffer queue Summarization Batching and bulk write of of audit messages Configuration related to File spooling Suppressing the Spooling of Audit messages Common configuration Properties Using Custom Audit Providers and Queue Providers Passing Custom config properties to standard Audit Providers Backward compatibility Introduction Audit framework has undergone a major enhancements from Apache Ranger 0.4 to 0.5. Some of the major changes added in 0.5 were. Audit to Solr: This is now preferred and recommended audit store. Ranger admin now can show audits stored in Solr. While audit to DB continues to be supported its use has been deprecated. In future releases its support may be withdrawn. Audit aggregation: Audit messages logged within a configurable time can be aggregated and logged as a single audit event along with the count. This can be particularly useful for plugins with a large number of audit events, e.g. kafka, hbase, solr, etc.. Scope of this document As a result of these changes the audit configuration is 0.5 differs from 0.4. This document provides those configuration details. For historical reasons these are also known as v3 style configuration. The name v3 is a nod to the prior configurations which were named v2 style configurations. Configuration properties naming convention Audit configurations properties following the following naming convention: xasecure.audit.destination.<sink-type>.<cfg-nameelement1>.<cfg-name-element2>... Where: sink-type denotes the type of audit sink, e.g. hdfs, solr, db, etc. cfg-name-element1, cfg-name-element2, etc. denote the parts of the configuration item for that specific sink-type, e.g. for sinktype of db a couple of audit configuration properties are: xasecure.audit.destination.db.jdbc.driver and xasecure. audit.destination.db.jdbc.url, etc. For a concrete example, please refer to the details of one of the audit sinks below. Audit to Solr SolrCloud is the preferred audit store. Audit messages stored in Solr can be viewed via Ranger Admin web app. Solr can be configured to purge audits older than, say, a month or so, with HDFS sink used for long term storage. All properties for solr listed below start with the following prefix: xasecure.audit.destination.solr.. For example, full name of the first property below would be: xasecure.audit.destination.solr.urls To enable audit to solr set the property xasecure.audit.destination.solr to true. Following are the configuration details to configure Ranger audit to Solr.

2 Property name zookeepers Details This denotes a typical zookeeper connect string for that solr instance. For example: zkhostacompany.com:2181, zkhostacompany.com:218 Please note that you can specify multiple host/port for your zookeeper cluster that would used to make solr connection. If not using zookeeper but direct url instead then leave it empty or set it to NONE. Either urls or zookeepers must be specified. If using zookeepers then collection can be used to configure the solr collection used to store ranger audits. If zookeepers is specified then urls is ignored. collection If not using zookeepers but direct url instead then leave it empty or set it to NONE. If unspecified it defaults to rang ranger_audits. urls Example value: /ranger_audits, com:6083/solr/ranger_audits Note that you can specify multiple host urls separated by comma. Either urls or zookeepers must be specified. If not using direct url specification and using zookeeper configuration instead, then leave this property empty or set it to NONE. If zookeepers is specified then urls is ignored. User of this property to configure audit to solr is not recommended in production. Audit to Db Solr is the preferred and recommended audit store. Use of database to store Ranger Audits is deprecated. Users are strongly encouraged to move to Solr to store their audit messages. The new DB Audit Provider exits only to ease the adoption of Apache Ranger 0.4 users of audit to Ranger 0.5 audit framework. DB Audit Provider might be removed in future releases. All properties for db listed below start with the following prefix: xasecure.audit.destination.db.. For example, full name of the first property below would be: xasecure.audit.destination.db.jdbc.driver. To enable audit to solr set the property xasecure.audit.destination.db to true. Following are the configuration details to configure Ranger audit to db. Property name jdbc.driver Details Example value for MySQL database would be: com. mysql.jdbc.driver. Change the value to suit the target database type. The specified driver should be available in the classpath of the host service.

3 jdbc.url Format of the JDBC URL is dictated by the jdbc driver implementation. For example, for the standard MySQL driver this value could be set to jdbc: mysql://dbhost acompany.com/ranger_audit. Refer the documentation of your jdbc driver for details. This would be passed as-is by the persistence framework to the driver class instance. user password password.alias For example, database user for database where ranger audit data is to be stored: rangerlogger Password to be used to connect to the target database. This property is ignored if a password can be found in the credentials file. 4. The alias under which the password is stored in the credentials file. If unspecified this property defaults to auditdbcred. Please refer to the section below about details for specifying the location of credential file. If credentials file contains the password then password property is ignored. Audit to HDFS HDFS is the preferred and recommended long term store for Ranger audit messages along with Solr for keeping short term audit messages that might need to be searched. Audits in Solr would be used to view audits logs using Ranger Admin UI where as audits kept in HDFS can be for compliance or other off-line uses like thread detection, etc.. Solr can be configured to purge audits older than, say, a month or so. All properties for hdfs listed below start with the following prefix: xasecure.audit.destination.hdfs.. For example, full name of the first property below would be: xasecure.audit.destination.hdfs.dir. To enable audit to hdfs set the property xasecure.audit.destination.hdfs to true. Following are the configuration details to configure Ranger audit to hdfs. Property name dir Details This is the HDFS Directory where audit logs should be stored. For example, it can be set to: hdfs://nnhost company.com:8020/ranger/audit. It is an error if this property isn t specified. subdir The subdirectory under dir where audits for this plugin should be kept. If unspecified its value defaults to: %app-type%/%time: yyyymmdd%. %app-type% and %time:yyyymmdd% are substitution variables available at the time of directory creation. 4. Please refer to this blog post for a complete list of substitution variables that can be used to specify the filen ame.format. 5. The default value is fairly good as it keeps the audits separated by service-type and date.

4 filename.format If unspecified its value defaults to: %app-type% _ranger_audit_%hostname%.log. %app-type% and %hostname% are substitution variables available at the time of file creation. Please refer to this blog post for a complete list of substitution variables that can be used to specify. the filename.format. This is the name of the audit file created, if any. If a file with the specified name already exists then the file s base name is appended with suffixes like 1, 2, etc. to ensure uniqueness across multiple simultaneous plugins trying to write to HDFS, e.g. for hbase. file.rollover.sec Age of the audit log file in seconds after which it would get rolled over to a new file. Default is set to 86400, i.e. one day (24 * 60 * 60 = seconds). Audit to Log4j To enable Ranger to send audit logs to a log4j appender, set property xasecure.audit.destination.log4j that property logger is specified as mentioned below. to true. Also make sure Property name logger Details The name of the logger where the audit logs should be sent to, as specified in the component's log4j configuration file. Ranger writes audit logs at INFO level. Please ensure that the log4j configuration has INFO level enabled for the logger specified above. Example Below are the configuration details to enable Ranger Hive plugin to write audit logs to log4j. Configure a log4j appender for audit logs in component's log4j configuration file (hive-log4j. properties for Hive): log4j.appender.ranger_audit=org.apache.log4j.dailyrollingfileappender log4j.appender.ranger_audit.file=${hive.log.dir}/ranger-hive-audit.log log4j.appender.ranger_audit.layout=org.apache.log4j.patternlayout log4j.appender.ranger_audit.layout.conversionpattern=%m%n log4j.logger.ranger.audit=info,ranger_audit Configure Ranger plugin to write audit logs to log4j ( ranger-hive-audit.xml for Hive): xasecure.audit.destination.log4j=true xasecure.audit.destination.log4j.logger=ranger.audit Ambari Examples If you are using Ambari, then you need to update the properties in the corresponding service config sections and restart the services using Ambari. If you modify the service log4j properties manually (outside Ambari), then when Ambari restarts, it will overwrite it. So, you should always update the properties from Ambari config sections HiveServer2 Configuration

5 Append this within the section " Advanced hive-log4j" Advanced hive-log4j log4j.appender.ranger_audit=org.apache.log4j.dailyrollingfileappender log4j.appender.ranger_audit.file=${hive.log.dir}/ranger-hive-audit.log log4j.appender.ranger_audit.layout=org.apache.log4j.patternlayout log4j.appender.ranger_audit.layout.conversionpattern=%m%n log4j.logger.ranger.audit=info,ranger_audit Add the following properties in " Custom ranger-hive-audit" section. xasecure.audit.destination.log4j=true xasecure.audit.destination.log4j.logger=ranger.audit Audit Queues There is a system of queues that handle audit messages before it gets written to final destination. These queues provides various feature. Following diagram gives an overview and subsequent sections provide details of each one of them.

6 Asynchronous logging to in-memory buffer queue Audit providers logs audit messages to sinks asynchronously so that host service s operations are not prevented or slowed down by a slow or unavailable audit sink. Further, in case of an unavailable or slow audit sink it buffers the audit messages in memory to minimize local disk access. In case of extended outage of an audit sink it spools the unwritten audit messages to disk files so they can be sent to audit sink as and when it becomes available. Various aspected of those queue providers can be configured via following settings. All properties below start with the following prefix: xasecur e.audit.destination.async.. For example, full name of the first property below would be: xasecure.audit.destination.async. queue.size. Configuration name Notes

7 queue.size This controls the size of in-memory buffer queue. By default the queue is sized to , i.e. it store 1M (1024 * 1024) messages. If this queue is full then audit messages would not be accepted and host service is returned false to indicate this condition. Thus it is important to size it adequately. Setting file spooling and audit summarization can prevent loss of audit messages due to unavailable or slow destination. Summarization In high volume systems, like kafka a very large number of audit messages can be generated in a short amount of time. For compliance and for other practical reasons, like threat detection, it may not be desirable to throttle back the amount or granularity of auditing. Ranger 0.5 adds the ability to summarize audit messages in such situations while preserving the distinguishing traits of each audit message. To ensure that no unique/distinguishing information is lost, during summarization, audit messages are aggregated if and only if they differ only in their time stamp. If anything else about an audit is different then it is preserved as a separate audit message. Further in interest of capturing as much information as possible the time interval on the aggregate audit message denotes the max and min time of actual audit events that were a part for that summary event. Following are properties control the behavior of audit summarization. Configuration name xasecure.audit.provider.summary.enabled Notes To enable summarization set this property to true. This would cause audit messages to be summarized before they are sent to various sinks. By default it is set to false i.e. audit summarization is disabled. xasecure.audit.provider.queue.size If unspecified this value defaults to , i.e. the queue is sized to store 1M (1024 * 1024) messages. Note the difference in property name that controls the size of summary queue. xasecure.audit.provider.summary.interval.ms The max time interval at which messages would be summarized. If unspecified it defaults to 5000, i.e. 5 seconds. Summarization Batch size Note that regardless of this time interval while summarizing at most 100k messages at a time are considered for aggregation. Thus, if more than 100k messages are logged during this interval then similar messages could show up as multiple summarized audit messages even though they are logged within the configured time interval. Currently, this value of 100k is not user configurable. It is mentioned here for better understanding of Summarization logic. Batching and bulk write of of audit messages

8 It can be faster to write several messages to solr in a batch rather than write them one at a time. Similarly when writing audit messages to a database it is much faster to batch write of several messages into a single transaction. Ranger Audit framework provides this via the use of buffer queues. Following example assumes that: You are configuring queue provider for solr. You have using standard queue provider, i.e. batch. This each property configuration name below should be prefixed by: xasecure.audit.destination.solr.batch. Change the values of au dit sink type and queue name to suite your configuration. Configuration name batch.size batch.interval.ms Notes By default up to 1000 messages are given to these Audit Destination providers at a time to write. This value can be used to tune that count. If unspecified, this property defaults to: 3000, i.e. 3 seconds. This controls the max amount of time for which messages are buffered before they send off to final destination even if the number of messages is less than the configured batch size. Thus, the actual batch size is controlled by both batch size and batch interval. Configuration related to File spooling If audit framework detects that an audit destination is down then it buffers the audit messages in memory. Once memory buffer fills up then it can be configured to spool the unsent messages to disk files to prevent or minimize the loss of audit messages. Following configuration settings help one to control the behavior around disk spooling of audit messages: Following example assumes that: You are configuring queue provider for solr. You have using standard queue provider, i.e. batch. Accordingly each property configuration name is prefixed by: xasecure.audit.destination.solr.batch.filespool. Change the values of audit sink type and queue name to suite your configuration. Configuration name Default value Notes enabled false Controls if audit messages would be spooled to local disk files if in-memory buffer queue gets filled up. dir N/A Local disk directory where spool files would be kept. This value must be specified.

9 filename.format spool_%app-type%_%time:yyyymmdd- HHmm.ss%.log %app-type% and %time:yyyymmdd- HHmm.ss% are substitution variables available at the time of spool file creation. Please refer to this blog post for a complete list of substitution variables that can be used to specify. the filename.format. This is the name of the spool file created, if any. archive.dir archive subdirectory of the spool file dir. For example, if spool file for solr sink is configured to be /var/log/hadoop/hdfs/audit /solr/spool then by default the spool files would get archived to /var/log/hadoop/hdfs /audit/solr/spool/archive directory. archive.max.files 100 Max number of files to archive. If number of files in the archive directory exceed this number then oldest file(s) would get deleted. file.rollover.sec Age of the spool file in seconds after which it would get rolled over to a new file. Default is set to a day (24 * 60 * 60 = seconds). destination.retry.ms How often should spooler try to reconnect to the destination that was down the last time in milliseconds. The default is 30s (30 * 1000 = 30000) drain.threshold.percent 80 Don t start spooling to disk unless inmemory queue is this much percent full. As long as audit destination is able to keep up and in-memory queue is adequately sized, a high enough value would ensures that messages are never flushed to local disk. drain.full.wait.ms Once a destination comes back up amount of time to let new audit messages get buffered in memory before spooling them. By default this is set to 5 minutes. If spool is given enough time to send on-disk messages to the final destination and inmemory queue is properly sized then disk spooling of new messages can be avoided and system can revert back to in-memory buffering with no disk access. Suppressing the Spooling of Audit messages If you wish to suppress the automatic spooling of audit messages then set the following property settings. Please note that doing so has consequences since one can lose audit messages. Configuration name xasecure.audit.destination.<sink-type>.queue Notes To suppress spooling to disk file for a particular sink type set its queue name to NONE. For example, if you do not wish to spool to local disk audit messages written to HDFS then set the property xasecure.audit.destination.hdfs.queue to NONE. Note that, Suppressing spooling increases the changes that audit messages would be silently dropped if the destination is down or slow.

10 Common configuration Properties Below are a few properties common to audit framework as a whole and/or they apply to all audit providers. Configuration name Default value Notes xasecure.audit.log.failure.report.min.interval. ms In event of a failure to send audit events to an audit sink, say, due to a connectivity issue, this is the interval at which WARN messages would be logged to log4j. xasecure.audit.credential.provider.file N/A If a password used to connect to an audit provider is encrypted then this property allows one to indicate the location of credentials file. One file would contain credentials for all of the providers. Currently only DB Audit Provider needs and uses it, if required. Using Custom Audit Providers and Queue Providers Audit frameworks allows a user to plugin their custom implementations of not only the Audit Destination Providers (e.g. custom Solr or HDFS Provider) but also provide custom implementations of Queue providers used by the Framework for buffering audit messages on their way to the final Audit sink. Standard Audit providers and Queue Providers are quite Robust and function rick. You can ignore this section if you don t have a need to use their custom implementations. Configuration name xasecure.audit.destination.<sink-type> xasecure.audit.destination.<sink-type>.classname xasecure.audit.destination.<sink-type>.<props> Notes If you wanted to use a new audit sink, say, JMS to store audit messages then you could define a new property to signal that by setting xasecure.audit.destination.jms to true. Since there isn t a standard Audit Provider for JMS one needs to let the framework know about the class which implements it. Set the property xasecure.audit.destination.jms.classname to the fully qualified class name of the implementation, e.g. com.company. JmsAuditDestination. During Initialization the Custom Audit provider would have access to all properties from ranger audit configuration. This can used to dynamically configure your custom audit provider. It is recommended that such property be prefixed to indicate the provider type. For example, if you custom JMS provider needs property prop1 then and prop2 then name them in ranger config file as xasecure. audit.destination.jms.prop1 and xasecure.audit.destination.jms. prop2 respectively. xasecure.audit.destination.<sink-type>.queue Let s say you If you also also want to use a custom Queue Provider then use this property to identify that Queue provider type. To use the default queue provider either leave this property unspecified or set it to batch.

11 This property is provides the full name of the class which implements the custom Queue provider. For example, to use a Queue provider that uses a ring buffer with your JMS Audit Provider: set xasecure.audit.destination.jms.queue to ringbuffer and set xasecure.audit.destination.jms.queue.ringbuffer.classname to the full name of the Audit provider implementation class, e.g. com. company.ringbufferqueueprovider. xasecure.audit.destination.<sink-type>.<queuename>.classname xasecure.audit.destination.<sink-type>.<queuename>.prop1 During Initialization the Custom Queue provider would have access to all properties from ranger audit configuration. This can used to dynamically configure your custom queue provider. It is recommended that such property be prefixed to indicate the queue provider type. For example, if you custom JMS provider needs property prop1 then and prop2 then name them in ranger config file as xasecure.audit.destination.jms.queue.ringbuffer.prop1 and xasecure.audit.destination.jms.queue.ringbuffer. prop2 respectively. Passing Custom config properties to standard Audit Providers For any audit sink framework would also load any custom property named as follows: xasecure.audit.destination.<sink-type>.config. <customelem1>. <custom.elem2>... Where: sink-type denotes the type of audit sink, e.g. hdfs, solr, db, etc. config: is the configuration name element which signals to the framework that following properties should be made available to the audit provider as a custom property for its use. cfg-name-element1, cfg-name-element2, etc. denote the parts of the configuration item for that specific sink-type, e.g. for sinktype of db a couple of audit configuration properties are: xasecure.audit.destination.db.jdbc.driver and xasecure. audit.destination.db.jdbc.url, etc. Use of standard HDFS Audit provider to Audit to Azure Blob Storage is an example of how this provision for custom properties is used by standard audit providers to extend their functionality merely via configuration. Backward compatibility A brief note about backward compatibility. Old v2 style configuration(s) and are still supported, of course, and will work as is. Old configurations trigger the use of older implementations of Audit Providers. Please refer to this Blog posting for a refresher on those details. In addition following should be noted about continued use of v2 style configurations. Future enhancements to audit framework would be made only to the v3 (new Ranger 0.5 Audit) Providers. Hence, users are encouraged to move to new v3 style configurations. Further, it is not possible to mix v2 and v3 style configurations. Presence of any v3 style configuration would suppress any v2 style Audit Providers.

Managing Configurations

Managing Configurations CHAPTER 3 The Configurations page is your starting point for managing device configurations for network elements managed by Cisco Prime Network by using the CM tools. The following table lists the main

More information

Design Proposal for Hive Metastore Plugin

Design Proposal for Hive Metastore Plugin Design Proposal for Hive Metastore Plugin 1. Use Cases and Motivations 1.1 Hive Privilege Changes as Result of SQL Object Changes SQL DROP TABLE/DATABASE command would like to have all the privileges directly

More information

SmartSense Configuration Guidelines

SmartSense Configuration Guidelines 1 SmartSense Configuration Guidelines Date of Publish: 2018-07-12 http://docs.hortonworks.com Contents SmartSense configuration guidelines...3 HST server...3 HST agent... 9 SmartSense gateway... 12 Activity

More information

Update authorizers.xml file under conf directory of nifi with new authorizer given below:

Update authorizers.xml file under conf directory of nifi with new authorizer given below: NiFi Plugin Prerequisites Installation Configure Ranger NiFi plugin Update authorizer Create service for Nifi in Ranger Admin UI Create policy cache directory Create spool directory Create NiFi Ranger

More information

Tuning Enterprise Information Catalog Performance

Tuning Enterprise Information Catalog Performance Tuning Enterprise Information Catalog Performance Copyright Informatica LLC 2015, 2018. Informatica and the Informatica logo are trademarks or registered trademarks of Informatica LLC in the United States

More information

$HIVE_HOME/bin/hive is a shell utility which can be used to run Hive queries in either interactive or batch mode.

$HIVE_HOME/bin/hive is a shell utility which can be used to run Hive queries in either interactive or batch mode. LanguageManual Cli Hive CLI Hive CLI Deprecation in favor of Beeline CLI Hive Command Line Options Examples The hiverc File Logging Tool to Clear Dangling Scratch Directories Hive Batch Mode Commands Hive

More information

Source, Sink, and Processor Configuration Values

Source, Sink, and Processor Configuration Values 3 Source, Sink, and Processor Configuration Values Date of Publish: 2018-12-18 https://docs.hortonworks.com/ Contents... 3 Source Configuration Values...3 Processor Configuration Values... 5 Sink Configuration

More information

MarkLogic Server. Flexible Replication Guide. MarkLogic 9 May, Copyright 2018 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Flexible Replication Guide. MarkLogic 9 May, Copyright 2018 MarkLogic Corporation. All rights reserved. Flexible Replication Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-1, May, 2017 Copyright 2018 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Flexible Replication Guide

More information

METADATA FRAMEWORK 6.3. Probe Configuration

METADATA FRAMEWORK 6.3. Probe Configuration METADATA FRAMEWORK 6.3 Probe Configuration Publishing Information Software version 6.3.160 Document version 34 Publication date May 22, 2017 Copyright 2005-2017 Varonis Systems Inc. All rights reserved.

More information

IceWarp to IceWarp Migration Guide

IceWarp to IceWarp Migration Guide IceWarp Unified Communications IceWarp to IceWarp Migration Guide Version 12.0 IceWarp to IceWarp Migration Guide 2 Contents IceWarp to IceWarp Migration Guide... 4 Used Terminology... 4 Brief Introduction...

More information

Metasys Database Manager Help Code No. LIT Software Release 9.0 Issued August 2017

Metasys Database Manager Help Code No. LIT Software Release 9.0 Issued August 2017 Code No. LIT-12011202 Software Release 9.0 Issued August 2017 Refer to the QuickLIT website for the most up-to-date version of this document. Document Introduction...2 Summary of Changes...2 Metasys Database

More information

HDP Security Audit 3. Managing Auditing. Date of Publish:

HDP Security Audit 3. Managing Auditing. Date of Publish: 3 Managing Auditing Date of Publish: 2018-07-15 http://docs.hortonworks.com Contents Audit Overview... 3 Manually Enabling Audit Settings in Ambari Clusters...3 Manually Update Ambari Solr Audit Settings...3

More information

Hortonworks Data Platform

Hortonworks Data Platform Apache Ambari Operations () docs.hortonworks.com : Apache Ambari Operations Copyright 2012-2018 Hortonworks, Inc. Some rights reserved. The, powered by Apache Hadoop, is a massively scalable and 100% open

More information

Logging. About Logging. This chapter describes how to log system messages and use them for troubleshooting.

Logging. About Logging. This chapter describes how to log system messages and use them for troubleshooting. This chapter describes how to log system messages and use them for troubleshooting. About, page 1 Guidelines for, page 7 Configure, page 8 Monitoring the Logs, page 26 History for, page 29 About System

More information

Change and Configuration Management Administration

Change and Configuration Management Administration CHAPTER 7 Change and Configuration Management Administration These topics provide administrative information on Change and Configuration Management: Configuring Global Settings for Configuration Management,

More information

Installing and configuring Apache Kafka

Installing and configuring Apache Kafka 3 Installing and configuring Date of Publish: 2018-08-13 http://docs.hortonworks.com Contents Installing Kafka...3 Prerequisites... 3 Installing Kafka Using Ambari... 3... 9 Preparing the Environment...9

More information

Hadoop. Introduction / Overview

Hadoop. Introduction / Overview Hadoop Introduction / Overview Preface We will use these PowerPoint slides to guide us through our topic. Expect 15 minute segments of lecture Expect 1-4 hour lab segments Expect minimal pretty pictures

More information

Error code. Description of the circumstances under which the problem occurred. Less than 200. Linux system call error.

Error code. Description of the circumstances under which the problem occurred. Less than 200. Linux system call error. Error code Less than 200 Error code Error type Description of the circumstances under which the problem occurred Linux system call error. Explanation of possible causes Countermeasures 1001 CM_NO_MEMORY

More information

Release Notes 1. DLM Release Notes. Date of Publish:

Release Notes 1. DLM Release Notes. Date of Publish: 1 DLM Release Notes Date of Publish: 2018-05-18 http://docs.hortonworks.com Contents...3 What s New in this Release...3 Behavioral Changes... 3 Known Issues...3 Fixed Issues...5 This document provides

More information

Working with Storm Topologies

Working with Storm Topologies 3 Working with Storm Topologies Date of Publish: 2018-08-13 http://docs.hortonworks.com Contents Packaging Storm Topologies... 3 Deploying and Managing Apache Storm Topologies...4 Configuring the Storm

More information

IBM Fluid Query for PureData Analytics. - Sanjit Chakraborty

IBM Fluid Query for PureData Analytics. - Sanjit Chakraborty IBM Fluid Query for PureData Analytics - Sanjit Chakraborty Introduction IBM Fluid Query is the capability that unifies data access across the Logical Data Warehouse. Users and analytic applications need

More information

Data Access 3. Starting Apache Hive. Date of Publish:

Data Access 3. Starting Apache Hive. Date of Publish: 3 Starting Apache Hive Date of Publish: 2018-07-12 http://docs.hortonworks.com Contents Start a Hive shell locally...3 Start Hive as an authorized user... 4 Run a Hive command... 4... 5 Start a Hive shell

More information

Blueprint support for Ranger

Blueprint support for Ranger Blueprint support for Ranger Starting from HDP2.3 Ranger can be deployed using Blueprints in two ways either using stack advisor or setting all the needed properties in the Blueprint. Deploy Ranger with

More information

With standard audit logging, configuration changes to the system get logged in separate log files for auditing.

With standard audit logging, configuration changes to the system get logged in separate log files for auditing. , page 1 With audit logging, configuration changes to the system get logged in separate log files for auditing. Audit Logging (Standard) When audit logging is enabled, but the detailed audit logging option

More information

Apache Ranger User Guide

Apache Ranger User Guide Apache Ranger 0.5 - User Guide USER GUIDE Version : 0.5.0 September 2015 About this document Getting started General Features Login to the system: Log out to the system: Service Manager (Access Manager)

More information

Configuring Apache Ranger Authentication with UNIX, LDAP, or AD

Configuring Apache Ranger Authentication with UNIX, LDAP, or AD 3 Configuring Apache Ranger Authentication with UNIX, LDAP, or AD Date of Publish: 2018-07-15 http://docs.hortonworks.com Contents...3 Configure Ranger Authentication for UNIX... 3 Configure Ranger Authentication

More information

docs.hortonworks.com

docs.hortonworks.com docs.hortonworks.com Hortonworks Data Platform : Security Administration Tools Guide Copyright 2012-2014 Hortonworks, Inc. Some rights reserved. The Hortonworks Data Platform, powered by Apache Hadoop,

More information

Memory may be insufficient. Memory may be insufficient.

Memory may be insufficient. Memory may be insufficient. Error code Less than 200 Error code Error type Description of the circumstances under which the problem occurred Linux system call error. Explanation of possible causes Countermeasures 1001 CM_NO_MEMORY

More information

With standard audit logging, configuration changes to the system get logged in separate log files for auditing.

With standard audit logging, configuration changes to the system get logged in separate log files for auditing. , on page 1 With audit logging, configuration changes to the system get logged in separate log files for auditing. Audit Logging (Standard) When audit logging is enabled, but the detailed audit logging

More information

Getting Started 1. Getting Started. Date of Publish:

Getting Started 1. Getting Started. Date of Publish: 1 Date of Publish: 2018-07-03 http://docs.hortonworks.com Contents... 3 Data Lifecycle Manager terminology... 3 Communication with HDP clusters...4 How pairing works in Data Lifecycle Manager... 5 How

More information

DEC 31, HareDB HBase Client Web Version ( X & Xs) USER MANUAL. HareDB Team

DEC 31, HareDB HBase Client Web Version ( X & Xs) USER MANUAL. HareDB Team DEC 31, 2016 HareDB HBase Client Web Version (1.120.02.X & 1.120.02.Xs) USER MANUAL HareDB Team Index New features:... 3 Environment requirements... 3 Download... 3 Overview... 5 Connect to a cluster...

More information

1. Overview... 2 Documentation... 2 Licensing... 2 File Archiving requirements... 2

1. Overview... 2 Documentation... 2 Licensing... 2 File Archiving requirements... 2 User Guide BackupAssist User Guides explain how to create and modify backup jobs, create backups and perform restores. These steps are explained in more detail in a guide s respective whitepaper. Whitepapers

More information

8-1. This chapter explains how to set and use Data Sampling.

8-1. This chapter explains how to set and use Data Sampling. 8-1 8. Data Sampling This chapter explains how to set and use Data Sampling. 8.1. Overview... 8-2 8.2. Data Sampling Management... 8-2 8.3. Creating a New Data Sampling... 8-2 8.4. Synchronizing cmt Viewer

More information

Hadoop On Demand: Configuration Guide

Hadoop On Demand: Configuration Guide Hadoop On Demand: Configuration Guide Table of contents 1 1. Introduction...2 2 2. Sections... 2 3 3. HOD Configuration Options...2 3.1 3.1 Common configuration options...2 3.2 3.2 hod options... 3 3.3

More information

Acronis Backup plugin for WHM and cpanel 1.0

Acronis Backup plugin for WHM and cpanel 1.0 Acronis Backup plugin for WHM and cpanel 1.0 ADMINISTRATOR'S GUIDE Table of contents 1 Introduction...3 2 System requirements...3 3 Obtaining the Acronis product...3 4 Installing the Acronis Backup plugin

More information

Utilities. Introduction. Working with SCE Platform Files. Working with Directories CHAPTER

Utilities. Introduction. Working with SCE Platform Files. Working with Directories CHAPTER CHAPTER 4 Revised: September 27, 2012, Introduction This chapter describes the following utilities: Working with SCE Platform Files, page 4-1 The User Log, page 4-5 Managing Syslog, page 4-8 Flow Capture,

More information

Hortonworks Data Platform

Hortonworks Data Platform Hortonworks Data Platform Apache Flume Component Guide (May 17, 2018) docs.hortonworks.com Hortonworks Data Platform: Apache Flume Component Guide Copyright 2012-2017 Hortonworks, Inc. Some rights reserved.

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

MarkLogic Server. Monitoring MarkLogic Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Monitoring MarkLogic Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. Monitoring MarkLogic Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-2, July, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Monitoring MarkLogic Guide

More information

Event Streams using Apache Kafka

Event Streams using Apache Kafka Event Streams using Apache Kafka And how it relates to IBM MQ Andrew Schofield Chief Architect, Event Streams STSM, IBM Messaging, Hursley Park Event-driven systems deliver more engaging customer experiences

More information

Hortonworks Data Platform

Hortonworks Data Platform Hortonworks Data Platform Apache Ambari Upgrade for IBM Power Systems (May 17, 2018) docs.hortonworks.com Hortonworks Data Platform: Apache Ambari Upgrade for IBM Power Systems Copyright 2012-2018 Hortonworks,

More information

Hortonworks and The Internet of Things

Hortonworks and The Internet of Things Hortonworks and The Internet of Things Dr. Bernhard Walter Solutions Engineer About Hortonworks Customer Momentum ~700 customers (as of November 4, 2015) 152 customers added in Q3 2015 Publicly traded

More information

Hortonworks Data Platform

Hortonworks Data Platform Hortonworks Data Platform Apache Ambari Upgrade (October 30, 2017) docs.hortonworks.com Hortonworks Data Platform: Apache Ambari Upgrade Copyright 2012-2017 Hortonworks, Inc. Some rights reserved. The

More information

Hortonworks Data Platform

Hortonworks Data Platform Hortonworks Data Platform Workflow Management (August 31, 2017) docs.hortonworks.com Hortonworks Data Platform: Workflow Management Copyright 2012-2017 Hortonworks, Inc. Some rights reserved. The Hortonworks

More information

Configuring System Message Logging

Configuring System Message Logging CHAPTER 1 This chapter describes how to configure system message logging on the Cisco 4700 Series Application Control Engine (ACE) appliance. Each ACE contains a number of log files that retain records

More information

Chat Setup and Management

Chat Setup and Management Chat Deployments, page 1 Chat Administration Settings, page 3 Chat Node Alias Management, page 9 Chat Room Management, page 14 Group Chat and Persistent Chat Interactions and Restrictions, page 18 Chat

More information

Apache ZooKeeper ACLs

Apache ZooKeeper ACLs 3 Apache ZooKeeper ACLs Date of Publish: 2018-07-15 http://docs.hortonworks.com Contents Apache ZooKeeper ACLs Best Practices...3 ZooKeeper ACLs Best Practices: Accumulo... 3 ZooKeeper ACLs Best Practices:

More information

User Guide. K V1 7/05 Rev A

User Guide. K V1 7/05 Rev A NAVIGATOR REPORTER User Guide K10321-1V1 7/05 Rev A Table of Contents Conventions Used in This Manual... iii SECTION 1: General Description... 1-1 About Navigator Reporter...1-1 About User Manager...1-1

More information

Configuring Apache Knox SSO

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

More information

AutoArchive. Release 1.4.1

AutoArchive. Release 1.4.1 AutoArchive Release 1.4.1 Sep 23, 2017 Contents 1 Contents 1 1.1 Program Description........................................... 1 1.2 Operations Explained.......................................... 5 1.3

More information

Administration GUIDE. OnePass Agent for Exchange Mailbox. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 177

Administration GUIDE. OnePass Agent for Exchange Mailbox. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 177 Administration GUIDE OnePass Agent for Exchange Mailbox Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 177 User Guide - One Pass Agent for Exchange Mailbox Table of Contents Overview Introduction

More information

ADOBE DRIVE 4.2 USER GUIDE

ADOBE DRIVE 4.2 USER GUIDE ADOBE DRIVE 4.2 USER GUIDE 2 2013 Adobe Systems Incorporated. All rights reserved. Adobe Drive 4.2 User Guide Adobe, the Adobe logo, Creative Suite, Illustrator, InCopy, InDesign, and Photoshop are either

More information

How to Run the Big Data Management Utility Update for 10.1

How to Run the Big Data Management Utility Update for 10.1 How to Run the Big Data Management Utility Update for 10.1 2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Security 3. NiFi Authentication. Date of Publish:

Security 3. NiFi Authentication. Date of Publish: 3 Date of Publish: 2018-08-13 http://docs.hortonworks.com Contents... 3 Enabling SSL with a NiFi Certificate Authority... 5 Enabling SSL with Existing Certificates... 5 (Optional) Setting Up Identity Mapping...6

More information

Installing SmartSense on HDP

Installing SmartSense on HDP 1 Installing SmartSense on HDP Date of Publish: 2018-07-12 http://docs.hortonworks.com Contents SmartSense installation... 3 SmartSense system requirements... 3 Operating system, JDK, and browser requirements...3

More information

Before the first run of a node, it is recommended to check the settings of the embedded database for better performances.

Before the first run of a node, it is recommended to check the settings of the embedded database for better performances. Node settings Before the first run of a node Database configuration Other settings SSL cipher suites and protocols configuration Modify the granularity of evolution of the Time Machine latest knowledge

More information

NTP Software VFM Administration Web Site For Microsoft Azure

NTP Software VFM Administration Web Site For Microsoft Azure NTP Software VFM Administration Web Site For Microsoft Azure User Manual Revision 1.1. - July 2015 This guide details the method for using NTP Software VFM Administration Web Site, from an administrator

More information

Windows

Windows 350 7 th Avenue Suite 1605 New York, NY 10001 http://avpreserve.com 917.475.9630 info@avpreserve.com Fixity User Guide Version 0.5 2015-03-04 Contact information AVPreserve http://www.avpreserve.com/ GitHub

More information

docalpha Monitoring Station

docalpha Monitoring Station ARTSYL DOCALPHA MONITORING STATION MANUAL 1. docalpha Architecture Overview... 3 1.1. Monitoring Station Overview... 4 2. What's New in docalpha Monitoring Station 4.5... 4 3. Working with Monitoring Station...

More information

Migrating Performance Data to NetApp OnCommand Unified Manager 7.2

Migrating Performance Data to NetApp OnCommand Unified Manager 7.2 Technical Report Migrating Performance Data to NetApp OnCommand Unified Manager 7.2 Dhiman Chakraborty, Yuvaraju B, Tom Onacki, NetApp March 2018 TR-4589 Version 1.2 Abstract NetApp OnCommand Unified Manager

More information

BEAWebLogic RFID. Edge Server. Using the Administration Console

BEAWebLogic RFID. Edge Server. Using the Administration Console BEAWebLogic RFID Edge Server Using the Administration Console Version 2.1 Revised: June 29, 2006 Contents 1. Introduction and Roadmap Document Scope and Audience.............................................

More information

Moodle Plugin Upgrade 2017 ( )

Moodle Plugin Upgrade 2017 ( ) Moodle Plugin Upgrade 2017 (2017061000) Overview Panopto has released a major upgrade as of Panopto Moodle Block ( 2017061000). This update improves performance, functionality, and addresses a number of

More information

PowerCenter Repository Maintenance

PowerCenter Repository Maintenance PowerCenter Repository Maintenance 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without

More information

AVG Business Edition Remote Administration

AVG Business Edition Remote Administration AVG Business Edition Remote Administration User Manual Document revision AVG.02 (1/7/2018) Copyright AVG Technologies CZ, s.r.o. All rights reserved. All other trademarks are the property of their respective

More information

vcenter Operations Manager for Horizon View Administration

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

More information

SAS Data Explorer 2.1: User s Guide

SAS Data Explorer 2.1: User s Guide SAS Data Explorer 2.1: User s Guide Working with SAS Data Explorer Understanding SAS Data Explorer SAS Data Explorer and the Choose Data Window SAS Data Explorer enables you to copy data to memory on SAS

More information

NTP Software VFM. Administration Web Site for NetAppS3. User Manual. Version 5.1

NTP Software VFM. Administration Web Site for NetAppS3. User Manual. Version 5.1 NTP Software VFM Administration Web Site for NetAppS3 User Manual Version 5.1 This guide details the method for using NTP Software VFM Administration Web Site, from an administrator s perspective. Upon

More information

Installing an HDF cluster

Installing an HDF cluster 3 Installing an HDF cluster Date of Publish: 2018-08-13 http://docs.hortonworks.com Contents Installing Ambari...3 Installing Databases...3 Installing MySQL... 3 Configuring SAM and Schema Registry Metadata

More information

Common Configuration Options

Common Configuration Options Common Configuration Options Unless otherwise noted, the common configuration options that this chapter describes are common to all Genesys server applications and applicable to any Framework server component.

More information

Best Practices. Deploying Optim Performance Manager in large scale environments. IBM Optim Performance Manager Extended Edition V4.1.0.

Best Practices. Deploying Optim Performance Manager in large scale environments. IBM Optim Performance Manager Extended Edition V4.1.0. IBM Optim Performance Manager Extended Edition V4.1.0.1 Best Practices Deploying Optim Performance Manager in large scale environments Ute Baumbach (bmb@de.ibm.com) Optim Performance Manager Development

More information

Broker Clusters. Cluster Models

Broker Clusters. Cluster Models 4 CHAPTER 4 Broker Clusters Cluster Models Message Queue supports the use of broker clusters: groups of brokers working together to provide message delivery services to clients. Clusters enable a Message

More information

Configuring System Message Logging

Configuring System Message Logging CHAPTER 31 This chapter describes how to configure system message logging on the Catalyst 3560 switch. Note For complete syntax and usage information for the commands used in this chapter, see the Cisco

More information

Zookeeper ensemble in the Target cluster. The Zookeeper ensemble is provided as a configuration parameter in the Source configuration.

Zookeeper ensemble in the Target cluster. The Zookeeper ensemble is provided as a configuration parameter in the Source configuration. Introduction The goal of the project is to replicate data to multiple Data Centers. The initial version of the solution will cover the active-passive scenario where data updates are replicated from a source

More information

Perform Backup and Restore

Perform Backup and Restore , page 1 You can schedule periodic backups using the Cisco Prime Collaboration user interface, or run backup commands manually by logging in to the system as an admin user (CLI user). However, you must

More information

SAP Edge Services, cloud edition Streaming Service - Administration Guide Version 1802

SAP Edge Services, cloud edition Streaming Service - Administration Guide Version 1802 SAP Edge Services, cloud edition Streaming Service - Administration Guide Version 1802 Table of Contents ABOUT THIS DOCUMENT... 3 Glossary... 3 CONSOLE SECTIONS AND WORKFLOWS... 5 Sensor Profiles & Rules...

More information

Cisco ParStream Cisco ParStream DSA Link Guide

Cisco ParStream Cisco ParStream DSA Link Guide Cisco ParStream Cisco ParStream DSA Link Guide 2017 Cisco and/or its affiliates. Document Information: Title: Cisco ParStream DSA Link Guide Version: 3.3.0 Date Published:

More information

Installing HDF Services on an Existing HDP Cluster

Installing HDF Services on an Existing HDP Cluster 3 Installing HDF Services on an Existing HDP Cluster Date of Publish: 2018-08-13 http://docs.hortonworks.com Contents Upgrade Ambari and HDP...3 Installing Databases...3 Installing MySQL... 3 Configuring

More information

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry.

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION VERSION 9 Setup Guide This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE Fusion Registry: 9.2.x Document

More information

Batches and Commands. Overview CHAPTER

Batches and Commands. Overview CHAPTER CHAPTER 4 This chapter provides an overview of batches and the commands contained in the batch. This chapter has the following sections: Overview, page 4-1 Batch Rules, page 4-2 Identifying a Batch, page

More information

MarkLogic Server. Monitoring MarkLogic Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Monitoring MarkLogic Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved. Monitoring MarkLogic Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Monitoring MarkLogic

More information

Database Administration

Database Administration Unified CCE, on page 1 Historical Data, on page 2 Database Statistics, on page 3 Tool, on page 3 Database Sizing Estimator Tool, on page 11 Administration & Data Server with Historical Data Server Setup,

More information

How to configure Sophos for all other clients

How to configure Sophos  for all other clients How to configure Sophos Email for all other clients 1. Add Your Domain & Verify Ownership 2. Add Mailboxes to Sophos Email 3. Restrict Delivery to Sophos IP Addresses 4. Modify MX records to point to Sophos

More information

Administration 1. DLM Administration. Date of Publish:

Administration 1. DLM Administration. Date of Publish: 1 DLM Administration Date of Publish: 2018-05-18 http://docs.hortonworks.com Contents Replication concepts... 3 HDFS cloud replication...3 Hive cloud replication... 3 Cloud replication guidelines and considerations...4

More information

PCGENESIS TECHNICAL SYSTEM OPERATIONS GUIDE

PCGENESIS TECHNICAL SYSTEM OPERATIONS GUIDE PCGENESIS TECHNICAL SYSTEM OPERATIONS GUIDE 1/7/2019 Section C: The VerraDyne Print Manager Topic 1: Configuring the VerraDyne Print Manager, V1.1 Revision History Date Version Description Author 1/7/2019

More information

User Guide. Version: Add-On Products Roms Hule Vejle Denmark Phone: Fax:

User Guide. Version: Add-On Products Roms Hule Vejle Denmark Phone: Fax: User Guide Version: 6.4.17.0 Add-On Products Roms Hule 8 7100 Vejle Denmark Phone: +45 7944 7000 Fax: +45 7944 7001 Mail: info@add-on.com Internet: www.add-on.com No parts of this publication may be reproduced

More information

DocAve 5 to DocAve 6 Upgrade

DocAve 5 to DocAve 6 Upgrade DocAve 5 to DocAve 6 Upgrade User Guide Service Pack 2, Cumulative Update 2 Revision H Issued June 2013 DocAve 6: Archiver 1 Table of Contents Submitting Documentation Feedback to AvePoint... 4 About the

More information

IPv6 Neighbor Discovery

IPv6 Neighbor Discovery The IPv6 neighbor discovery process uses Internet Control Message Protocol (ICMP) messages and solicited-node multicast addresses to determine the link-layer address of a neighbor on the same network (local

More information

Perform Backup and Restore

Perform Backup and Restore , page 1 You can schedule periodic backups using the Cisco Prime Collaboration Assurance user interface, or run backup commands manually by logging in to the system as an admin user (CLI user). However,

More information

HPE Security ArcSight Connectors

HPE Security ArcSight Connectors HPE Security ArcSight Connectors SmartConnector for Application Security AppDetective DB Configuration Guide October 17, 2017 SmartConnector for Application Security AppDetective DB October 17, 2017 Copyright

More information

Cross Data Center Replication in Apache Solr. Anvi Jain, Software Engineer II Amrit Sarkar, Search Engineer

Cross Data Center Replication in Apache Solr. Anvi Jain, Software Engineer II Amrit Sarkar, Search Engineer Cross Data Center Replication in Apache Solr Anvi Jain, Software Engineer II Amrit Sarkar, Search Engineer Who are we? Based in Bedford, MA. Offices all around the world Progress tools and platforms enable

More information

File Archiving Whitepaper

File Archiving Whitepaper Whitepaper Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 requirements... 2 2. product overview... 3 features... 3 Advantages of BackupAssist... 4 limitations... 4 3. Backup considerations...

More information

For Trace and Log Central to work, you must resolve DNS lookup for all nodes in the cluster on the client machine.

For Trace and Log Central to work, you must resolve DNS lookup for all nodes in the cluster on the client machine. Trace and Log Central, page 1 Log Viewers, page 42 Plugins, page 45 Trace and Log Central For Trace and Log Central to work, you must resolve DNS lookup for all nodes in the cluster on the client machine.

More information

Cisco ParStream Cisco ParStream DSA Link Guide

Cisco ParStream Cisco ParStream DSA Link Guide Cisco ParStream Cisco ParStream DSA Link Guide January 18, 2018 2018 Cisco and/or its affiliates. Document Information: Title: Cisco ParStream DSA Link Guide Version: 4.0.1 Date Published: January 18,

More information

Konstantin Shvachko, Hairong Kuang, Sanjay Radia, Robert Chansler Yahoo! Sunnyvale, California USA {Shv, Hairong, SRadia,

Konstantin Shvachko, Hairong Kuang, Sanjay Radia, Robert Chansler Yahoo! Sunnyvale, California USA {Shv, Hairong, SRadia, Konstantin Shvachko, Hairong Kuang, Sanjay Radia, Robert Chansler Yahoo! Sunnyvale, California USA {Shv, Hairong, SRadia, Chansler}@Yahoo-Inc.com Presenter: Alex Hu } Introduction } Architecture } File

More information

Installing and Configuring Xitron RIP Software and Ohio GT RIP Plug-In

Installing and Configuring Xitron RIP Software and Ohio GT RIP Plug-In TECHNICAL DOCUMENTATION Installing and Configuring Xitron RIP Software and Ohio GT RIP Plug-In For Xitron Navigator RIP version 10.1r2 and Windows 10 Introduction This document gives instructions for installing

More information

RecordTS Enterprise v4.0 for Terminal Services. Installation Guide

RecordTS Enterprise v4.0 for Terminal Services. Installation Guide RecordTS Enterprise v4.0 for Terminal Services Installation Guide http://www.tsfactory.com Copyright Notice and Trademark 2018 TSFactory LLC. All Rights Reserved. RecordTS and the TSFactory logo are registered

More information

Configuring Caching Services

Configuring Caching Services CHAPTER 8 This chapter describes how to configure conventional caching services (HTTP, FTP [FTP-over-HTTP caching and native FTP caching], HTTPS, and DNS caching) for centrally managed Content Engines.

More information

Ciphermail Webmail Messenger Administration Guide

Ciphermail Webmail Messenger Administration Guide CIPHERMAIL EMAIL ENCRYPTION Ciphermail Webmail Messenger Administration Guide October 27, 2017, Rev: 8630 Copyright 2013-2017, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 4 2 Admin login

More information

WebsitePanel User Guide

WebsitePanel User Guide WebsitePanel User Guide User role in WebsitePanel is the last security level in roles hierarchy. Users are created by reseller and they are consumers of hosting services. Users are able to create and manage

More information

API Gateway Version September Key Property Store User Guide

API Gateway Version September Key Property Store User Guide API Gateway Version 7.5.2 15 September 2017 Key Property Store User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.2 No

More information