<?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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Appian on premise automating Appian start and shutdown</title><link>https://community.appian.com/discussions/f/administration/38755/appian-on-premise-automating-appian-start-and-shutdown</link><description>Hi All, 
 
 Is there any way to automate Appian Application (App Server, search Server, data Server and Engines) shutdown and start for Appian on premise? 
 
 Thanks</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Appian on premise automating Appian start and shutdown</title><link>https://community.appian.com/thread/146491?ContentTypeID=1</link><pubDate>Mon, 24 Mar 2025 04:26:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0d7c6cb9-ae25-45b0-8e0d-86e36dce3884</guid><dc:creator>varung120549</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/rishub9520"&gt;rishub9520&lt;/a&gt;&amp;nbsp;,&lt;br /&gt;&lt;br /&gt;Yes you can do it, just write a batch script and your work gets done.&lt;br /&gt;&lt;br /&gt;For a instance, I&amp;#39;ve done the work for you, just change the path and password in the below script and save the script as start.bat/stop.bat&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;For starting the Appian Server, code follows: start.bat&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="batchfile"&gt;@echo off
set APPIAN_HOME=C:\Appian\Appian

echo Starting Appian Engines...
call &amp;quot;%APPIAN_HOME%\services\bin\start.bat&amp;quot; -p &amp;quot;&amp;lt;Your Password&amp;gt;&amp;quot; -s all

echo Starting Data Server...
call &amp;quot;%APPIAN_HOME%\data-server\bin\start.bat&amp;quot;

echo Starting Search Server...
call &amp;quot;%APPIAN_HOME%\search-server\bin\start.bat&amp;quot;

echo Starting App Server (Tomcat)...
call &amp;quot;%APPIAN_HOME%\tomcat\apache-tomcat\bin\start-appserver.bat&amp;quot;

echo Appian has been started successfully.
pause&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;For stopping the Appian Server, code follows: stop.bat&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="batchfile"&gt;@echo off
set APPIAN_HOME=C:\Appian\Appian

echo Stopping Appian Engines...
call &amp;quot;%APPIAN_HOME%\services\bin\stop.bat&amp;quot; -p &amp;quot;&amp;lt;Your Password&amp;gt;&amp;quot; -s all

echo Stopping Data Server...
call &amp;quot;%APPIAN_HOME%\data-server\bin\stop.bat&amp;quot;

echo Stopping Search Server...
call &amp;quot;%APPIAN_HOME%\search-server\bin\stop.bat&amp;quot;

echo Stopping App Server (Tomcat)...
call &amp;quot;%APPIAN_HOME%\tomcat\apache-tomcat\bin\stop-appserver.bat&amp;quot;

echo Appian shutdown completed.
pause&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Note : Run cmd as Administrator and call the files as start.bat or stop.bat.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve ran the script in my pc, its working fine for On-premise server&lt;br /&gt;&lt;br /&gt;Check the below screenshots:&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/12/pastedimage1742790172936v1.png" alt=" " /&gt;&amp;nbsp;&amp;nbsp;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/12/pastedimage1742790324211v2.png" alt=" " /&gt;&lt;br /&gt;&lt;br /&gt;Hope this helps you!!!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Appian on premise automating Appian start and shutdown</title><link>https://community.appian.com/thread/146465?ContentTypeID=1</link><pubDate>Sat, 22 Mar 2025 18:13:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d350fb07-f502-4a76-817f-880d68218a75</guid><dc:creator>Mathieu Drouin</dc:creator><description>&lt;p&gt;Yes, I&amp;#39;ve seen it done before. Basically create a shell script with the commands and the ability to check the status of the&amp;nbsp;engines start script. You just schedule that script via cron and there you go. Perhaps ChatGPT could help&amp;nbsp;you generate a first version of the script.&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://docs.appian.com/suite/help/25.1/Starting_and_Stopping_Appian.html"&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Appian on premise automating Appian start and shutdown</title><link>https://community.appian.com/thread/146463?ContentTypeID=1</link><pubDate>Sat, 22 Mar 2025 18:02:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8d4248c0-e637-4b73-9116-8e5087008d84</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;I am sure there is, depending on the type of setup and OS.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>