<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>KB-1157 How to reset the analytics engines for self-managed installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>KB-1157 How to reset the analytics engines for self-managed installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian</link><pubDate>Wed, 01 Apr 2026 16:43:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>pauline.delacruz</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Current Revision posted to Appian Knowledge Base by pauline.delacruz on 4/1/2026 4:43:59 PM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;h2&gt;Purpose&lt;/h2&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in self-managed installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt;&amp;nbsp;These steps should only be performed when advised to do so by Appian Technical Support. They should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h2&gt;Instructions&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt;&amp;nbsp;For the most up-to-date steps, always refer to the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a class="external-link" href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html" rel="nofollow noopener noreferrer" target="_blank"&gt;official Appian documentation&lt;/a&gt;. The steps below are provided as a reference for common deployment types.&lt;/p&gt;
&lt;h3&gt;Appian on Kubernetes (AoK)&lt;/h3&gt;
&lt;p&gt;Resetting the analytics engines on AoK requires a number of extra steps.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Shut down the webapp cluster by scaling its statefulset to 0.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;kubectl -n &amp;lt;namespace&amp;gt; scale statefulset appian-webapp --replicas=0&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Checkpoint the execution and process-design engines.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;kubectl -n &amp;lt;namespace&amp;gt; exec -i --tty appian-service-manager-&amp;lt;engine&amp;gt;-0 -- ./serviceManagerScriptWrapper.sh services/bin/checkpoint.sh -s execution,process-design -w&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Scale down the execution engine statefulset to 0.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;kubectl -n &amp;lt;namespace&amp;gt; scale statefulset appian-service-manager-execution&amp;lt;XX&amp;gt; --replicas=0&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;(If the site is HA)&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;Scale down the analytics engine statefulset to 1.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;kubectl -n &amp;lt;namespace&amp;gt; scale statefulset appian-service-manager-analytics&amp;lt;XX&amp;gt; --replicas=1&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Scale down the process-design statefulset to 0.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;kubectl -n &amp;lt;namespace&amp;gt; scale statefulset appian-service-manager-process-design --replicas=0&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Stop the analytics engine with the OOTB script from within each analytics engine pod.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;kubectl -n &amp;lt;namespace&amp;gt; exec -i --tty appian-service-manager-analytics&amp;lt;XX&amp;gt;-0 -- ./serviceManagerScriptWrapper.sh services/bin/stop.sh -s analytics&amp;lt;XX&amp;gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Reset the analytics engine with the OOTB script from within each analytics engine pod.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;kubectl -n &amp;lt;namespace&amp;gt; exec -i --tty appian-service-manager-analytics&amp;lt;XX&amp;gt;-0 -- ./serviceManagerScriptWrapper.sh services/bin/resetAnalytics.sh -s analytics&amp;lt;XX&amp;gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Scale all statefulsets back up to their desired number.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;Classic Linux&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Stop all app servers.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;&amp;lt;APPIAN_HOME&amp;gt;/tomcat/apache-tomcat/bin/stop-appserver.sh&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Stop the execution, analytics, and process-design engines.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;&amp;lt;APPIAN_HOME&amp;gt;/services/bin/stop.sh -p &amp;lt;SM_PASSWORD&amp;gt; -s analytics,execution,process-design&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Reset the analytics engine with the OOTB script.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;&amp;lt;APPIAN_HOME&amp;gt;/services/bin/resetAnalytics.sh -p &amp;lt;SM_PASSWORD&amp;gt; -s analytics&amp;lt;XX&amp;gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Start the engines back up.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;&amp;lt;APPIAN_HOME&amp;gt;/services/bin/start.sh -s analytics,execution,process-design&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Start the app server.
&lt;div class="content-scrollable-wrapper content-scrollable-wrapper-scrolled"&gt;
&lt;pre&gt;&amp;lt;APPIAN_HOME&amp;gt;/tomcat/apache-tomcat/bin/start-appserver.sh&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of self-managed installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: April 2026&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: self-managed, engines, infrastructure&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for self-managed installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/16</link><pubDate>Tue, 29 Sep 2020 03:17:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 16 posted to Appian Knowledge Base by Parmida Borhani on 9/29/2020 3:17:00 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;h2&gt;Purpose&lt;/h2&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in self-managed installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support. They should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h2&gt;Instructions&lt;/h2&gt;
&lt;h3&gt;18.2.70.0 and later&amp;nbsp;&lt;/h3&gt;
Follow the steps exactly as documented&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a class="external-link" href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html" rel="nofollow noopener noreferrer" target="_blank"&gt;here&lt;/a&gt;.
&lt;h3&gt;17.3 - 18.2.69.0&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start&amp;nbsp;all engines &lt;strong&gt;except&lt;/strong&gt; for Execution and Analytics.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines have come up.&lt;/li&gt;
&lt;li&gt;Start the Analytics engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines&amp;nbsp;have come up.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Start the Execution engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;again&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;17.2 and earlier&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw* rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw* del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;Start all engines&amp;nbsp;&lt;strong&gt;except&lt;/strong&gt; &lt;strong&gt;for Execution and Analytics&lt;/strong&gt;. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt; commands specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/&amp;lt;ENGINE_NAME&amp;gt;&lt;/code&gt;&amp;nbsp;(make sure you exclude running the scripts from the&amp;nbsp;&lt;code&gt;exec&lt;/code&gt; and &lt;code&gt;analytics&lt;/code&gt;&amp;nbsp;folders for this step).&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all &lt;strong&gt;Analytics&lt;/strong&gt; engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/analytics/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all&amp;nbsp;&lt;strong&gt;Execution&amp;nbsp;&lt;/strong&gt;engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/exec/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize on the machine.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines using the&amp;nbsp;&lt;code&gt;checkpoint&lt;/code&gt; script, located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of self-managed installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: October 2019&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: self-managed, engines, infrastructure&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for self-managed installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/15</link><pubDate>Fri, 25 Oct 2019 18:48:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Rebecca Jonas</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 15 posted to Appian Knowledge Base by Rebecca Jonas on 10/25/2019 6:48:00 PM&lt;br /&gt;
&lt;div class="row content_container"&gt; &lt;h2&gt;Purpose&lt;/h2&gt; &lt;p&gt;This article outlines the process to reset the Analytics Engines in self-managed installations of Appian.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support. They should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt; &lt;h2&gt;Instructions&lt;/h2&gt; &lt;h3&gt;18.2.70.0 and later&amp;nbsp;&lt;/h3&gt; Follow the steps exactly as documented&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a class="external-link" href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html" rel="nofollow noopener noreferrer" target="_blank"&gt;here&lt;/a&gt;. &lt;h3&gt;17.3 - 18.2.69.0&lt;/h3&gt; &lt;ol&gt; &lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt; &lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt; &lt;li&gt;Start&amp;nbsp;all engines &lt;strong&gt;except&lt;/strong&gt; for Execution and Analytics.&lt;/li&gt; &lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines have come up.&lt;/li&gt; &lt;li&gt;Start the Analytics engines.&lt;/li&gt; &lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines&amp;nbsp;have come up.&lt;/li&gt; &lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt; &lt;li&gt;Start the Execution engines.&lt;/li&gt; &lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;again&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt; &lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt; &lt;li&gt;Checkpoint all engines.&lt;/li&gt; &lt;li&gt;Start the search server.&lt;/li&gt; &lt;li&gt;Start the application server.&lt;/li&gt; &lt;/ol&gt; &lt;h3&gt;17.2 and earlier&lt;/h3&gt; &lt;ol&gt; &lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt; &lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt; &lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw* rm pa*.kdb&lt;/pre&gt; &lt;br /&gt;Example Windows commands:&lt;br /&gt; &lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw* del pa*.kdb&lt;/pre&gt; &lt;/li&gt; &lt;li&gt;Start all engines&amp;nbsp;&lt;strong&gt;except&lt;/strong&gt; &lt;strong&gt;for Execution and Analytics&lt;/strong&gt;. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt; commands specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/&amp;lt;ENGINE_NAME&amp;gt;&lt;/code&gt;&amp;nbsp;(make sure you exclude running the scripts from the&amp;nbsp;&lt;code&gt;exec&lt;/code&gt; and &lt;code&gt;analytics&lt;/code&gt;&amp;nbsp;folders for this step).&lt;/li&gt; &lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt; &lt;li&gt;Start all &lt;strong&gt;Analytics&lt;/strong&gt; engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/analytics/&lt;/code&gt;.&lt;/li&gt; &lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt; &lt;li&gt;Start all&amp;nbsp;&lt;strong&gt;Execution&amp;nbsp;&lt;/strong&gt;engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/exec/&lt;/code&gt;.&lt;/li&gt; &lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt; &lt;li&gt;Wait for CPU usage to stabilize on the machine.&lt;/li&gt; &lt;li&gt;Checkpoint all engines using the&amp;nbsp;&lt;code&gt;checkpoint&lt;/code&gt; script, located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts&lt;/code&gt;.&lt;/li&gt; &lt;li&gt;Start the search server.&lt;/li&gt; &lt;li&gt;Start the application server.&lt;/li&gt; &lt;/ol&gt; &lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt; &lt;p&gt;This article applies to all versions of self-managed installations of Appian.&lt;/p&gt; &lt;/div&gt; &lt;p&gt;Last Reviewed: October 2019&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: engines, infrastructure&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/14</link><pubDate>Fri, 21 Jun 2019 04:09:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 14 posted to Appian Knowledge Base by Parmida Borhani on 6/21/2019 4:09:53 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;h2&gt;Purpose&lt;/h2&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support. They should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h2&gt;Instructions&lt;/h2&gt;
&lt;h3&gt;18.2.70 and later&amp;nbsp;&lt;/h3&gt;
Follow the steps exactly as documented&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a class="external-link" href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html" rel="nofollow noopener noreferrer" target="_blank"&gt;here&lt;/a&gt;.
&lt;h3&gt;17.3 - 18.2.0.69&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start&amp;nbsp;all engines &lt;strong&gt;except&lt;/strong&gt; for Execution and Analytics.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines have come up.&lt;/li&gt;
&lt;li&gt;Start the Analytics engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines&amp;nbsp;have come up.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Start the Execution engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;again&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;17.2 and earlier&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;Start all engines&amp;nbsp;&lt;strong&gt;except&lt;/strong&gt; &lt;strong&gt;for Execution and Analytics&lt;/strong&gt;. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt; commands specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/&amp;lt;ENGINE_NAME&amp;gt;&lt;/code&gt;&amp;nbsp;(make sure you exclude running the scripts from the&amp;nbsp;&lt;code&gt;exec&lt;/code&gt; and &lt;code&gt;analytics&lt;/code&gt;&amp;nbsp;folders for this step).&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all &lt;strong&gt;Analytics&lt;/strong&gt; engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/analytics/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all&amp;nbsp;&lt;strong&gt;Execution&amp;nbsp;&lt;/strong&gt;engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/exec/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize on the machine.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines using the&amp;nbsp;&lt;code&gt;checkpoint&lt;/code&gt; script, located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: June 2019&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: engines, infrastructure&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/13</link><pubDate>Fri, 21 Jun 2019 04:09:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 13 posted to Appian Knowledge Base by Parmida Borhani on 6/21/2019 4:09:18 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;h2&gt;Purpose&lt;/h2&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support. They should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h2&gt;Instructions&lt;/h2&gt;
&lt;h3&gt;&lt;strong&gt;18.2.70 and later&amp;nbsp;&lt;/strong&gt;&lt;/h3&gt;
Follow the steps exactly as documented&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a class="external-link" href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html" rel="nofollow noopener noreferrer" target="_blank"&gt;here&lt;/a&gt;.
&lt;h3&gt;&lt;strong&gt;17.3 - 18.2.0.69&lt;/strong&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start&amp;nbsp;all engines &lt;strong&gt;except&lt;/strong&gt; for Execution and Analytics.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines have come up.&lt;/li&gt;
&lt;li&gt;Start the Analytics engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines&amp;nbsp;have come up.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Start the Execution engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;again&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;&lt;strong&gt;17.2 and earlier&lt;/strong&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;Start all engines&amp;nbsp;&lt;strong&gt;except&lt;/strong&gt; &lt;strong&gt;for Execution and Analytics&lt;/strong&gt;. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt; commands specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/&amp;lt;ENGINE_NAME&amp;gt;&lt;/code&gt;&amp;nbsp;(make sure you exclude running the scripts from the&amp;nbsp;&lt;code&gt;exec&lt;/code&gt; and &lt;code&gt;analytics&lt;/code&gt;&amp;nbsp;folders for this step).&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all &lt;strong&gt;Analytics&lt;/strong&gt; engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/analytics/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all&amp;nbsp;&lt;strong&gt;Execution&amp;nbsp;&lt;/strong&gt;engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/exec/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize on the machine.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines using the&amp;nbsp;&lt;code&gt;checkpoint&lt;/code&gt; script, located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: June 2019&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: engines, infrastructure&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/12</link><pubDate>Fri, 21 Jun 2019 04:08:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 12 posted to Appian Knowledge Base by Parmida Borhani on 6/21/2019 4:08:52 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;h2&gt;Purpose&lt;/h2&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support. They should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;Instructions&lt;/strong&gt;&lt;/h2&gt;
&lt;h3&gt;&lt;strong&gt;18.2.70 and later&amp;nbsp;&lt;/strong&gt;&lt;/h3&gt;
Follow the steps exactly as documented&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a class="external-link" href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html" rel="nofollow noopener noreferrer" target="_blank"&gt;here&lt;/a&gt;.
&lt;h3&gt;&lt;strong&gt;17.3 - 18.2.0.69&lt;/strong&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start&amp;nbsp;all engines &lt;strong&gt;except&lt;/strong&gt; for Execution and Analytics.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines have come up.&lt;/li&gt;
&lt;li&gt;Start the Analytics engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines&amp;nbsp;have come up.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Start the Execution engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;again&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;&lt;strong&gt;17.2 and earlier&lt;/strong&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;Start all engines&amp;nbsp;&lt;strong&gt;except&lt;/strong&gt; &lt;strong&gt;for Execution and Analytics&lt;/strong&gt;. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt; commands specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/&amp;lt;ENGINE_NAME&amp;gt;&lt;/code&gt;&amp;nbsp;(make sure you exclude running the scripts from the&amp;nbsp;&lt;code&gt;exec&lt;/code&gt; and &lt;code&gt;analytics&lt;/code&gt;&amp;nbsp;folders for this step).&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all &lt;strong&gt;Analytics&lt;/strong&gt; engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/analytics/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all&amp;nbsp;&lt;strong&gt;Execution&amp;nbsp;&lt;/strong&gt;engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/exec/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize on the machine.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines using the&amp;nbsp;&lt;code&gt;checkpoint&lt;/code&gt; script, located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: June 2019&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: engines, infrastructure&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/11</link><pubDate>Mon, 30 Jul 2018 04:12:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 11 posted to Appian Knowledge Base by Parmida Borhani on 7/30/2018 4:12:32 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h4&gt;For Appian versions 17.3 and later, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start&amp;nbsp;all engines &lt;strong&gt;except&lt;/strong&gt; for Execution and Analytics.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines have come up.&lt;/li&gt;
&lt;li&gt;Start the Analytics engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines&amp;nbsp;have come up.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Start the Execution engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;again&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;For Appian versions 17.2 and earlier, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;Start all engines&amp;nbsp;&lt;strong&gt;except&lt;/strong&gt; &lt;strong&gt;for Execution and Analytics&lt;/strong&gt;. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt; commands specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/&amp;lt;ENGINE_NAME&amp;gt;&lt;/code&gt;&amp;nbsp;(make sure you exclude running the scripts from the&amp;nbsp;&lt;code&gt;exec&lt;/code&gt; and &lt;code&gt;analytics&lt;/code&gt;&amp;nbsp;folders for this step).&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all &lt;strong&gt;Analytics&lt;/strong&gt; engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/analytics/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all&amp;nbsp;&lt;strong&gt;Execution&amp;nbsp;&lt;/strong&gt;engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/exec/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize on the machine.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines using the&amp;nbsp;&lt;code&gt;checkpoint&lt;/code&gt; script, located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: engines, infrastructure&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/10</link><pubDate>Mon, 26 Feb 2018 11:46:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Nick Vigilante</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 10 posted to Appian Knowledge Base by Nick Vigilante on 2/26/2018 11:46:04 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h4&gt;For Appian versions 17.3 and later, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start&amp;nbsp;all engines &lt;strong&gt;except&lt;/strong&gt; for Execution and Analytics.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines have come up.&lt;/li&gt;
&lt;li&gt;Start the Analytics engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines&amp;nbsp;have come up.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Start the Execution engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;again&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;For Appian versions 17.2 and earlier, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;Start all engines&amp;nbsp;&lt;strong&gt;except&lt;/strong&gt; &lt;strong&gt;for Execution and Analytics&lt;/strong&gt;. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt; commands specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/&amp;lt;ENGINE_NAME&amp;gt;&lt;/code&gt;&amp;nbsp;(make sure you exclude running the scripts from the&amp;nbsp;&lt;code&gt;exec&lt;/code&gt; and &lt;code&gt;analytics&lt;/code&gt;&amp;nbsp;folders for this step).&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all &lt;strong&gt;Analytics&lt;/strong&gt; engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/analytics/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all&amp;nbsp;&lt;strong&gt;Execution&amp;nbsp;&lt;/strong&gt;engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/exec/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize on the machine.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines using the&amp;nbsp;&lt;code&gt;checkpoint&lt;/code&gt; script, located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: engines&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/9</link><pubDate>Mon, 26 Feb 2018 10:53:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Nick Vigilante</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 9 posted to Appian Knowledge Base by Nick Vigilante on 2/26/2018 10:53:35 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h4&gt;For Appian versions 17.3 and later, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start&amp;nbsp;all engines &lt;strong&gt;except&lt;/strong&gt; for Execution and Analytics.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines have come up.&lt;/li&gt;
&lt;li&gt;Start the Analytics engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines&amp;nbsp;have come up.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Start the Execution engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;again&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;For Appian versions 17.2 and earlier, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;In &lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics&lt;/code&gt;, copy the file named &lt;strong&gt;pa.kdb&lt;/strong&gt; into each engine/gateway directory (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gwX&lt;/code&gt;) and rename each copy to &lt;strong&gt;pa1.kdb&lt;/strong&gt;. Do not rename the original file.&lt;/li&gt;
&lt;li&gt;Start all engines&amp;nbsp;&lt;strong&gt;except&lt;/strong&gt; &lt;strong&gt;for Execution and Analytics&lt;/strong&gt;. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt; commands specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/&amp;lt;ENGINE_NAME&amp;gt;&lt;/code&gt;&amp;nbsp;(make sure you exclude running the scripts from the&amp;nbsp;&lt;code&gt;exec&lt;/code&gt; and &lt;code&gt;analytics&lt;/code&gt;&amp;nbsp;folders for this step).&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all &lt;strong&gt;Analytics&lt;/strong&gt; engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/analytics/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start all&amp;nbsp;&lt;strong&gt;Execution&amp;nbsp;&lt;/strong&gt;engines only. This can be done by running the&amp;nbsp;&lt;code&gt;&lt;/code&gt;&lt;code&gt;start-gw&lt;/code&gt;&amp;nbsp;command specific to your operating system located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts/exec/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run&amp;nbsp;&lt;code&gt;checkengine.(bat|sh)&lt;/code&gt;&amp;nbsp;to ensure all the engines have a status of&amp;nbsp;&lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize on the machine.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines using the&amp;nbsp;&lt;code&gt;checkpoint&lt;/code&gt; script, located in&amp;nbsp;&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/_scripts&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: engines&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/8</link><pubDate>Wed, 31 Jan 2018 00:14:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 8 posted to Appian Knowledge Base by Parmida Borhani on 1/31/2018 12:14:51 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h4&gt;For Appian versions 17.3 and later, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start&amp;nbsp;all engines &lt;strong&gt;except&lt;/strong&gt; for Execution and Analytics.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines have come up.&lt;/li&gt;
&lt;li&gt;Start the Analytics engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines&amp;nbsp;have come up.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Start the Execution engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;again&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;For Appian versions 17.2 and earlier, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;In &lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics&lt;/code&gt;, copy the file named &lt;strong&gt;pa.kdb&lt;/strong&gt; into each engine/gateway directory (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gwX&lt;/code&gt;) and rename each copy to &lt;strong&gt;pa1.kdb&lt;/strong&gt;. Do not rename the original file.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed:&amp;nbsp;January 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: engines&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/7</link><pubDate>Wed, 31 Jan 2018 00:13:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 7 posted to Appian Knowledge Base by Parmida Borhani on 1/31/2018 12:13:34 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h4&gt;For Appian versions 17.3 and later, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start&amp;nbsp;all engines &lt;strong&gt;except&lt;/strong&gt; for Execution and Analytics.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines have come up.&lt;/li&gt;
&lt;li&gt;Start the Analytics engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure&amp;nbsp;these engines&amp;nbsp;have come up.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Start the Execution engines.&lt;/li&gt;
&lt;li&gt;Run the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;again&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Wait for CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Checkpoint all engines.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;For Appian versions 17.2 and earlier, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;In &lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics&lt;/code&gt;, copy the file named &lt;strong&gt;pa.kdb&lt;/strong&gt; into each engine/gateway directory (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gwX&lt;/code&gt;) and rename each copy to &lt;strong&gt;pa1.kdb&lt;/strong&gt;. Do not rename the original file.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: November 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: engines&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/6</link><pubDate>Tue, 05 Dec 2017 22:46:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 6 posted to Appian Knowledge Base by Parmida Borhani on 12/5/2017 10:46:40 PM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h4&gt;For Appian versions 17.3 and above, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;For Appian versions 17.2 and prior, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;In &lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics&lt;/code&gt;, copy the file named &lt;strong&gt;pa.kdb&lt;/strong&gt; into each engine/gateway directory (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gwX&lt;/code&gt;) and rename each copy to &lt;strong&gt;pa1.kdb&lt;/strong&gt;. Do not rename the original file.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: November 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: administration, engines&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/5</link><pubDate>Tue, 05 Dec 2017 08:56:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Nick Vigilante</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 5 posted to Appian Knowledge Base by Nick Vigilante on 12/5/2017 8:56:31 AM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed on the process analytics engine. These steps are not supported on any other engine.&lt;/p&gt;
&lt;h4&gt;For Appian versions 17.3 and above, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;For Appian versions 17.2 and prior, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;In &lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics&lt;/code&gt;, copy the file named &lt;strong&gt;pa.kdb&lt;/strong&gt; into each engine/gateway directory (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gwX&lt;/code&gt;) and rename each copy to &lt;strong&gt;pa1.kdb&lt;/strong&gt;. Do not rename the original file.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: November 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: administration, engines&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/4</link><pubDate>Wed, 15 Nov 2017 17:24:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 4 posted to Appian Knowledge Base by Parmida Borhani on 11/15/2017 5:24:11 PM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;h4&gt;For Appian versions 17.3 and above, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/latest/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;For Appian versions 17.2 and prior, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/latest/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;In &lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics&lt;/code&gt;, copy the file named &lt;strong&gt;pa.kdb&lt;/strong&gt; into each engine/gateway directory (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gwX&lt;/code&gt;) and rename each copy to &lt;strong&gt;pa1.kdb&lt;/strong&gt;. Do not rename the original file.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: November 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: administration, engines&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/3</link><pubDate>Wed, 15 Nov 2017 17:23:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 3 posted to Appian Knowledge Base by Parmida Borhani on 11/15/2017 5:23:01 PM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;h4&gt;For Appian version 17.3 and above, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/17.3/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/17.3/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/17.3/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;For Appian version 17.2 and prior, follow the steps below.&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.2/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;In &lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics&lt;/code&gt;, copy the file named &lt;strong&gt;pa.kdb&lt;/strong&gt; into each engine/gateway directory (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gwX&lt;/code&gt;) and rename each copy to &lt;strong&gt;pa1.kdb&lt;/strong&gt;. Do not rename the original file.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: November 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: administration, engines&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/2</link><pubDate>Wed, 15 Nov 2017 17:22:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 2 posted to Appian Knowledge Base by Parmida Borhani on 11/15/2017 5:22:09 PM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;p&gt;For Appian version 17.3 and above, follow the steps below.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. &lt;a href="https://docs.appian.com/suite/help/17.3/Starting_and_Stopping_Appian.html"&gt;Refer to Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/17.3/ResetAnalytics_Script.html"&gt;Reset Analytics Script&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run the &lt;a href="https://docs.appian.com/suite/help/17.3/Status_Script.html"&gt;Status Script&lt;/a&gt;&amp;nbsp;to ensure all the engines are okay.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;For Appian version 17.2 and prior, follow the steps below.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.1/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;In &lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics&lt;/code&gt;, copy the file named &lt;strong&gt;pa.kdb&lt;/strong&gt; into each engine/gateway directory (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gwX&lt;/code&gt;) and rename each copy to &lt;strong&gt;pa1.kdb&lt;/strong&gt;. Do not rename the original file.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed: November 2017&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: administration, engines&lt;/div&gt;
</description></item><item><title>KB-1157 How to reset the analytics engines for on-premise installations of Appian</title><link>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian/revision/1</link><pubDate>Tue, 28 Feb 2017 19:50:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:715fa449-6f10-469e-b6df-b3f710610ab4</guid><dc:creator>Nick Vigilante</dc:creator><comments>https://community.appian.com/support/w/kb/374/kb-1157-how-to-reset-the-analytics-engines-for-self-managed-installations-of-appian#comments</comments><description>Revision 1 posted to Appian Knowledge Base by Nick Vigilante on 2/28/2017 7:50:33 PM&lt;br /&gt;
&lt;div class="row content_container"&gt;
&lt;p&gt;This article outlines the process to reset the Analytics Engines in on-premise installations of Appian.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; These steps should only be performed when advised to do so by Appian Technical Support.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Shut down Appian completely, including application server, search server, and the engines. Refer to &lt;a href="https://docs.appian.com/suite/help/17.1/Starting_and_Stopping_Appian.html"&gt;Starting and Stopping Appian&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;Delete all files ending in .kdb in the Analytics Engine gateway directories (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gw1&lt;/code&gt;).&lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you have additional gateway directories (&lt;code&gt;gwX&lt;/code&gt;) with engine database files (&lt;strong&gt;pa*.kdb&lt;/strong&gt;) in them, you need to delete those files as well for each analytics engine.&lt;br /&gt;&lt;br /&gt;Example Unix commands:&lt;br /&gt;&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00**/gw*
rm pa*.kdb&lt;/pre&gt;
&lt;br /&gt;Example Windows commands:&lt;br /&gt;&lt;br /&gt;
&lt;pre&gt;cd &amp;lt;APPIAN_HOME&amp;gt;\server\process\analytics\00**\gw*
del pa*.kdb&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;In &lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics&lt;/code&gt;, copy the file named &lt;strong&gt;pa.kdb&lt;/strong&gt; into each engine/gateway directory (&lt;code&gt;&amp;lt;APPIAN_HOME&amp;gt;/server/process/analytics/00XX/gwX&lt;/code&gt;) and rename each copy to &lt;strong&gt;pa1.kdb&lt;/strong&gt;. Do not rename the original file.&lt;/li&gt;
&lt;li&gt;Start the Appian engines. Wait for the CPU usage to stabilize.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;checkengine.(bat|sh)&lt;/code&gt; to ensure all the engines have a status of &lt;code&gt;OKAY&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Start the search server.&lt;/li&gt;
&lt;li&gt;Start the application server.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="affected-versions"&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to all versions of on-premise installations of Appian.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Last Reviewed:&amp;nbsp;February 2017&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: administration, engines&lt;/div&gt;
</description></item></channel></rss>