NCache Command Line Tools Guide
|
|
|
- Lydia Anderson
- 9 years ago
- Views:
Transcription
1 Command Line Tools Guide July 28, 2015
2 Table of Contents Create Cache (createcache.exe) Add Query Index (addqueryindex.exe) Add Compact Type (addcompacttype.exe) Add Data Share (adddatashare.exe) Add Backing Source (addbackingsource.exe) Add Startup Loader (addstartuploader.exe) Deploy Provider (deployprovider.exe) Configure Cache Security (configurecachesecurity.exe) Configure Node Security (configurenodesecurity.exe) Add Node (addnode.exe) Add Client Node (addclientnode.exe) Create Client Cache (createclientcache.exe) Get Cache Configuration (getcacheconfiguration.exe) List Caches (listcaches.exe) Start Cache (startcache.exe) Add Test Data (addtestdata.exe) Get Cache Count (getcachecount.exe) Dump Cache Keys (dumpcachekeys.exe) Dump Cache Data (dumpcachedata.exe) Clear Cache (clearcache.exe) Stress Test Tool (stresstesttool.exe) Stop Cache (stopcache.exe) Remove Startup Loader (removestartuploader.exe) Remove Backing Source (removebackingsource.exe) Remove Data Share (removedatashare.exe) Remove Compact Type (removecompacttype.exe) Remove Query Index (removequeryindex.exe) Remove Client Cache (removeclientcache.exe) Copyright 2015 Alachisoft I NCache Command Line Tools Guide
3 1.29 Remove Client Node (removeclientnode.exe) Remove Node (removenode.exe) Verify License (verifylicense.exe) Remove Cache (removecache.exe) Start Bridge (startbridge.exe) Stop Bridge (stopbridge.exe) Server Logger (serverlogger.exe) Monitor Sever (monitorserver.exe) Copyright 2015 Alachisoft II NCache Command Line Tools Guide
4 1 NCache provides multiple command line tools; using these you can automate different tasks, like cache creation, deletion, addition of client nodes and server nodes, configuring caches for different features e.g. Object Query Indexing, Compact Serialization, ReadThru and WriteThru etc. 1.1 Create Cache (createcache.exe) Create cache tool (createcache) enables the user to create a new cache on one or more server nodes using this command line utility. createcache [ cache-name ][ /s /S /T ] [ options ] [ cache-name ] [ /s server /S cache-size ] [ cache-name ] [ /s server /S cache-size /T path ] [ cache-name ] [ /s server /S cache-size /t topology /C cluster-port ] cache-name /s /server Specifies the name of the cache for which cache will be registered. Specifies the NCache server names/ips where Cache should be configured, separated by commas e.g , For Simple Case: Cache will be created by input and default configuration settings. /S cache-size Specifies the size (MB) of the cache to be created. For Advance Case: In this case all configurations related settings will be taken from specified configuration file. /I /inproc Specify the isolation level for local cache. /T path Specifies the path of the cache source config which will be configured. For topology other than local you have to give topology and cluster port. Specifies the topology in case of clustered cache. Possible values are /t /topology I. local II. mirrored III. replicated IV. partitioned V. partitioned-replica
5 NOTE: Mirrored and partitioned-replica are only available in Enterprise edition. /C /cluster-port Specifies the port of the server, at which server listens. For Simple case: Specifies the eviction policy for cache items. Cached items will be cleaned from the cache according to the specified policy if the cache reaches its limit. Possible values are /y /evict-policy i. Priority ii. LFU iii. LRU (default) NOTE: LFU and LRU are only available in Enterprise edition. /o /ratio Specifies the eviction ratio (Percentage) for cache items. Cached items will be cleaned from the cache according to the specified ratio if the cache reaches its limit. Default value is 5 (percent) /i /interval Specifies the time interval (seconds) after which cache cleanup is called. Default clean-interval is 15 (seconds) Only in case of 'partition-replicas-server' being the topology, this specifies the replication strategy /R /replicationstrategy i. Async (default) ii. Sync NOTE: This option is only available in Enterprise edition. Specifies the default priority in case of priority based eviction policy is selected. Possible values are /d /def-priority For Both cases: i. high ii. above-normal iii. normal (default) iv. below-normal v. low /p /port Specifies the port on which NCache server is listening. /G /nologo Suppresses display of the logo banner Copyright 2015 Alachisoft 2 NCache Command Line Tools Guide
6 /U /user-id Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /? Displays a detailed help screen 1. Creates a local cache with minimum arguments of cache name, server and size. 2. Creates a clustered cache with cache-name, size, server, topology and cluster-port. 3. Creates cache with specified eviction settings. The following command creates new cache named democache on server having size 1024 MB and topology local for simple case. createcache democache /s /S 1024 The following command creates a local cache named democache of size 1024 MB on server , with the configuration that exists on the specified path. createcache democache /s /S 1024 /T C:\Config.xml The following command creates new cache named democache on server having size 1024 MB and topology replicated and occupying the port 8701 for simple case. createcache democache /s /S 1024 /t replicated /C 8701 The following command creates new cache named democache on server having size 1024 MB, topology partitioned, eviction policy priority, default priority high, eviction ratio 10%, clean interval 20, occupying cluster port 8701 while specifying security credentials for simple case. createcache democache /s /S 1024 /t partitioned /y priority /d high /o 10 /i 20 /C 8701 /U david_watson /P ******** Copyright 2015 Alachisoft 3 NCache Command Line Tools Guide
7 Following is a sample cache configuration that can be used to create a cache of same configuration. To create your own caches with this configuration just copy this configuration in a file and save it with.xml or.ncconf file extension. You can also get the configuration of sample caches shipped with NCache setup using getcacheconfiguration tool which gives you configuration of the specified cache. <cache-config config-id="0"> <cache-settings cache-name="myreplicatedcache" alias="" inproc="false" last-modified="" auto-start="false"> <logging enable-logs="true" trace-errors="true" trace-notices="false" trace-warnings="false" trace-debug="false" log-path=""/> <performance-counters enable-counters="true" snmp-port="0"/> <compression enable-compression="false" threshold="100kb"/> <cache-notifications item-remove="false" item-add="false" item-update="false"/> <cleanup interval="15sec"/> <storage type="heap" cache-size="1024mb"/> <eviction-policy enabled-eviction="false" default-priority="normal" policy="lru" eviction-ratio="5%"/> <cache-topology topology="replicated"> <cluster-settings operation-timeout="60sec" stats-repl-interval="600sec" use-heart-beat="false"> <data-replication synchronous="true"/> <cluster-connection-settings cluster-port="8700" port-range="1" connection-retries="2" connection-retry-interval="2secs" join_retry_count="24" join_retry_timeout="5"/> </cluster-settings> </cache-topology> </cache-settings> </cache-config> Using the caches configuration you acquired in above step, you can create your cache by just specifying the required attributes to the createcache tool. Here is an example. Let s your configuration file name is Testconfig.ncconf. createcache democache /s /T C:\Testconfig.ncconf 1.2 Add Query Index (addqueryindex.exe) This tool does not change the configuration of a running cache. Copyright 2015 Alachisoft 4 NCache Command Line Tools Guide
8 Add query index tool (addqueryindex) enable users to add query indexes for the objects to be added in the cache so that later on user can search items in the cache using these indexes. addqueryindex [ cache-name ] [ /a /c /L ] [ options ] [ cache-name ] [ /a assembly-path /c class /L attrib-list ] [ cache-name ] [ /a assembly-path /c class /L attrib-list /s server ] cache-name /a /assemblypath Specifies the name of the cache for which query index will be configured. Specifies the path of the assembly which will be configured. /c /class Specifies the fully qualified class for query indexing. /L /attrib-list Specifies the attributes for query indexing ($ separated) e.g. CustomerID$Name... /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /U /user-id Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Indexes a class in cache. 2. Enable users to perform search on indexed attributes. Copyright 2015 Alachisoft 5 NCache Command Line Tools Guide
9 The following command adds query index for the attribute CustomerID in cache. addqueryindex democache /a C:\Data.dll /c Data.Customer /L CustomerID$FirstName The following command adds query index for the attribute CustomerID in cache existing on server addqueryindex democache /a C:\Data.dll /c Data.Customer /L CustomerID$FirstName /s The following command adds query index for the attribute CustomerID in cache existing on server and port. addqueryindex democache /a C:\Data.dll /c Data.Customer /L CustomerID$FirstName /s /p Add Compact Type (addcompacttype.exe) This tool does not change the configuration of a running cache. It is only available in Enterprise edition. Add compact type tool (addcompacttype) enable users to register a custom object for compact serialization for the given caches. addcompacttype [ cache-name ] [ /a /c /al ] [ options ] [ cache-name ] [ /a assembly-path /c class ] [ cache-name ] [ /a assembly-path /c class /al non-compact-attributes ] cache-name /a /assemblypath Specifies the name of the cache for which compact type will be configured. Specifies the path of the assembly which will be configured as a compact type. /c /class Specifies the class for compact serialization. Copyright 2015 Alachisoft 6 NCache Command Line Tools Guide
10 /al /noncompactattributes Specifies the non-compact attribute for compact serialization with a delimiter '$'. /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /U /user-id /P /password Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Adds a class to cache configuration as compact serialized. 2. Adds a class to cache configuration with some of the attributes marked as noncompact whereas rest are compact serialized. The following command configures a compact serializable object for the cache. addcompacttype democache /a C:\Data.dll /c Data.Customer The following command configures a compact serializable object for the cache with some non-compact attributes. addcompacttype democache /a C:\Data.dll /c Data.Customer /al CustomerID$FirstName The following command configures a compact serializable object for the cache with some non-compact attributes on server addcompacttype democache /a C:\Data.dll /c Data.Customer /al CustomerID$FirstName /s Copyright 2015 Alachisoft 7 NCache Command Line Tools Guide
11 1.4 Add Data Share (adddatashare.exe) This tool does not change the configuration of a running cache. It is only available in Enterprise edition. Add data share tool (adddatashare) enable users to register different custom classes and data types for data sharing. adddatashare [ cache-name ] [ /T ] [ options ] [ cache-name ] [ /T path ] [ cache-name ] [ /T path /s server ] cache-name /T /path Specifies the name of the cache for which data share will be configured. Specifies the path of the cache source config which will be configured. /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /U /user-id /P /password Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Configure data sharing between different versions of objects of same platforms. 2. Configure data sharing between different objects of different platforms Copyright 2015 Alachisoft 8 NCache Command Line Tools Guide
12 The following command configures shared types object for the cache. adddatashare democache /T C:\Config.xml The following command configures shared types object for the cache existing on server adddatashare democache /T C:\Config.xml /s The following command configures shared types object for the cache existing on server and port. adddatashare democache /T C:\Config.xml /s /p 8250 Following is a sample data sharing configuration that can be used to configure a cache for data sharing. To configure data sharing for your own caches with this configuration just copy this configuration in a file and save it with.xml file extension. You can also get the configuration of data sharing by mapping attributes of your different classes in NCache Manager and exporting the configuration. <?xml version="1.0" encoding="utf-8"?> <!--This is NCache export file for shared data mapping. Using this file, you can import the shared data configuration to multiple caches by using the 'Import' feature available under 'Data Sharing' tab of NCache Manager.--> <data-sharing> <type id="1001" handle="products" portable="true"> <attribute-list> <attribute name="_productid" type="system.int32" order="1" /> <attribute name="_productname" type="system.string" order="2" /> <attribute name="_supplier" type="system.int32" order="3" /> <attribute name="_category" type="system.string" order="4" /> <attribute name="_unitsavailable" type="system.int32" order="5" /> <attribute name="productid" type="int" order="6" /> <attribute name="productname" type="java.lang.string" order="7" /> <attribute name="supplier" type="int" order="8" /> <attribute name="category" type="java.lang.string" order="9" /> <attribute name="unitsavailable" type="int" order="10" /> </attribute-list> <class name="sampledata.data.product: " assembly="data, Version= , Culture=neutral, PublicKeyToken=null" id="1" type="net"> <attribute name="_productid" type="system.int32" order="1" /> <attribute name="_productname" type="system.string" order="2" /> <attribute name="_supplier" type="system.int32" order="3" /> <attribute name="_category" type="system.string" order="4" /> <attribute name="_unitsavailable" type="system.int32" order="5" /> </class> <class name="com.sampledata.data.product:0.0" assembly="" id="2" type="java"> <attribute name="productid" type="int" order="1" /> Copyright 2015 Alachisoft 9 NCache Command Line Tools Guide
13 <attribute name="productname" type="java.lang.string" order="2" /> <attribute name="supplier" type="int" order="3" /> <attribute name="category" type="java.lang.string" order="4" /> <attribute name="unitsavailable" type="int" order="5" /> </class> </type> </data-sharing> Using the data sharing configuration you acquired in above step, you can configure multiple cache(s) by just specifying the required attributes to the adddatashare tool. Here is an example. Let s your configuration file name is Testconfig.xml. adddatashare democache /s /T C:\Testconfig.xml 1.5 Add Backing Source (addbackingsource.exe) This tool does not change the configuration of a running cache. It is only available in Enterprise edition. Add backing source tool (addbackingsource) enable users to configure read-through and write-through provider for the cache. addbackingsource [ cache-name ] [ /path /c /pn /R /W ] [ options ] [ cache-name ] [ /path assembly-path /c class /pn provider-name /R /readthru ] [ cache-name ] [ /path assembly-path /c class /pn provider-name /W /writethru ] cache-name /path /assemblypath /c /class /pn /provider- Specifies the name of the cache for which backing source will be configured. Specifies the path of the assembly which will be configured as a backing source. Specifies the fully qualified class from the backing source assembly which implements ReadThru/WriteThru. Specifies the provider name. Copyright 2015 Alachisoft 10 NCache Command Line Tools Guide
14 name /R /readthru Specifies if provided backing source is configured for ReadThru. /W /writethru Specifies if provided backing source is configured for WriteThru. /b /IsBatching Specifies that whether you want to enable batching or not. /od /Operationdelay /bi /Batchinterval /ops /Operationper-second /oql /Operation- Queue-Limit /oer /Operation- Eviction-Ratio /s /server Specify the time that cache suspends each operation write on data source. Specifies periodic interval for operation expiration. Specifies the rate at which cache writes the updates to database. Specifies maximum operation count to be re-queued in case of data source write operation failure. Specifies failed operations eviction ratio Specifies a server name where the NCache service is running and a cache with the specified cache-name is registered. The default is the local machine. /p /port Specifies the port if the server channel is not using the default port. /pl /parameterlist Specifies the list of the parameters passed to the backing source provider ($ separated) e.g. key1=value1$key2=value2$... /d /default Specifies the default provider in case of multiple providers. /nd /no-depoly /dp /dep-asmpath /U /user-id /P /password Specify if no assembly should be deployed. Specifies the dependent assembly folder/path Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. Copyright 2015 Alachisoft 11 NCache Command Line Tools Guide
15 1. Configures the read-through, write-through and write-behind operation for given cache. 2. Configures backing source with batching option. 3. Configures backing source with re-queue option. 4. Configures write-behind with throttling (i.e. the rate at which updates are written by cache to datasource). The following command configures read-through provider for the democache. addbackingsource democache /path C:\Provider.dll /c ReadThrough.Reader /pn MyReader /R The following command configures write-through provider for the democache. addbackingsource democache /path C:\Provider.dll /c WriteThrough.Writer /pn MyWriter /W The following command configures write-through provider with batching enabled, for the democache that exists on server addbackingsource democache /path C:\Provider.dll /c WriteThrough.Writer /pn MyWriter /W /s /b The following command configures write-through provider with batching enabled, operationdelay 10ms, batch-interval 5s, operations-per-second 500, operation-queue-limit 5000, operation-evictions-ratio 5%, parameter-list _connectionstring= Server=localhost;Database=Northwind;Trusted_Connection=True; and LoggerInfo= Server=localhost;Database=TestLogger;Trusted_Connection=True; for the democache that exists on server addbackingsource democache /path C:\Provider.dll /c WriteThrough.Writer /pn MyWriter /W /s /b /od 10 /bi 5 /ops 500 /oql 5000 /oer 5 /pl _connectionstring=server=localhost;database=northwind;trusted_connection=true;$ LoggerInfo=Server=localhost;Database=TestLogger;Trusted_Connection=True; 1.6 Add Startup Loader (addstartuploader.exe) This tool does not change the configuration of a running cache. It is only available in Enterprise edition. Copyright 2015 Alachisoft 12 NCache Command Line Tools Guide
16 Add start up loader tool (addstartuploader) enable users to configure start up loader provider for the cache which will load the items from datasource to the cache when cache will start. addstartuploader [ cache-name ] [ /a /c ] [ options ] [ cache-name ] [ /a assembly-path /c class ] [ cache-name ] [ /a assembly-path /c class /s server ] [ cache-name ] [ /a assembly-path /c class /s server /D dependent-assembly-path ] cache-name /a /assemblypath Specifies the name of the cache for which cache loader will be configured. Specifies the path of the assembly which will be configured as a startup loader. /c /class Specifies the fully qualified class from the startup loader which implements ICacheLoader/ICache Startup Provider. /l /parameter-list Specifies the list of the parameters passed to the cache loader e.g. key1=value1$key2=value2... /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /d /no-depoly Specify if no assembly should be deployed. /D /dep-asmpath Specifies the dependent assembly folder/path /R /retries Specifies number of retries for loading data in cache. /i /retry-interval Specifies the retry interval for loading data in cache. /U /user-id /P /password Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. Copyright 2015 Alachisoft 13 NCache Command Line Tools Guide
17 /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Configure the startup-loader for given cache. 2. Enable users to define parameters list for startup loader configuration. 3. Enable users to deploy dependent assemblies with startup loader, if any. The following command configures startup-loader for the democache. addstartuploader democache /a C:\Provider.dll /c StartupLoader.Loader The following command configures startup-loader for the democache with some initial parameters. addstartuploader democache /a C:\Provider.dll /c StartupLoader.Loader /l _connectionstring=server=localhost;database=northwind;trusted_connection=true;$ LoggerInfo=Server=localhost;Database=TestLogger;Trusted_Connection=True; The following command configures startup-loader for the democache with some initial parameters for the democache exist on the server addstartuploader democache /a C:\Provider.dll /c StartupLoader.Loader /l _connectionstring=server=localhost;database=northwind;trusted_connection=true;$ LoggerInfo=Server=localhost;Database=TestLogger;Trusted_Connection=True; /s The following command configures startup-loader for the democache with some initial parameters; retries 3 and retry-interval 60 seconds for the democache exist on the server addstartuploader democache /a C:\Provider.dll /c StartupLoader.Loader /l _connectionstring=server=localhost;database=northwind;trusted_connection=true;$ LoggerInfo=Server=localhost;Database=TestLogger;Trusted_Connection=True; /R 3 /i 60 /s Copyright 2015 Alachisoft 14 NCache Command Line Tools Guide
18 1.7 Deploy Provider (deployprovider.exe) This tool requires NCache service to be restarted for the changes to take effect. It is only available in Enterprise edition. Deploy provider tool (deployprovider) enables the user to deploy provider assemblies to the deployment folder in NCache installed directory. deployprovider [ cache-name ] [ /T ] [options] [ cache-name ] [ /T assembly-path ] [ cache-name ] [ /T assembly-path /s server ] cache-name Specifies the name of the cache for assembly s deployment. /T /path Specifies the path of the assembly/folder for deployment. /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Deploy the provider assembly to the NCache installed directory. 2. Deploy the provider assembly to the NCache installed directory on specified server. The following command deploys the assembly for democache. deployprovider democache /T C:\Provider.dll The following command deploys the assembly for democache on server Copyright 2015 Alachisoft 15 NCache Command Line Tools Guide
19 deployprovider democache C:\Provider.dll /s Configure Cache Security (configurecachesecurity.exe) This tool does not change the configuration of a running cache. It is only available in Enterprise edition. Configure cache security tool (configurecachesecurity) enables the user to configure cache level security for the cache. configurecachesecurity [ cache-name ] [ options ] [ cache-name ] [ /A /N new-user /s server-name /U user-name /P password /c domain-controller ] [ cache-name ] [ /E /s server /U user-name /P password /C domain-controller ] [ cache-name ] [ /D /s server /U user-name /P password /C domain-controller ] [ cache-name ] [ /R /d user-to-delete /s server-name /U username /P password /C domain-controller ] cache-name Name of the cache for which you want to use this tool. /A /R /E /D Specifies that the tool is being used for adding a user in Cache administrator's list. Specifies that the tool is being used for removing a user from Cache administrator's list. Specifies that the tool is being used for enabling security on a specific node. Specifies that the tool is being used for disabling security on a specific node. /N /new-user Specifies the user name to add. /d /user-to- Specifies the existing user which is now being deleted or removed from Copyright 2015 Alachisoft 16 NCache Command Line Tools Guide
20 delete NCache node administrators. /s /server-name Specifies the server node name. /U /user-name Specifies the NCache administrator name. /P /password Specifies the NCache administrator password. /C /domaincontroller Specifies the domain controller. 1. Add new users to cache administrator s list. 2. Remove user from cache administrator s list. 3. Enable security for cache. 4. Disable security for cache. The following command adds new users to cache administrator s list. configurecachesecurity democache /A /N david_watson /s /U david_watson /P ******** /C pdc The following command deletes a user from cache administrator s list. configurecachesecurity democache /R /d david_watson /s /U david_watson /P ******** /C pdc The following command enables security for the cache. configurecachesecurity democache /E /s /U david_watson /P ******** /C pdc The following command disables security for the cache. configurecachesecurity democache /D /s /U david_watson /P ******** /C pdc Copyright 2015 Alachisoft 17 NCache Command Line Tools Guide
21 1.9 Configure Node Security (configurenodesecurity.exe) This tool is only available in Enterprise edition. Configure node security tool (configurenodesecurity) enables the user to configure node level security to perform administrative or management tasks. configurenodesecurity [ cache-name ] [ options ] [ cache-name ] [ /A /N new-user /n node-name /U user-name /P password /C domain-controller ] [ cache-name ] [ /E /n node-name /a admin-name /P password ] [ cache-name ] [ /D /n node-name /U user-name /P password ] [ cache-name ] [ /R /d user-to-delete /n node-name /U user-name /P password /C domain-controller ] cache-name Name of the cache for which you want to use this tool. /A /R /E /D Specifies that the tool is being used for adding a user to NCache node administrators. Specifies that the tool is being used for removing a user from NCache node administrators. Specifies that the tool is being used for enabling security on a specific node. Specifies that the tool is being used for disabling security on a specific node. /N /new-user Specifies the new user name to add. /d /user-todelete Specifies the existing user which is now being deleted or removed from NCache node administrators. /n /node-name Specifies the target node. /U /user-name Specifies the NCache administrator name. Copyright 2015 Alachisoft 18 NCache Command Line Tools Guide
22 /P /password Specifies the NCache administrator password. /C /domaincontroller Specifies the domain controller. 1. Add new users to NCache node administrator s list. 2. Remove user from NCache node administrator s list. 3. Enable security on a specific node. 4. Disable security on a specific node. The following command adds new users to node administrator s list. configurenodesecurity democache /A /N david_watson /n /U david_watson /P ******** /C pdc The following command deletes a user from node administrator s list. configurenodesecurity democache /R /d david_watson /n /U david_watson /P ******** /C pdc The following command enables security for the node. configurenodesecurity democache /E /n /a david_watson /P ******** The following command disables node security. configurenodesecurity democache /D /n /U david_watson /P ******** /C pdc 1.10 Add Node (addnode.exe) Add node tool (addnode) enable users to add a new server node to the existing clustered cache. addnode [ cache-name ] [ /x /N ] [ options ] [ cache-name ] [ /x existing-server /N new-server ] Copyright 2015 Alachisoft 19 NCache Command Line Tools Guide
23 [ cache-name ] [ /x existing-server /N new-server /p port ] cache-name Specifies name of Clustered Cache.Cache must exist on source server. /x /existing Specifies a server name where the NCache service is running and a cache with the specified cache-name is registered. Cache configuration is copied from this server to the destination server. /N /new-server Specifies a server name where a cache with the specified cache-name needs to be registered. The cache configuration is copied from the source server name to this server. /p /port /U /user-id Specifies the port if the server channel is not using the default port. The default is 8251 for http and 8250 for tcp channels Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Adds a new node to the existing cache on specified server. 2. Enable users to have multiple server nodes in a clustered cache. The following command adds a new node to the cache existing on server addnode democache /x /N Copyright 2015 Alachisoft 20 NCache Command Line Tools Guide
24 The following command adds a new node to the cache existing on server and port. addnode democache /x /N /p 8250 The following command adds a new node to the cache existing on server and port with security enabled. addnode democache /x /N /p 8250 /U david_watson /P ******** 1.11 Add Client Node (addclientnode.exe) Add client node tool (addclientnode) enable users to add client nodes to the existing clustered cache(s). addclientnode [ cache-name ] [ /s /e ] [options] [ cache-name ] [ /s server /e client-node ] [ cache-name ] [ /s server /e client-node /p port-number ] [ cache-name ] [ /s server /e client-node /p port-number /u /a ] cache-name Specifies one or more ids of clustered cache. Cache must exist on source server. /s /server Specifies a server name where the NCache service is running and a cache with the specified cache-name is registered. Client configuration is copied from this server to the client node. /e /client-node Specifies a client node (node to be added as client node) where the NCache service is running. /p /port /U /user-id Specifies a port number for communication with the NCache server. Default is Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on cache server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. Copyright 2015 Alachisoft 21 NCache Command Line Tools Guide
25 /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /u /updateserver-config /a /acquireserver-mapping Specifies whether to update the client-nodes sections of server node(s) of the specified cluster. The default value is true.(useful when cluster nodes and clients are in different networks) Specifies whether to fetch the server mapping list from the server node(s). The default value is false. (Useful when cluster nodes and clients are in different networks). /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Adds a client node to the clustered cache existing on specified server. 2. Updates the server configuration, if specified. 3. Acquires server-mapping list, if specified. The following command adds a client node to the democache which exists on server addclientnode democache /s /e The following command adds a client node to the democache which exists on server while specifying port-number. addclientnode democache /s /e /p 8250 The following command adds a client node to the democache which exists on server while specifying port-number and not updating server config. addclientnode democache /s /e /p 8250 /u Copyright 2015 Alachisoft 22 NCache Command Line Tools Guide
26 1.12 Create Client Cache (createclientcache.exe) This tool is only available in Enterprise edition. Create cache tool (createclientcache) enables the user to create a new client cache using this command line utility. createclientcache [cache-name ][ /c /s /N ] [options] [ cache-name ] [ /c client-cache-name /s server /N client-node /S cache-size ] [ cache-name ] [ /c client-cache-name /s server /N client-node /T config-path ] cache-name Specifies the clustered cache name. A clustered cache must be specified for creating a client cache. /s /server Specifies the NCache server name/ip where Cluster Cache is registered. /c /client-cacheid Specifies the name or Id of Client Cache. /N /client-node Specifies a client node which is registered with the Cluster Cache For Simple Case: Cache will be created by input and default configuration settings. /S cache-size Specifies the cache size allocated to the client cache. For Advance Case: In this case all configurations related settings will be taken from specified configuration file. /T path Specifies the path of the cache source config which will be configured. /p /port Specifies a port number for communication with the NCache server. /R /inproc /m /pessimistic Specifies whether the client cache is inproc or outproc. Default value is outproc Specifies if pessimistic Client Cache Synchronization Mode should be enabled. Default is Optimistic. /y /evict-policy Specifies the eviction policy for cache items. Cached items will be cleaned from the cache according to the specified policy if the cache reaches its Copyright 2015 Alachisoft 23 NCache Command Line Tools Guide
27 limit. Possible values are /o /ratio i. Priority ii. LFU iii. LRU (default) Specifies the eviction ratio (Percentage) for cache items. Cached items will be cleaned from the cache according to the specified ratio if the cache reaches its limit. Default value is 5 (percent) /i /interval Specifies the time interval (seconds) after which cache cleanup is called. Default clean-interval is 15 (seconds) Specifies the default priority in case of priority based eviction policy is selected. Possible values are /d /def-priority /U /user-id /P /password /u /updateserver-config vi. high vii. above-normal viii. normal (default) ix. below-normal x. low Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. Specifies whether to update the client-nodes sections of server node(s) of the specified cluster. The default value is true.(useful when cluster nodes and clients are in different networks) /G /nologo Suppresses display of the logo banner /? Displays a detailed help screen 1. Creates new client cache for an existing clustered cache on the specified client node. 2. Creates client cache with the configuration existing on the specified server. 3. Creates client cache with specified eviction settings. 4. Enable user to create inproc or outproc client cache(s). Copyright 2015 Alachisoft 24 NCache Command Line Tools Guide
28 The following command creates new client cache named democlientcache on client node for an already registered clustered cache on server having size 1024 MB for simple case. createclientcache democache /c democlientcache /s /S 1024 /N The following command creates new client cache named democlientcache on client node for an already registered clustered cache on server for advance case. createclientcache democache /c democlientcache /s /N /T C:\Config.xml The following command creates new client cache named democlientcache on client node for an already registered clustered cache on server having size 1024 MB and pessimistic Client Cache synchronization Mode for simple case createclientcache democache /c democlientcache /s /S 1024 /N /m The following command creates client cache named democlientcache on client node while cache exists on server node , client cache created with size 1024 MB, eviction policy priority, default priority low, eviction ratio 30%, clean interval 20, client cache mode pessimistic, isolation level inproc and specifying security credentials of user Shawn marsh. createclientcache democache /c democlientcache /s /N /S 1024 /y priority /o 30 /i 20 /d low /u /m /R /U shawn_marsh /P ******** Following is a sample cache configuration that can be used to create a cache of same configuration. To create your own caches with this configuration just copy this configuration in a file and save it with.xml or.ncconf file extension. You can also get the configuration of sample local cache shipped with NCache setup using getcacheconfiguration tool which gives you configuration of the specified cache. <cache-config config-id="0"> <cache-settings cache-name="mycache" alias="" inproc="false" last-modified="" auto-start="false"> <logging enable-logs="true" trace-errors="true" trace-notices="false" trace-warnings="false" trace-debug="false" log-path=""/> <performance-counters enable-counters="true" snmp-port="0"/> Copyright 2015 Alachisoft 25 NCache Command Line Tools Guide
29 <compression enable-compression="false" threshold="100kb"/> <cache-notifications item-remove="false" item-add="false" item-update="false"/> <cleanup interval="15sec"/> <storage type="heap" cache-size="1024mb"/> <eviction-policy enabled-eviction="false" default-priority="normal" policy="lru" eviction-ratio="5%"/> <cache-topology topology="local-cache"/> </cache-settings> </cache-config> Using the caches configuration you acquired in above step, you can create your client cache by just specifying the required attributes to the createclientcache tool. Here is an example. Let s your configuration file name is TestLocalCacheConfig.ncconf. createclientcache democache /c democlientcache /s /N /T C:\TestLocalCacheConfig.ncconf 1.13 Get Cache Configuration (getcacheconfiguration.exe) Get cache configuration tool (getcacheconfiguration) enables the user to get the configuration for the specified cache. getcacheconfiguration [ cache-name ][ /s ] [ options ] [ cache-name ] [ /s server /T path ] [ cache-name ] [ /s server /p port ] cache-name Specifies the name of the cache for which cache configuration will be generated. /s /server Specifies the NCache server name/ip. /T /path Specifies the path where config will be generated. Copyright 2015 Alachisoft 26 NCache Command Line Tools Guide
30 /p /port Specifies the port on which NCache server is listening. /G /nologo Suppresses display of the logo banner /? Displays a detailed help screen. 1. Generate the config file for cache registered on specified server. 2. Generate the config file for cache on specified path. The following command generate the configuration file for the democache getcacheconfiguration democache /s The following command generate the configuration file for the democache on specified path getcacheconfiguration democache /s /T C:\Desktop\config.xml The following command uses port also to generate the configuration file for the democache on specified path getcacheconfiguration democache /s /T C:\Desktop\config.xml /p List Caches (listcaches.exe) List caches tool (listcaches) enables the user to list the total caches registered on the server and there status. listcaches [ options ] [ /a detail ] [ /a detail /p port ] [ /a detail /s server ] /a /detail Displays detailed information about the cache(s) registered on the Copyright 2015 Alachisoft 27 NCache Command Line Tools Guide
31 server. /s /server /p port Specifies a server name where the NCache service is running. The default is the local machine. Specifies the port if the server channel is not using the default port. The default port for the channel is /G /nologo Suppresses the startup banner and copyright message. /? Displays a detailed help screen. 1. List all the caches registered on the server. 2. Show the status of the caches individually if they are running or not. 3. Displays detailed information about the cache(s). The following command displays total numbers of caches currently registered on the server. listcaches The following command displays total numbers of caches currently registered on the server with detailed information. listcaches /a The following command displays total numbers of caches currently registered on the provided server with detailed information. listcaches /a /s Start Cache (startcache.exe) Start cache tool (startcache) enable users to start a cache using this command line utility. startcache [ cache-name ] [ options ] [ cache-name ] [ /s sever ] Copyright 2015 Alachisoft 28 NCache Command Line Tools Guide
32 [ cache-name ] [ /s server /p port ] cache-name Specifies one or more name(s) of caches separated by space registered on the server. The cache(s) with this/these name(s) is/are started on the server. Note: Space-separated cache names are to be specified in case of multiple caches. /s /server /p /port /U /user-id Specifies a server name where the NCache service is running. The default is the local machine Specifies the port if the server channel is not using the default port. The default management port is 8250 Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Starts the cache on current server node. 2. Start the cache on the specified server. The following command starts cache on local server. startcache democache The following command starts cache democache existing on server Copyright 2015 Alachisoft 29 NCache Command Line Tools Guide
33 startcache democache /s The following command uses port and starts cache democache existing on server startcache democache /s /p Add Test Data (addtestdata.exe) Add test data tool (addtestdata) enables the user to add some test data to the cache to verify if the cache is started and working properly. The items added to the cache expire after 5 minute. addtestdata [ cache-name ] [ options ] [ cache-name ] [ /c item-count ] [ cache-name ] [ /c item-count /S item-size ] cache-name Name of the cache for which you want to use this tool. /c item-count /S /size Number of items to be added to the cache. By default 10 items are added to the cache. Specifies the port if the server channel is not using the default port. The default port is /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Adds test data to the cache with expiration of 5 minutes. 2. Adds items of specified size. Copyright 2015 Alachisoft 30 NCache Command Line Tools Guide
34 The following command adds 10 items to the democache with expiry of 5 minute. addtestdata democache The following command adds 100 items to the democache with expiry of 5 minute. addtestdata democache /c 100 The following command adds 100 items of size 2kb to the democache with expiry of 5 minute. addtestdata democache /c 100 /S Get Cache Count (getcachecount.exe) Get cache count (getcachecount) enables the user to get the total count of items present in the cache. getcachecount [cache-name ] [options] [ cache-name ] [ /s server-ip ] [ cache-name ] [ /s server-ip /p port ] cache-name Name of the cache for which you want to use this tool. /s /server /p port Specifies a server name where the NCache service is running and a cache with the specified cache-name is registered. The default is the local machine. Specifies the port if the server channel is not using the default port. The default port is /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. Copyright 2015 Alachisoft 31 NCache Command Line Tools Guide
35 1. Gets the total number of items currently stored in cache. 2. Gets the count of cache registered on specified server. The following command displays total numbers of items currently in cache. Getcachecount democache The following command displays total numbers of items currently in democache exist on server Getcachecount democache /s The following command uses port also and displays total numbers of items currently in democache exist on server getcachecount democache /s /p Dump Cache Keys (dumpcachekeys.exe) Dump cache tool (dumpcachekeys) enables the user to dump keys to the console currently present in the cache. dumpcachekeys [ cache-name ] [ options ] [ cache-name ] [ /k key-count ] [ cache-name ] [ /F key-filter ] [ cache-name ] [ /k key-count /F key-filter ] cache-name Specifies id of cache to be dumped. /k /Key-Count Specifies the number of keys. The default value is Copyright 2015 Alachisoft 32 NCache Command Line Tools Guide
36 /F /Key-Filter Specifies the keys that contain this substring. By default it is empty. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Dump the keys present in the cache to the console. 2. Dump the keys filtered on the basis of key filter given. The following command dumps the 1000 keys currently present in the cache dumpcachekeys democache The following command dumps the 500 keys currently present in the cache dumpcachekeys democache /k 500 The following command dumps the 500 keys currently present in the cache containing 11 as substring in keys. dumpcachekeys democache /k 20 /F Dump Cache Data (dumpcachedata.exe) Dump cache data tool (dumpcachedata) enables the user to get a backup of all the items currently present in the cache to a network or local path. The same tool can be used to restore the items to a specified cache using a previously created backup from a local or network path. dumpcachedata [ cache-name ] [/p /path] [/a /assembly] [ options ] [ cache-name ] [ /p local-path /a assembly-path] [ cache-name ] [ /p local-path /a assembly-path /r] [ cache-name ] [ /p local-path /a assembly-path /f 2] [ cache-name ] [ /p local-path /a assembly-path /r /t 2 ] [ cache-name ] [ /p local-path /a assembly-path /r /e asbefore] [ cache-name ] [ /p local-path /a assembly-path /r /b 100] Copyright 2015 Alachisoft 33 NCache Command Line Tools Guide
37 cache-name Specifies id of cache to be backed up or restored. /p /path Specifies backup/restore path. /a /assembly-folder Specifies path where dependent assemblies reside. /b /bulk-size Specifies bulk insertion size during restore. Default: /f /file-size /t /error-threshold Specifies file size limit of the data file generated during backup. Default: 5 MB. Specifies the number of errors that can be tolerated during backup or restore. Default: 1. /r /reload Restore the data from the specified path to the specified cache. /e /expiry Specifies the expiration policy with which the data is restored to cache. Default: Adjusted. [s:] None, Adjusted, Asbefore. /G /nologo Suppress display to the logo banner. /? Displays a detailed help screen. 1. Backup the items present in the cache to the specified local or network path. 2. Restore the items to the specified cache from the specified local or network path. The following command backs up all the keys currently present in the cache. dumpcachedata democache /a C:\assembly-folder\ /p C:\Backup-path\ The following command reloads all the items to the cache from the path specified. dumpcachedata democache /a C:\assembly-folder\ /p C:\Backup-path\ /r Copyright 2015 Alachisoft 34 NCache Command Line Tools Guide
38 The following command backs up all the keys currently present in the cache to data file sizes of maximum 2 MB. dumpcachedata democache /a C:\assembly-folder\ /p C:\Backup-path\ /f 2 The following command reloads all the items to the cache from the path specified and will exit if 10 errors occur during the process. dumpcachedata democache /a C:\assembly-folder\ /p C:\Backup-path\ /r /t 10 The following command reloads all the items in bulk of 100 to the cache from the path specified. dumpcachedata democache /a C:\assembly-folder\ /p C:\Backup-path\ /r /b 100 The following command reloads all the items to the cache from the path specified without absolute expiration (if applicable). dumpcachedata democache /a C:\assembly-folder\ /p C:\Backup-path\ /r /e none 1.20 Clear Cache (clearcache.exe) Clear cache tool (clearcache) enables the user to clear the cache by removing all the items present in the cache. clearcache [cache-name ] [options] [ cache-name ] [ /w webcontent] [ cache-name ] [ /F forceclear] cache-name Name of the cache for which you want to use this tool. /w /webcontent Clear JavaScript and CSS only. NOTE: This option is only available in Enterprise edition. Copyright 2015 Alachisoft 35 NCache Command Line Tools Guide
39 /F /forceclear Force the clearing of the cache. If not specified, the user is asked before clearing the cache. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Clears the cache, and asks user before clearing cache. 2. Clears the cache forcefully, if specified. 3. Clears the web contents only, if specified. The following command clears the democache. clearcache democache The following command forcefully clears the cache and does not ask the user before clearing the cache. clearcache democache /F The following command clears JavaScript or CSS content from the cache. clearcache democache /w 1.21 Stress Test Tool (stresstesttool.exe) Stress test tool (stresstesttool) enables users to quickly simulate heavy transactional load on a given cache. And, this helps you see how NCache actually performs under stress in your own environment. Please watch NCache performance counters in NCache Manager "statistics" or regular PerfMon. stresstesttool[ cache-name ] [ options ] [ cache-name ] [ /n item-count ] [ cache-name ] [ /m item-size /t thread-count ] [ cache-name ] [ /m item-size /t thread-count /e sliding-expiration ] [ cache-name ] [ /m item-size /t thread-count /r reporting-interval ] Copyright 2015 Alachisoft 36 NCache Command Line Tools Guide
40 cache-name Name of the cache. /n item-count How many total items you want to add. (default: infinite) /i test-caseiterations /d test-caseiteration-delay /g gets-periteration /u updates-periteration How many iterations within a test case (default: 20) How much delay (in seconds) between each test case iteration (default: 0) How many gets within one iteration of a test case (default: 1) How many updates within one iteration of a test case (default: 1) /m item-size Specify in bytes the size of each cache item (default: 1024) /e slidingexpiration Specify in seconds sliding expiration (default: 300; minimum: 15) /t thread-count How many client threads (default: 1; maximum: 3) /r reportinginterval Report after this many total iterations (default: 5000) /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Allow users to perform heavy load on cache and check performance of the cache. 2. Performs add, get, update and delete operation on the cache. The following command executes stresstesttool on democache. stresstesttool democache The following command executes stresstesttool on democache and will add items of size 2kb. Copyright 2015 Alachisoft 37 NCache Command Line Tools Guide
41 stresstesttool democache /m 2048 The following command executes stresstesttool on democache and will add items of size 2kb using two threads. stresstesttool democache /m 2048 /t Stop Cache (stopcache.exe) Stop cache tool (stopcache) enable users to stop a cache using this command line utility. stopcache [ cache-name ] [ options ] [ cache-name ] [ /s sever ] [ cache-name ] [ /s server /g graceful-shutdown ] cache-name Specifies one or more name(s) of caches separated by space registered on the server. The cache(s) with this/these name(s) is/are stopped on the server. Note: Space-separated cache names are to be specified in case of multiple caches. /s /server /p /port /g /gracefulshutdown /U /user-id Specifies a server name where the NCache service is running. The default is the local machine. Specifies the port if the server channel is not using the default port. The default management port is 8250 Specifies if the cache be stopped gracefully. NOTE: This option is only available in Enterprise edition. Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. Copyright 2015 Alachisoft 38 NCache Command Line Tools Guide
42 This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Stops the cache on specified server. 2. Stops a cache on specified server. 3. Stops a cache gracefully. The following command stops cache on local server. stopcache democache The following command stops cache democache existing on server stopcache democache /s The following command stops cache democache gracefully existing on server stopcache democache /s /g 1.23 Remove Startup Loader (removestartuploader.exe) This tool does not change the configuration of a running cache. It is only available in Enterprise edition. Remove start up loader tool (removestartuploader) enable users to remove a pre-configured start up loader provider of the given cache. removestartuploader [cache-name ] [options] [ cache-name ] [ /s sever ] [ cache-name ] [ /s server /p port ] Copyright 2015 Alachisoft 39 NCache Command Line Tools Guide
43 cache-name Specifies the name of the cache for which cache loader will be removed. /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /U /user-id /P /password Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Removes pre-configured startup loader. 2. Removes pre-configured startup loader on specified server. The following command removes startup-loader for the democache. removestartuploader democache The following command uses port to removes startup-loader for the democache existing on server removestartuploader democache /s /p 8250 Copyright 2015 Alachisoft 40 NCache Command Line Tools Guide
44 1.24 Remove Backing Source (removebackingsource.exe) This tool does not change the configuration of a running cache. It is only available in Enterprise edition. Remove backing source tool (removebackingsource) enable users to remove the already configured read-through and write-through provider for the cache. removebackingsource [ cache-name ] [ /n /R /W ] [options] [ cache-name ] [ /n provider-name /R ] [ cache-name ] [ /n provider-name /w ] cache-name /n /providername Specifies the name of the cache for which backing source will be removed. Specifies the provider name. /R /readthru Specifies if provided backing source is configured for ReadThru. /W /writethru Specifies if provided backing source is configured for WriteThru. /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /U /user-id /P /password Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. Copyright 2015 Alachisoft 41 NCache Command Line Tools Guide
45 1. Remove pre-configured read-through provider for given cache. 2. Remove pre-configured write-through provider for given cache. 3. Remove pre-configured read-through or write-through provider for given cache on specified server. The following command removes the pre-configured read-through provider for the democache. removebackingsource democache /n MyReader /R The following command removes the pre-configured write-through provider for the democache. removebackingsource democache /n MyWriter /W The following command removes the pre-configured write-through provider for the democache exist on the server removebackingsource democache /n MyWriter /W /s The following command removes the pre-configured write-through provider using port for the democache exist on the server removebackingsource democache /n MyWriter /W /s /p Remove Data Share (removedatashare.exe) This tool does not change the configuration of a running cache. It is only available in Enterprise edition. Remove data share tool (removedatashare) enable users to remove already defined shared types. removedatashare [ cache-name ] [options] [ cache-name ] [ cache-name ] [ /s server ] Copyright 2015 Alachisoft 42 NCache Command Line Tools Guide
46 cache-name Specifies the name of the cache for which data share will be removed. /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /U /user-id /P /password Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Removes pre-configured shared types from provided cache. 2. Removes pre-configured shared types from provided on specified server. The following command removes defined shared types for democache. removedatashare democache The following command removes defined shared types for democache existing on server removedatashare democache /s The following command removes defined shared types for democache existing on server and port. removedatashare democache /s /p 8250 Copyright 2015 Alachisoft 43 NCache Command Line Tools Guide
47 1.26 Remove Compact Type (removecompacttype.exe) This tool does not change the configuration of a running cache. It is only available in Enterprise edition. Remove compact type tool (removecompacttype) enable users to remove already defined compact serializable objects. removecompacttype [ cache-name ] [ /c ] [options] [ cache-name ] [ /c class ] [ cache-name ] [ /c class /s server ] cache-name Specifies the name of the cache for which compact type will be removed. /c /class Specifies the class for removing from compact serialization. /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /U /user-id /P /password Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Remove compact serialized class from cache configuration. 2. Remove compact serialized class from cache configuration on specified server. Copyright 2015 Alachisoft 44 NCache Command Line Tools Guide
48 The following command removes the compact serializable class from cache configuration. removecompacttype democache /c Data.Customer The following command removes the compact serializable class from cache configuration on server removecompacttype democache /c Data.Customer /s The following command removes the compact serializable class from cache configuration on server removecompacttype democache /c Data.Customer /s /p Remove Query Index (removequeryindex.exe) This tool does not change the configuration of a running cache. Remove query index tool (removequeryindex) enable users to remove pre-defined query indexes for the objects to be added in the cache. removequeryindex [cache-name ] [ /c ] [options] [ cache-name ] [ /c class ] [ cache-name ] [ /c class /L attrib-list /s server ] cache-name Specifies the name of the cache for which query index will be removed. /c /class Specifies the class for removing query index. /L /attrib-list Specifies the attributes for removing from query index ($ separated) e.g. CustomerID$Name... Copyright 2015 Alachisoft 45 NCache Command Line Tools Guide
49 /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /U /user-id Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Remove pre-defined query indexes for the objects. 2. Remove pre-defined query indexes of the specified class on given server. The following command removes query indexes for customer class. removequeryindex democache /c Data.Customer The following command removes query indexes for customer class in democache existing on server removequeryindex democache /c Data.Customer /s The following command removes query indexes for some attributes of customer class in democache existing on server removequeryindex democache /c Data.Customer /L CustomerID$FirstName /s Copyright 2015 Alachisoft 46 NCache Command Line Tools Guide
50 1.28 Remove Client Cache (removeclientcache.exe) This tool is only available in Enterprise edition. Remove cache tool (removeclientcache) enables the user remove client cache from client node using this command line utility. removeclientcache [ cache-name ][ /c /N ] [ options ] [ cache-name ] [ /c client-cache-name /N client-node ] [ cache-name ] [ /c client-cache-name /N client-node ] cache-name Specifies the clustered cache name. A clustered cache must be specified for each client cache. /c client-cache Specifies the name or Id of Client Cache to remove. /N /node Specifies the node on which you want to remove client cache. /s server Specifies a server name where the NCache service is running and a cache with the specified cache-name is registered. Cache configuration is copied from this server to the destination server. The default is the local machine. /p /port Specifies a port number for communication with the NCache server. /U /user-id /P /password Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. /G /nologo Suppresses display of the logo banner /? Displays a detailed help screen Copyright 2015 Alachisoft 47 NCache Command Line Tools Guide
51 1. Removes client cache for an existing clustered cache. 2. Removes client cache for an existing clustered cache on specified server. The following command removes client cache named democlientcache from client node removeclientcache democache /c democlientcache /N The following command removes client cache named democlientcache on client node for an already registered clustered cache on server removeclientcache democache /c democlientcache /s /N The following command removes used port to remove client cache named democlientcache on client node for an already registered clustered cache on server removeclientcache democache /c democlientcache /s /N /p Remove Client Node (removeclientnode.exe) Remove client node tool (removeclientnode) enable users to remove client nodes from the existing clustered caches. removeclientnode [ cache-name ] [ /e ] [options] [ cache-name ] [ /e client-node ] [ cache-name ] [ /e client-node /s server-ip ] cache-name Specifies id of Clustered Cache. Cache must exist on source server. /e /client-node Specifies a client node where the NCache service is running. /S /server Specifies a server name where the NCache service is running and a cache with the specified cache-name is registered. Cache configuration is Copyright 2015 Alachisoft 48 NCache Command Line Tools Guide
52 copied from this server to the destination server. The default is the local machine. /p /port Specifies a port number for communication with the NCache server. /U /user-id Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Removes a client node from the given clustered cache. 2. Removes the client node from the given clustered cache on specified server. The following command removes client node from the democache. removeclientnode democache /e The following command removes a client node from the democache which exists on server removeclientnode democache /e /s The following command uses port also and removes a client node from the democache which exists on server removeclientnode democache /e /s /p Remove Node (removenode.exe) Remove node tool (removenode) enable users to remove node from existing cache. Copyright 2015 Alachisoft 49 NCache Command Line Tools Guide
53 removenode [cache-name ] [options] [ cache-name ] [ /s server ] [ cache-name ] [ /s server /g graceful-shutdown ] cache-name Specifies id of cache registered on the server. The cache with this id is unregistered on the server. /s server /g gracefulshutdown /p /port /U /user-id Specifies a server name where the NCache service is running. This server will be removed from specified cache. The default is the local machine Specifies for graceful shutdown. NOTE: This option is only available in Enterprise edition. Specifies the port if the server channel is not using the default port. The default is 8251 for http and 8250 for tcp channels. Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Removes node from existing cache on a server. 2. Removes specified node from provided clustered cache. Copyright 2015 Alachisoft 50 NCache Command Line Tools Guide
54 The following command removes local node from the democache. removenode democache The following command removes node from the democache. removenode democache /s The following command uses port to removes node from the democache with graceful-shutdown. removenode democache /s /p 8250 /g 1.31 Verify License (verifylicense.exe) Verify license tool (verifylicense) enables the user to verify the NCache License. For registered version it will display the registration details. In evaluation mode it will display the remaining day if evaluation is still valid else give the expiration message. verifylicense [ options ] [ /G /nologo ] /G /nologo Suppresses the startup banner and copyright message. /? Displays a detailed help screen. 1. Shows the registration details. 2. Shows evaluation period. 3. Gives expiry information Copyright 2015 Alachisoft 51 NCache Command Line Tools Guide
55 The following command displays registration details. verifylicense The following command displays registration details without displaying logo banner. verifylicense /G 1.32 Remove Cache (removecache.exe) Remove cache tool (removecache) enables the user to remove an already registered cache using this command line utility. removecache [cache-name ] [options] [ cache-name ] [ /s sever ] [ cache-name ] [ /s server /p port ] cache-name Specifies one or more ids of Clustered Cache. Cache must exist on source server. /s /server Specifies a server name where the NCache service is running and a cache with the specified cache-name is registered. Cache configuration is copied from this server to the destination server. The default is the local machine. /p /port Specifies a port number on which cache is running. /U /user-id Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. Copyright 2015 Alachisoft 52 NCache Command Line Tools Guide
56 /G /nologo Suppresses display of the logo banner /? Displays a detailed help screen 1. Remove already registered cache. 2. Remove registered cache(s) on specified server. The following command removes the democache from local server removecache democache The following command removes the democache from server removecache democache /s The following command uses port also and removes the democache from server removecache democache /s /p Start Bridge (startbridge.exe) This tool is only available in Enterprise edition. Start bridge tool (startbridge) enable users to start a bridge using this command line utility. startbridge [ bridge-name ] [options] [ bridge-name ] [ /s sever ] [ bridge-name ] [ /s server /p port ] Copyright 2015 Alachisoft 53 NCache Command Line Tools Guide
57 bridge-name Specifies one or more name(s) of bridges registered on the server. The bridge(s) with this/these name(s) is/are started on the server. /s server-name /p port /U user-id Specifies a server name where the NBridge service is running. The default is the local machine Specifies the port if the server channel is not using the default port. The default is 8261 for http and 8260 for tcp channels Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. 1. Start the bridge. 2. Start the bridge on specified server. The following command starts bridge on local server. startbridge demobridge The following command starts bridge demobridge existing on server startbridge demobridge /s Copyright 2015 Alachisoft 54 NCache Command Line Tools Guide
58 1.34 Stop Bridge (stopbridge.exe) This tool is only available in Enterprise edition. Stop bridge tool (stopbridge) enable users to stop a bridge using this command line utility. stopbridge [ bridge-name ] [ options ] [ bridge-name ] [ /s sever ] [ bridge-name ] [ /s server /p port ] bridge-name Specifies one or more name(s) of bridges registered on the server. The bridge(s) with this/these name(s) is/are stopped on the server. /s /server /p /port /U /user-id Specifies a server name where the NBridge service is running. The default is the local machine Specifies the port if the server channel is not using the default port. The default is 8261 for http and 8260 for tcp channels Specifies the user-id used to authorize the user for this operation. It is required in case security is enabled on Server. This user-id must be the active directory user-id prefixed with the domain name. NOTE: This option is only available in Enterprise edition. /P /password Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Server. This password must be the same as the active directory user password. NOTE: This option is only available in Enterprise edition. /G /nologo Suppresses display of the logo banner. /? Displays a detailed help screen. Copyright 2015 Alachisoft 55 NCache Command Line Tools Guide
59 1. Stops the bridge. 2. Stops the bridge on specified server. The following command stops bridge on local server. stopbridge demobridge The following command stops bridge demobridge existing on server stopbridge demobridge /s Server Logger (serverlogger.exe) This tool is only available in Enterprise edition. Server logger tool (serverlogger) is used to enable detailed logging for both socket-server and all the clients. serverlogger [enable disable] [options] [ enable ] [ /s sever ] [ enable ] [ /s server /p port ] enable disable Enables error and detailed logging Disables error and detailed logging /s /server Specifies the NCache server name/ip. /p /port Specifies the port on which NCache server is listening. /G /nologo Suppresses display of the logo banner. Copyright 2015 Alachisoft 56 NCache Command Line Tools Guide
60 /? Displays a detailed help screen. 1. Enables runtime socket level logging 2. Store the logs on the installed path. The following command enables socket-server logs. serverlogger enable The following command disables socket-server logs. serverlogger disable The following command enables socket-server logs on server serverlogger enable /s Monitor Sever (monitorserver.exe) This tool is only available in Enterprise edition. Monitor severs tool (monitorserver) enables the user to start and stop monitoring the activities performed on the server and log these activities in a log file. monitorserver start/stop [ options ] start [ /s server ] stop [ /s server /p port ] Start Specifies to start monitoring. Copyright 2015 Alachisoft 57 NCache Command Line Tools Guide
61 Stop Specifies to stop monitoring. /s /server /p port Specifies a server name where the NCache service is running. The default is the local machine. Specifies the port if the server channel is not using the default port. The default port for the channel is /G /nologo Suppresses the startup banner and copyright message. /? Displays a detailed help screen. 1. Monitor the server activities. 2. Log the activities in a log file in NCache installed directory. The following command starts monitoring the server. Monitorserver start The following command stops monitoring the server. Monitorserver stop The following command starts monitoring the server on node Monitorserver start /s Copyright 2015 Alachisoft 58 NCache Command Line Tools Guide
Using NCache for ASP.NET Sessions in Web Farms
Using NCache for ASP.NET Sessions in Web Farms April 22, 2015 Contents 1 Getting Started... 1 1.1 Step 1: Install NCache... 1 1.2 Step 2: Configure for Multiple Network Cards... 1 1.3 Step 3: Configure
Guide to Using NCache Open Source
Guide to Using NCache Open Source January 21, 2015 Copyright 2015 Alachisoft. All rights reserved. Contents 1. Introduction to NCache... 1 1.1 Edition Comparison... 1 2. Install & Configure NCache... 5
NCache Release Notes Bugs Fixes and Enhancements
Alachisoft NCache 4.4 SP2 NCache Release Notes Bugs Fixes and Enhancements Last Modified: July 28, 2015 2 Table of Contents Release Notes NCache 4.4 (Service Pack 2)... 3 Release Notes NCache 4.4 (Service
DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER
White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted
Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011
Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011 The information contained in this guide is not of a contractual nature and may be subject to change without prior notice. The software described in this guide
How To - Implement Single Sign On Authentication with Active Directory
How To - Implement Single Sign On Authentication with Active Directory Applicable to English version of Windows This article describes how to implement single sign on authentication with Active Directory
Back-up Server DOC-OEMSPP-S/2014-BUS-EN-10/12/13
Back-up Server DOC-OEMSPP-S/2014-BUS-EN-10/12/13 The information contained in this guide is not of a contractual nature and may be subject to change without prior notice. The software described in this
Table Of Contents. 1. GridGain In-Memory Database
Table Of Contents 1. GridGain In-Memory Database 2. GridGain Installation 2.1 Check GridGain Installation 2.2 Running GridGain Examples 2.3 Configure GridGain Node Discovery 3. Starting Grid Nodes 4. Management
Configure AlwaysOn Failover Cluster Instances (SQL Server) using InfoSphere Data Replication Change Data Capture (CDC) on Windows Server 2012
Configure AlwaysOn Failover Cluster Instances (SQL Server) using InfoSphere Data Replication Change Data Capture (CDC) on Windows Server 2012 Introduction As part of the SQL Server AlwaysOn offering, AlwaysOn
BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide
BlackBerry Enterprise Service 10 Version: 10.2 Configuration Guide Published: 2015-02-27 SWD-20150227164548686 Contents 1 Introduction...7 About this guide...8 What is BlackBerry Enterprise Service 10?...9
Working With Virtual Hosts on Pramati Server
Working With Virtual Hosts on Pramati Server 13 Overview Virtual hosting allows a single machine to be addressed by different names. There are two ways for configuring Virtual Hosts. They are: Domain Name
Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide
Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer.
RSA Security Analytics
RSA Security Analytics Event Source Log Configuration Guide Microsoft SQL Server Last Modified: Thursday, July 30, 2015 Event Source Product Information: Vendor: Microsoft Event Source: SQL Server Versions:
User Migration Tool. Note. Staging Guide for Cisco Unified ICM/Contact Center Enterprise & Hosted Release 9.0(1) 1
The (UMT): Is a stand-alone Windows command-line application that performs migration in the granularity of a Unified ICM instance. It migrates only Unified ICM AD user accounts (config/setup and supervisors)
Kaseya Server Instal ation User Guide June 6, 2008
Kaseya Server Installation User Guide June 6, 2008 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's
c360 Portal Installation Guide
c360 Portal Installation Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. www.c360.com [email protected] Table of Contents c360 Portal Installation Guide... 1 Table of Contents... 2 Overview
StarWind Virtual SAN Installation and Configuration of Hyper-Converged 2 Nodes with Hyper-V Cluster
#1 HyperConverged Appliance for SMB and ROBO StarWind Virtual SAN Installation and Configuration of Hyper-Converged 2 Nodes with MARCH 2015 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the
Using the DataDirect Connect for JDBC Drivers with the Sun Java System Application Server
Using the DataDirect Connect for JDBC Drivers with the Sun Java System Application Server Introduction This document explains the steps required to use the DataDirect Connect for JDBC drivers with the
Setup guide. TELUS AD Sync
Setup guide TELUS AD Sync June 2013 TELUS AD Sync User Guide. The AD Sync Tool must be downloaded onto your organization s Domain Controller. Please call TELUS at 1 877 846 4456 to have this feature provisioned
STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS
STATISTICA VERSION 12 STATISTICA ENTERPRISE SMALL BUSINESS INSTALLATION INSTRUCTIONS Notes 1. The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b)
Using Logon Agent for Transparent User Identification
Using Logon Agent for Transparent User Identification Websense Logon Agent (also called Authentication Server) identifies users in real time, as they log on to domains. Logon Agent works with the Websense
MIGRATING TO AVALANCHE 5.0 WITH MS SQL SERVER
MIGRATING TO AVALANCHE 5.0 WITH MS SQL SERVER This document provides instructions for migrating to Avalanche 5.0 from an installation of Avalanche MC 4.6 or newer using MS SQL Server 2005. You can continue
Installation Guide for Websphere ND 7.0.0.21
Informatica MDM Multidomain Edition for Oracle (Version 9.5.1) Installation Guide for Websphere ND 7.0.0.21 Page 1 Table of Contents Preface... 3 Introduction... 4 Before You Begin... 4 Installation Overview...
WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide
WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see
SAS 9.3 Foundation for Microsoft Windows
Software License Renewal Instructions SAS 9.3 Foundation for Microsoft Windows Note: In this document, references to Microsoft Windows or Windows include Microsoft Windows for x64. SAS software is licensed
OneLogin Integration User Guide
OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...
Use Enterprise SSO as the Credential Server for Protected Sites
Webthority HOW TO Use Enterprise SSO as the Credential Server for Protected Sites This document describes how to integrate Webthority with Enterprise SSO version 8.0.2 or 8.0.3. Webthority can be configured
Installation Guide. . All right reserved. For more information about Specops Inventory and other Specops products, visit www.specopssoft.
. All right reserved. For more information about Specops Inventory and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Inventory is a trademark owned by Specops Software.
v.2.5 2015 Devolutions inc.
v.2.5 Contents 3 Table of Contents Part I Getting Started 6... 6 1 What is Devolutions Server?... 7 2 Features... 7 3 System Requirements Part II Management 10... 10 1 Devolutions Server Console... 11
A Transend Corporation White Paper Preparing Microsoft Exchange Server for Migration
A Transend Corporation White Paper Preparing Microsoft Exchange Server for Migration Copyright December 2012 by Transend Corporation Table of Contents Section 1: Introduction... 1 Section 2: Basic Requirements...
000-596. IBM Security Access Manager for Enterprise Single Sign-On V8.2 Implementation Exam. http://www.examskey.com/000-596.html
IBM 000-596 IBM Security Access Manager for Enterprise Single Sign-On V8.2 Implementation Exam TYPE: DEMO http://www.examskey.com/000-596.html Examskey IBM 000-596 exam demo product is here for you to
No.1 IT Online training institute from Hyderabad Email: [email protected] URL: sriramtechnologies.com
I. Basics 1. What is Application Server 2. The need for an Application Server 3. Java Application Solution Architecture 4. 3-tier architecture 5. Various commercial products in 3-tiers 6. The logic behind
LepideAuditor Suite for File Server. Installation and Configuration Guide
LepideAuditor Suite for File Server Installation and Configuration Guide Table of Contents 1. Introduction... 4 2. Requirements and Prerequisites... 4 2.1 Basic System Requirements... 4 2.2 Supported Servers
RSA Security Analytics
RSA Security Analytics Event Source Log Configuration Guide Microsoft Windows using Eventing Collection Last Modified: Thursday, July 30, 2015 Event Source Product Information: Vendor: Microsoft Event
Configuring IBM WebSphere Application Server 6.1 to Support SAS 9.2 Web Applications
Configuration Guide Configuring IBM WebSphere Application Server 6.1 to Support SAS 9.2 Web Applications This document is for SAS installers who want to configure IBM WebSphere Application Server for use
Wavelink Avalanche Mobility Center Java Console User Guide. Version 5.3
Wavelink Avalanche Mobility Center Java Console User Guide Version 5.3 Revised 17/04/2012 ii Copyright 2012 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway,
IIS SECURE ACCESS FILTER 1.3
OTP SERVER INTEGRATION MODULE IIS SECURE ACCESS FILTER 1.3 Copyright, NordicEdge, 2006 www.nordicedge.se Copyright, 2006, Nordic Edge AB Page 1 of 14 1 Introduction 1.1 Overview Nordic Edge One Time Password
Integrating with BarTender Integration Builder
Integrating with BarTender Integration Builder WHITE PAPER Contents Overview 3 Understanding BarTender's Native Integration Platform 4 Integration Builder 4 Administration Console 5 BarTender Integration
NSi Mobile Installation Guide. Version 6.2
NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...
Specops Command. Installation Guide
Specops Software. All right reserved. For more information about Specops Command and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Command is a trademark owned by Specops
User Guide. Version R91. English
AuthAnvil User Guide Version R91 English August 25, 2015 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from
LAB: Enterprise Single Sign-On Services. Last Saved: 7/17/2006 10:48:00 PM
LAB: Enterprise Single Sign-On Services LAB: Enterprise Single Sign-On Services 2 TABLE OF CONTENTS HOL: Enterprise Single Sign-On Services...3 Objectives...3 Lab Setup...4 Preparation...5 Exercise 1:
INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX
INSTALL AND CONFIGURATION GUIDE Atlas 5.1 for Microsoft Dynamics AX COPYRIGHT NOTICE Copyright 2012, Globe Software Pty Ltd, All rights reserved. Trademarks Dynamics AX, IntelliMorph, and X++ have been
qliqdirect Active Directory Guide
qliqdirect Active Directory Guide qliqdirect is a Windows Service with Active Directory Interface. qliqdirect resides in your network/server and communicates with qliqsoft cloud servers securely. qliqdirect
Operating System Installation Guide
Operating System Installation Guide This guide provides instructions on the following: Installing the Windows Server 2008 operating systems on page 1 Installing the Windows Small Business Server 2011 operating
Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c
Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor
Configuration Guide. BES12 Cloud
Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need
Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0.3
Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0.3 Software Release Notes Revised September 2014 Contents Introduction 1 Changes to interoperability 1 Product documentation
How To - Implement Clientless Single Sign On Authentication in Single Active Directory Domain Controller Environment
How To - Implement Clientless Single Sign On Authentication in Single Active Directory Domain Controller Environment How To - Implement Clientless Single Sign On Authentication with Active Directory Applicable
Database Configuration Guide
Database Configuration Guide Medtech Evolution - Document Version 5 Last Modified on: February 26 th 2015 (February 2015) This documentation contains important information for all Medtech Evolution users
StarWind iscsi SAN & NAS: Configuring HA Storage for Hyper-V October 2012
StarWind iscsi SAN & NAS: Configuring HA Storage for Hyper-V October 2012 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software logos are trademarks of StarWind Software which
EMC Documentum Connector for Microsoft SharePoint
EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014
Tivoli Access Manager Agent for Windows Installation Guide
IBM Tivoli Identity Manager Tivoli Access Manager Agent for Windows Installation Guide Version 4.5.0 SC32-1165-03 IBM Tivoli Identity Manager Tivoli Access Manager Agent for Windows Installation Guide
Moving the TRITON Reporting Databases
Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,
Enterprise Content Management System Monitor. How to deploy the JMX monitor application in WebSphere ND clustered environments. Revision 1.
Enterprise Content Management System Monitor How to deploy the JMX monitor application in WebSphere ND clustered environments Revision 1.3 CENIT AG Author: Juergen Poiger 25. August 2015 2 Content Disclaimer...
Tenrox and Microsoft Dynamics CRM Integration Guide
Tenrox Tenrox and Microsoft Dynamics CRM Integration Guide January, 2012 2012 Tenrox. All rights reserved. About this Guide This guide describes the procedures for setting up integration between Microsoft
Configuring ADOBE LIVECYCLE ES4 Application Server Cluster using WEBSPHERE
Configuring ADOBE LIVECYCLE ES4 Application Server Cluster using WEBSPHERE Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1:
Using SMI-S for Management Automation of StarWind iscsi SAN V8 beta in System Center Virtual Machine Manager 2012 R2
Using SMI-S for Management Automation of StarWind iscsi SAN V8 beta in System Center Virtual Machine Manager 2012 R2 September 2013 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind
RoomWizard Synchronization Software Manual Installation Instructions
2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System
Lepide Software. LepideAuditor for File Server [CONFIGURATION GUIDE] This guide informs How to configure settings for first time usage of the software
Lepide Software LepideAuditor for File Server [CONFIGURATION GUIDE] This guide informs How to configure settings for first time usage of the software Lepide Software Private Limited, All Rights Reserved
Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014
Contents Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Copyright (c) 2012-2014 Informatica Corporation. All rights reserved. Installation...
CRM to Exchange Synchronization
CRM to Exchange Synchronization Installation, Configuration and End-User Instructions VERSION 1.0 DATE PREPARED: 9/1/2012 DEVELOPMENT: BRITE GLOBAL, INC. 2012 Brite Global, Incorporated. All rights reserved.
FaxCore 2007 Getting Started Guide (v1.0)
FaxCore 2007 Getting Started Guide (v1.0) FaxCore 2007 Getting Started Guide (v1.0) Page 1 FaxCore 2007 Getting Started Guide Setting up Windows 2003 This only applies to FaxCore appliances. When the server
Application Server Installation
Application Server Installation Guide ARGUS Enterprise 11.0 11/25/2015 ARGUS Software An Altus Group Company Application Server Installation ARGUS Enterprise Version 11.0 11/25/2015 Published by: ARGUS
Integration Package for Microsoft Office SharePoint3
Panorama NovaView 5 Integration Package for Microsoft Office SharePoint3 About the Integration package Release Notes This package applies to the Panorama NovaView Server and the Microsoft office SharePoint3.
Desktop Surveillance Help
Desktop Surveillance Help Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating from Desktop Surveillance 2.6 to Desktop Surveillance 3.2... 13 Program Structure... 14 Getting
Attix5 Pro Plug-ins. V6.2 User Manual. Cover. for Microsoft Windows. Your guide to installing and using Attix5 Pro plug-ins. Last updated: 2011/10
Attix5 Pro Plug-ins V6.2 User Manual Cover for Microsoft Windows Your guide to installing and using Attix5 Pro plug-ins. Last updated: 2011/10 SERVER EDITION V6.0 for MICROSOFT WINDOWS Copyright Notice
Installation and Configuration Guide
Installation and Configuration Guide BlackBerry Resource Kit for BlackBerry Enterprise Service 10 Version 10.2 Published: 2015-11-12 SWD-20151112124827386 Contents Overview: BlackBerry Enterprise Service
Avatier Identity Management Suite
Avatier Identity Management Suite Migrating AIMS Configuration and Audit Log Data To Microsoft SQL Server Version 9 2603 Camino Ramon Suite 110 San Ramon, CA 94583 Phone: 800-609-8610 925-217-5170 FAX:
Configuring Security Features of Session Recording
Configuring Security Features of Session Recording Summary This article provides information about the security features of Citrix Session Recording and outlines the process of configuring Session Recording
CYAN SECURE WEB HOWTO. NTLM Authentication
CYAN SECURE WEB HOWTO June 2008 Applies to: CYAN Secure Web 1.4 and above NTLM helps to transparently synchronize user names and passwords of an Active Directory Domain and use them for authentication.
Bitrix Site Manager ASP.NET. Installation Guide
Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary
User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream
User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner
Secure Messaging Server Console... 2
Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating
Installation and Setup: Setup Wizard Account Information
Installation and Setup: Setup Wizard Account Information Once the My Secure Backup software has been installed on the end-user machine, the first step in the installation wizard is to configure their account
IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT
White Paper IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT Abstract This guide outlines the ideal way to successfully install and configure an IBM WebSphere
Bentley CONNECT Dynamic Rights Management Service
v1.0 Implementation Guide Last Updated: March 20, 2013 Table of Contents Notices...5 Chapter 1: Introduction to Management Service...7 Chapter 2: Configuring Bentley Dynamic Rights...9 Adding Role Services
Eylean server deployment guide
Eylean server deployment guide Contents 1 Minimum software and hardware requirements... 2 2 Setting up the server using Eylean.Server.Setup.exe wizard... 2 3 Manual setup with Windows authentication -
KofaxReporting. Administrator's Guide 1.0.0 2012-04-13
KofaxReporting 1.0.0 Administrator's Guide 2012-04-13 2012 Kofax, Inc. All rights reserved. Use is subject to license terms. Third-party software is copyrighted and licensed from Kofax s suppliers. THIS
Implementing Failover Capabilities in Red Hat Network Satellite
Implementing Failover Capabilities in Red Hat Network Satellite By Vladimir Zlatkin Abstract This document will help you create two identical Red Hat Network (RHN) Satellites functioning in failover mode.
Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0
Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0 Software Release Notes May 2014 Contents Introduction 1 Changes to interoperability 1 Product documentation 1 New features
Burst Technology bt-loganalyzer SE
Burst Technology bt-loganalyzer SE Burst Technology Inc. 9240 Bonita Beach Rd, Bonita Springs, FL 34135 CONTENTS WELCOME... 3 1 SOFTWARE AND HARDWARE REQUIREMENTS... 3 2 SQL DESIGN... 3 3 INSTALLING BT-LOGANALYZER...
Tool for Automated Provisioning System (TAPS) Version 1.2 (1027)
Tool for Automated Provisioning System (TAPS) Version 1.2 (1027) 2015 VoIP Integration Rev. July 24, 2015 Table of Contents Product Overview... 3 Application Requirements... 3 Cisco Unified Communications
Integrating VoltDB with Hadoop
The NewSQL database you ll never outgrow Integrating with Hadoop Hadoop is an open source framework for managing and manipulating massive volumes of data. is an database for handling high velocity data.
WebSphere Business Monitor V7.0 Configuring a remote CEI server
Copyright IBM Corporation 2010 All rights reserved WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should be able to do... 2 Introduction... 3 Part 1: Install
Basic System. Vyatta System. REFERENCE GUIDE Using the CLI Working with Configuration System Management User Management Logging VYATTA, INC.
VYATTA, INC. Vyatta System Basic System REFERENCE GUIDE Using the CLI Working with Configuration System Management User Management Logging Vyatta Suite 200 1301 Shoreway Road Belmont, CA 94002 vyatta.com
Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0.1
Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0.1 Software Release Notes May 2014 Contents Introduction 1 Changes to interoperability 1 Product documentation 2 New features
Deploying Business Objects Crystal Reports Server on IBM InfoSphere Balanced Warehouse C-Class Solution for Windows
Deploying Business Objects Crystal Reports Server on IBM InfoSphere Balanced Warehouse C-Class Solution for Windows I Installation & Configuration Guide Author: Thinh Hong Business Partner Technical Enablement
s@lm@n Oracle Exam 1z0-102 Oracle Weblogic Server 11g: System Administration I Version: 9.0 [ Total Questions: 111 ]
s@lm@n Oracle Exam 1z0-102 Oracle Weblogic Server 11g: System Administration I Version: 9.0 [ Total Questions: 111 ] Oracle 1z0-102 : Practice Test Question No : 1 Which two statements are true about java
Spam Marshall SpamWall Step-by-Step Installation Guide for Exchange 5.5
Spam Marshall SpamWall Step-by-Step Installation Guide for Exchange 5.5 What is this document for? This document is a Step-by-Step Guide that can be used to quickly install Spam Marshall SpamWall on Exchange
Using LDAP Authentication in a PowerCenter Domain
Using LDAP Authentication in a PowerCenter Domain 2008 Informatica Corporation Overview LDAP user accounts can access PowerCenter applications. To provide LDAP user accounts access to the PowerCenter applications,
Git - Working with Remote Repositories
Git - Working with Remote Repositories Handout New Concepts Working with remote Git repositories including setting up remote repositories, cloning remote repositories, and keeping local repositories in-sync
How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2
DocAve 6 Service Pack 1 Installation Guide Revision C Issued September 2012 1 Table of Contents About the Installation Guide... 4 Submitting Documentation Feedback to AvePoint... 4 Before You Begin...
Oracle Utilities Customer Care and Billing Integration to Oracle Utilities Meter Data Management
Implementation Guide Oracle Utilities Customer Care and Billing Integration to Oracle Utilities Meter Data Management Installation Guide Release 12.1 Media Pack E64681-01 June 2015 Oracle Utilities Customer
Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference
Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise
Ekran System Help File
Ekran System Help File Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating Ekran to version 4.1... 13 Program Structure... 14 Getting Started... 15 Deployment Process... 15
Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x
Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x Configuring Secure Socket Layer (SSL) communication for a standalone environment... 2 Import the Process Server WAS root SSL certificate into
