<?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 Lighttpd with PHP, MariaDB and PhpMyAdmin in Ubuntu	</title>
	<atom:link href="https://www.tecmint.com/install-lighttpd-in-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-lighttpd-in-ubuntu/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Tue, 05 Jan 2021 08:38:59 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Frank		</title>
		<link>https://www.tecmint.com/install-lighttpd-in-ubuntu/comment-page-1/#comment-1409258</link>

		<dc:creator><![CDATA[Frank]]></dc:creator>
		<pubDate>Tue, 05 Jan 2021 08:38:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=8333#comment-1409258</guid>

					<description><![CDATA[I had to alter the very last command line. Otherwise, I&#039;d end up with &quot;404&quot;.

from
&lt;pre&gt;
$ sudo ln -s /usr/share/phpmyadmin/ /var/www
&lt;/pre&gt;
to
&lt;pre&gt;
$ sudo ln -s /usr/share/phpmyadmin/ /var/www/html/
&lt;/pre&gt;
The rest of the tutorial worked fine for me on my Raspberry Pi]]></description>
			<content:encoded><![CDATA[<p>I had to alter the very last command line. Otherwise, I&#8217;d end up with &#8220;404&#8221;.</p>
<p>from</p>
<pre>
$ sudo ln -s /usr/share/phpmyadmin/ /var/www
</pre>
<p>to</p>
<pre>
$ sudo ln -s /usr/share/phpmyadmin/ /var/www/html/
</pre>
<p>The rest of the tutorial worked fine for me on my Raspberry Pi</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: geni		</title>
		<link>https://www.tecmint.com/install-lighttpd-in-ubuntu/comment-page-1/#comment-1358956</link>

		<dc:creator><![CDATA[geni]]></dc:creator>
		<pubDate>Mon, 31 Aug 2020 09:29:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=8333#comment-1358956</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-lighttpd-in-ubuntu/comment-page-1/#comment-1358737&quot;&gt;geni&lt;/a&gt;.

This is an add on to my reported 404 issues.

After some tries, I have found out, that when accessing via ssh there is access to maria DB, but not when accessing locally
-
1st via ssh (access to mariadb):
&lt;pre&gt;
odroid@odroid:~$ sudo mysqladmin -u root -p version
[sudo] Passwort für odroid: 
Enter password: 
mysqladmin  Ver 9.1 Distrib 10.3.22-MariaDB, for debian-linux-gnu on aarch64
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Server version		10.3.22-MariaDB-1ubuntu1
Protocol version	10
Connection		Localhost via UNIX socket
UNIX socket		/var/run/mysqld/mysqld.sock
Uptime:			15 hours 18 min 5 sec

Threads: 7  Questions: 66  Slow queries: 0  Opens: 32  Flush tables: 1  Open tables: 26  Queries per second avg: 0.001
&lt;/pre&gt;
2nd locally (no access to mariadb):
&lt;pre&gt;
odroid@odroid:~$ sudo mysqladmin -u -root -p version
[sudo] Passwort für odroid: 
Enter password: 
mysqladmin: connect to server at &#039;localhost&#039; failed
error: &#039;Access denied for user &#039;-root&#039;@&#039;localhost&#039; (using password: YES)&#039;
&lt;/pre&gt;
The often reported issue, that Lighttpd is not running dependent on a parallel installed and running apache server is really annoying.

A running lighttpd can be easily checked out with:
&lt;pre&gt;
$ sudo systemctl status lighttpd
...a parallel running apache2 server has cost me hours!
&lt;/pre&gt;
Dear Ravi,
Your introduction is very very very good!
Big ThanX
ernst]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-lighttpd-in-ubuntu/comment-page-1/#comment-1358737">geni</a>.</p>
<p>This is an add on to my reported 404 issues.</p>
<p>After some tries, I have found out, that when accessing via ssh there is access to maria DB, but not when accessing locally<br />
&#8211;<br />
1st via ssh (access to mariadb):</p>
<pre>
odroid@odroid:~$ sudo mysqladmin -u root -p version
[sudo] Passwort für odroid: 
Enter password: 
mysqladmin  Ver 9.1 Distrib 10.3.22-MariaDB, for debian-linux-gnu on aarch64
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Server version		10.3.22-MariaDB-1ubuntu1
Protocol version	10
Connection		Localhost via UNIX socket
UNIX socket		/var/run/mysqld/mysqld.sock
Uptime:			15 hours 18 min 5 sec

Threads: 7  Questions: 66  Slow queries: 0  Opens: 32  Flush tables: 1  Open tables: 26  Queries per second avg: 0.001
</pre>
<p>2nd locally (no access to mariadb):</p>
<pre>
odroid@odroid:~$ sudo mysqladmin -u -root -p version
[sudo] Passwort für odroid: 
Enter password: 
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user '-root'@'localhost' (using password: YES)'
</pre>
<p>The often reported issue, that Lighttpd is not running dependent on a parallel installed and running apache server is really annoying.</p>
<p>A running lighttpd can be easily checked out with:</p>
<pre>
$ sudo systemctl status lighttpd
...a parallel running apache2 server has cost me hours!
</pre>
<p>Dear Ravi,<br />
Your introduction is very very very good!<br />
Big ThanX<br />
ernst</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: geni		</title>
		<link>https://www.tecmint.com/install-lighttpd-in-ubuntu/comment-page-1/#comment-1358737</link>

		<dc:creator><![CDATA[geni]]></dc:creator>
		<pubDate>Sun, 30 Aug 2020 16:31:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=8333#comment-1358737</guid>

					<description><![CDATA[Dear All,

Seems I have the same 404 issues.

What I have found out: could it have something to do with the access rights? Something that you have no access to the link?

/www has rwx rwx r-x owner: www-data, group: www-data, oct 40775

/www/~phpmyadmin has: rwx r-x r-x owner: root, group: root, oct 40775
usr/share/phpmyadmin has rwx rwx r-x owner root, group root, oct 40775

regards
ernst]]></description>
			<content:encoded><![CDATA[<p>Dear All,</p>
<p>Seems I have the same 404 issues.</p>
<p>What I have found out: could it have something to do with the access rights? Something that you have no access to the link?</p>
<p>/www has rwx rwx r-x owner: www-data, group: www-data, oct 40775</p>
<p>/www/~phpmyadmin has: rwx r-x r-x owner: root, group: root, oct 40775<br />
usr/share/phpmyadmin has rwx rwx r-x owner root, group root, oct 40775</p>
<p>regards<br />
ernst</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-lighttpd-in-ubuntu/comment-page-1/#comment-1349723</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 03 Aug 2020 04:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=8333#comment-1349723</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-lighttpd-in-ubuntu/comment-page-1/#comment-1349381&quot;&gt;Bepo Smith&lt;/a&gt;.

@Bepo,

Try to remove &lt;strong&gt;phpmyadmin&lt;/strong&gt; completely, and re-install it and during the web server configuration select &#039;&lt;strong&gt;lighttpd&lt;/strong&gt;&#039;. See section: Installing PhpMyAdmin in Ubuntu in the article.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-lighttpd-in-ubuntu/comment-page-1/#comment-1349381">Bepo Smith</a>.</p>
<p>@Bepo,</p>
<p>Try to remove <strong>phpmyadmin</strong> completely, and re-install it and during the web server configuration select &#8216;<strong>lighttpd</strong>&#8216;. See section: Installing PhpMyAdmin in Ubuntu in the article.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bepo Smith		</title>
		<link>https://www.tecmint.com/install-lighttpd-in-ubuntu/comment-page-1/#comment-1349381</link>

		<dc:creator><![CDATA[Bepo Smith]]></dc:creator>
		<pubDate>Sat, 01 Aug 2020 11:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=8333#comment-1349381</guid>

					<description><![CDATA[Hi Ravi,

I have removed apache2 and put a renewing installation halted.

So now I keep having the lighttpd placeholder website.

But the issue with the error &quot;404 Not Found&quot; is still there.

Why is this so hard to get? I really would like to test lighttpd, but phpmyadmin is a bit of a hard part.]]></description>
			<content:encoded><![CDATA[<p>Hi Ravi,</p>
<p>I have removed apache2 and put a renewing installation halted.</p>
<p>So now I keep having the lighttpd placeholder website.</p>
<p>But the issue with the error &#8220;404 Not Found&#8221; is still there.</p>
<p>Why is this so hard to get? I really would like to test lighttpd, but phpmyadmin is a bit of a hard part.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
