<?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 Install FrankenPHP App Server in Ubuntu 24.04	</title>
	<atom:link href="https://www.tecmint.com/install-frankenphp-on-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-frankenphp-on-ubuntu/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Tue, 25 Mar 2025 04:41:18 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2289309</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Tue, 25 Mar 2025 04:41:18 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=58913#comment-2289309</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2287173&quot;&gt;yosua&lt;/a&gt;.

@Yosua,

It looks like the error is due to port 80 being already in use, which is preventing FrankenPHP from starting properly.

Check if any process is using port 80:
&lt;pre&gt;
sudo lsof -i :80
&lt;/pre&gt;
If you see a running process (such as Apache or Nginx), you’ll need to stop or change its port.
&lt;pre&gt;
sudo systemctl stop apache2
OR
sudo systemctl stop nginx
&lt;/pre&gt;
Restart FrankenPHP.
&lt;pre&gt;
sudo frankenphp php-server
&lt;/pre&gt;
If you don’t want to stop services on port 80, you can change the port for FrankenPHP by adding the &lt;code&gt;-p&lt;/code&gt; flag:
&lt;pre&gt;
sudo frankenphp php-server -p 8080
&lt;/pre&gt;
Then, access it using &lt;code&gt;http://localhost:8080&lt;/code&gt;.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2287173">yosua</a>.</p>
<p>@Yosua,</p>
<p>It looks like the error is due to port 80 being already in use, which is preventing FrankenPHP from starting properly.</p>
<p>Check if any process is using port 80:</p>
<pre>
sudo lsof -i :80
</pre>
<p>If you see a running process (such as Apache or Nginx), you’ll need to stop or change its port.</p>
<pre>
sudo systemctl stop apache2
OR
sudo systemctl stop nginx
</pre>
<p>Restart FrankenPHP.</p>
<pre>
sudo frankenphp php-server
</pre>
<p>If you don’t want to stop services on port 80, you can change the port for FrankenPHP by adding the <code>-p</code> flag:</p>
<pre>
sudo frankenphp php-server -p 8080
</pre>
<p>Then, access it using <code>http://localhost:8080</code>.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: yosua		</title>
		<link>https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2287173</link>

		<dc:creator><![CDATA[yosua]]></dc:creator>
		<pubDate>Mon, 17 Mar 2025 13:35:24 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=58913#comment-2287173</guid>

					<description><![CDATA[Hi Ravi, 

After i follow the installation i got the issue when run &lt;code&gt;sudo frankenphp php-server&lt;/code&gt;
&lt;code&gt;
2025/03/17 13:32:04.053 WARN    admin   admin endpoint disabled
2025/03/17 13:32:04.053 WARN    http.auto_https server is listening only on the HTTP port, so no automatic HTTPS will be applied to this server {&quot;server_name&quot;: &quot;php&quot;, &quot;http_port&quot;: 80}
2025/03/17 13:32:04.054 INFO    tls.cache.maintenance   started background certificate maintenance      {&quot;cache&quot;: &quot;0xc000538f00&quot;}
2025/03/17 13:32:04.072 INFO    frankenphp      FrankenPHP started    {&quot;php_version&quot;: &quot;8.4.5&quot;, &quot;num_threads&quot;: 2, &quot;max_threads&quot;: 2}
2025/03/17 13:32:04.073 INFO    frankenphp      FrankenPHP stopped 
Error: loading new config: http app module: start: listening on :80: listen tcp :80: bind: address already in use
&lt;/code&gt;
can you check again? thanks!]]></description>
			<content:encoded><![CDATA[<p>Hi Ravi, </p>
<p>After i follow the installation i got the issue when run <code>sudo frankenphp php-server</code><br />
<code><br />
2025/03/17 13:32:04.053 WARN    admin   admin endpoint disabled<br />
2025/03/17 13:32:04.053 WARN    http.auto_https server is listening only on the HTTP port, so no automatic HTTPS will be applied to this server {"server_name": "php", "http_port": 80}<br />
2025/03/17 13:32:04.054 INFO    tls.cache.maintenance   started background certificate maintenance      {"cache": "0xc000538f00"}<br />
2025/03/17 13:32:04.072 INFO    frankenphp      FrankenPHP started    {"php_version": "8.4.5", "num_threads": 2, "max_threads": 2}<br />
2025/03/17 13:32:04.073 INFO    frankenphp      FrankenPHP stopped<br />
Error: loading new config: http app module: start: listening on :80: listen tcp :80: bind: address already in use<br />
</code><br />
can you check again? thanks!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2258581</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Tue, 07 Jan 2025 08:00:02 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=58913#comment-2258581</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2258416&quot;&gt;Prometee&lt;/a&gt;.

@Promoetee,

You’re right that FrankenPHP can execute PHP CLI files, so technically, installing php-cli may not be required if you&#039;re only using it for command-line operations. However, PHP-FPM is often used for handling web requests in a separate process, providing better performance and scalability, especially for high-traffic websites.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2258416">Prometee</a>.</p>
<p>@Promoetee,</p>
<p>You’re right that FrankenPHP can execute PHP CLI files, so technically, installing php-cli may not be required if you&#8217;re only using it for command-line operations. However, PHP-FPM is often used for handling web requests in a separate process, providing better performance and scalability, especially for high-traffic websites.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Prometee		</title>
		<link>https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2258416</link>

		<dc:creator><![CDATA[Prometee]]></dc:creator>
		<pubDate>Mon, 06 Jan 2025 15:28:05 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=58913#comment-2258416</guid>

					<description><![CDATA[If &lt;code&gt;php-fpm&lt;/code&gt; is not required: &quot;you don’t need to set up separate processes like &lt;strong&gt;PHP-FPM&lt;/strong&gt;&quot;

Why installing &lt;code&gt;php-cli&lt;/code&gt; and &lt;code&gt;php-fpm&lt;/code&gt; packages ?

It seems frankenphp has &lt;code&gt;php-cli&lt;/code&gt; argument to execute cli php files, then installing &lt;code&gt;php-cli&lt;/code&gt; seems to be not required.]]></description>
			<content:encoded><![CDATA[<p>If <code>php-fpm</code> is not required: &#8220;you don’t need to set up separate processes like <strong>PHP-FPM</strong>&#8221;</p>
<p>Why installing <code>php-cli</code> and <code>php-fpm</code> packages ?</p>
<p>It seems frankenphp has <code>php-cli</code> argument to execute cli php files, then installing <code>php-cli</code> seems to be not required.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2252431</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 16 Dec 2024 06:17:38 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=58913#comment-2252431</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2249421&quot;&gt;Pai&lt;/a&gt;.

@pai,

&lt;strong&gt;FrankenPHP&lt;/strong&gt; is still in active development, and while it shows promising features, it’s always best to thoroughly test it in a staging environment before using it in production.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-frankenphp-on-ubuntu/comment-page-1/#comment-2249421">Pai</a>.</p>
<p>@pai,</p>
<p><strong>FrankenPHP</strong> is still in active development, and while it shows promising features, it’s always best to thoroughly test it in a staging environment before using it in production.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
