<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Run Multiple Web Applications in One Apache Tomcat Server	</title>
	<atom:link href="https://www.tecmint.com/run-deploy-multiple-web-applications-instances-tomcat-centos-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/run-deploy-multiple-web-applications-instances-tomcat-centos-ubuntu/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Sun, 19 Jul 2020 07:00:12 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ajaysinh		</title>
		<link>https://www.tecmint.com/run-deploy-multiple-web-applications-instances-tomcat-centos-ubuntu/comment-page-1/#comment-1345595</link>

		<dc:creator><![CDATA[Ajaysinh]]></dc:creator>
		<pubDate>Sun, 19 Jul 2020 07:00:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22860#comment-1345595</guid>

					<description><![CDATA[I configure tomcat multi-domain in a single server but I want particular domain access on a particular port like &lt;code&gt;dev.local.com:7070&lt;/code&gt; and &lt;code&gt;test.local.com:9090&lt;/code&gt; I configured it but still, I can also access &lt;code&gt;dev.local.com:9090&lt;/code&gt; and &lt;code&gt;test.local.com:7070&lt;/code&gt; I want to restrict different port access. Please guide me for that.]]></description>
			<content:encoded><![CDATA[<p>I configure tomcat multi-domain in a single server but I want particular domain access on a particular port like <code>dev.local.com:7070</code> and <code>test.local.com:9090</code> I configured it but still, I can also access <code>dev.local.com:9090</code> and <code>test.local.com:7070</code> I want to restrict different port access. Please guide me for that.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: James Lim		</title>
		<link>https://www.tecmint.com/run-deploy-multiple-web-applications-instances-tomcat-centos-ubuntu/comment-page-1/#comment-1321279</link>

		<dc:creator><![CDATA[James Lim]]></dc:creator>
		<pubDate>Sat, 14 Mar 2020 14:48:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22860#comment-1321279</guid>

					<description><![CDATA[I learned a lot through this article and attempted to build a service based on the step but hit some errors when I restart tomcat.

14-Mar-2020 22:09:42.261 SEVERE [main] org.apache.catalina.core.StandardService.startInternal Failed to start connector [Connector[AJP/1.3-7072]]
	org.apache.catalina.LifecycleException: Protocol handler start failed
		at org.apache.catalina.connector.Connector.startInternal(Connector.java:1057)
		at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
		at org.apache.catalina.core.StandardService.startInternal(StandardService.java:440)
		at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
		at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:766)
		at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
		at org.apache.catalina.startup.Catalina.start(Catalina.java:688)
		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
		at java.lang.reflect.Method.invoke(Method.java:498)
		at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:343)
		at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:474)
	Caused by: java.lang.IllegalArgumentException: The AJP Connector is configured with secretRequired=&quot;true&quot; but the secret attribute is either null or &quot;&quot;. This combination is not valid.
		at org.apache.coyote.ajp.AbstractAjpProtocol.start(AbstractAjpProtocol.java:274)
		at org.apache.catalina.connector.Connector.startInternal(Connector.java:1055)
		... 12 more

Please advise how can I resolve this issue. Thanks]]></description>
			<content:encoded><![CDATA[<p>I learned a lot through this article and attempted to build a service based on the step but hit some errors when I restart tomcat.</p>
<p>14-Mar-2020 22:09:42.261 SEVERE [main] org.apache.catalina.core.StandardService.startInternal Failed to start connector [Connector[AJP/1.3-7072]]<br />
	org.apache.catalina.LifecycleException: Protocol handler start failed<br />
		at org.apache.catalina.connector.Connector.startInternal(Connector.java:1057)<br />
		at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)<br />
		at org.apache.catalina.core.StandardService.startInternal(StandardService.java:440)<br />
		at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)<br />
		at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:766)<br />
		at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)<br />
		at org.apache.catalina.startup.Catalina.start(Catalina.java:688)<br />
		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)<br />
		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)<br />
		at java.lang.reflect.Method.invoke(Method.java:498)<br />
		at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:343)<br />
		at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:474)<br />
	Caused by: java.lang.IllegalArgumentException: The AJP Connector is configured with secretRequired=&#8221;true&#8221; but the secret attribute is either null or &#8220;&#8221;. This combination is not valid.<br />
		at org.apache.coyote.ajp.AbstractAjpProtocol.start(AbstractAjpProtocol.java:274)<br />
		at org.apache.catalina.connector.Connector.startInternal(Connector.java:1055)<br />
		&#8230; 12 more</p>
<p>Please advise how can I resolve this issue. Thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: santosh		</title>
		<link>https://www.tecmint.com/run-deploy-multiple-web-applications-instances-tomcat-centos-ubuntu/comment-page-1/#comment-1307654</link>

		<dc:creator><![CDATA[santosh]]></dc:creator>
		<pubDate>Fri, 20 Dec 2019 05:58:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22860#comment-1307654</guid>

					<description><![CDATA[I was created multiple instances outside web app directory like &lt;strong&gt;webapp1&lt;/strong&gt;, &lt;strong&gt;webapp2&lt;/strong&gt;, &lt;strong&gt;webapp3&lt;/strong&gt; in tomcat 8.5 and configure &lt;strong&gt;server.xml&lt;/strong&gt; as:
&lt;pre&gt;
abc.com
p.com
&lt;/pre&gt;
but I want to start and stop individual application without stopping other using tomcat manager or other way:
&lt;pre&gt;
directory structure--apache tomat8.5
      &#124;-bin
      &#124;-conf
      &#124;-webapp
      &#124;-webapp1
      &#124;-webapp2
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>I was created multiple instances outside web app directory like <strong>webapp1</strong>, <strong>webapp2</strong>, <strong>webapp3</strong> in tomcat 8.5 and configure <strong>server.xml</strong> as:</p>
<pre>
abc.com
p.com
</pre>
<p>but I want to start and stop individual application without stopping other using tomcat manager or other way:</p>
<pre>
directory structure--apache tomat8.5
      |-bin
      |-conf
      |-webapp
      |-webapp1
      |-webapp2
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: noel		</title>
		<link>https://www.tecmint.com/run-deploy-multiple-web-applications-instances-tomcat-centos-ubuntu/comment-page-1/#comment-1221352</link>

		<dc:creator><![CDATA[noel]]></dc:creator>
		<pubDate>Fri, 09 Aug 2019 19:50:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22860#comment-1221352</guid>

					<description><![CDATA[Great article .  How do you stop  webapps2 only?]]></description>
			<content:encoded><![CDATA[<p>Great article .  How do you stop  webapps2 only?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/run-deploy-multiple-web-applications-instances-tomcat-centos-ubuntu/comment-page-1/#comment-1156157</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Wed, 22 May 2019 05:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22860#comment-1156157</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/run-deploy-multiple-web-applications-instances-tomcat-centos-ubuntu/comment-page-1/#comment-1155779&quot;&gt;Mela&lt;/a&gt;.

@Mela,

We don&#039;t have any topic right now on CENTREON, but we will soon publish the article on same..]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/run-deploy-multiple-web-applications-instances-tomcat-centos-ubuntu/comment-page-1/#comment-1155779">Mela</a>.</p>
<p>@Mela,</p>
<p>We don&#8217;t have any topic right now on CENTREON, but we will soon publish the article on same..</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
