<?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 Alfresco Community Edition on RHEL/CentOS 7/6 and Debian 8	</title>
	<atom:link href="https://www.tecmint.com/install-alfresco-community-edition-on-centos-debian-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-alfresco-community-edition-on-centos-debian-ubuntu/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Wed, 17 Aug 2022 08:50:30 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: G		</title>
		<link>https://www.tecmint.com/install-alfresco-community-edition-on-centos-debian-ubuntu/comment-page-1/#comment-1863194</link>

		<dc:creator><![CDATA[G]]></dc:creator>
		<pubDate>Wed, 17 Aug 2022 08:50:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18721#comment-1863194</guid>

					<description><![CDATA[How to change the Web Server address I just type the default &lt;strong&gt;192.168.0.15&lt;/strong&gt; and cannot access &lt;strong&gt;Afresco&lt;/strong&gt; still.

Any ideas?]]></description>
			<content:encoded><![CDATA[<p>How to change the Web Server address I just type the default <strong>192.168.0.15</strong> and cannot access <strong>Afresco</strong> still.</p>
<p>Any ideas?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-alfresco-community-edition-on-centos-debian-ubuntu/comment-page-1/#comment-1129388</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Thu, 11 Apr 2019 07:54:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18721#comment-1129388</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-alfresco-community-edition-on-centos-debian-ubuntu/comment-page-1/#comment-1129373&quot;&gt;Rajagopal&lt;/a&gt;.

@Rajagopal,

Yes, let me update the article to alfresco 6.0 version..]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-alfresco-community-edition-on-centos-debian-ubuntu/comment-page-1/#comment-1129373">Rajagopal</a>.</p>
<p>@Rajagopal,</p>
<p>Yes, let me update the article to alfresco 6.0 version..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rajagopal		</title>
		<link>https://www.tecmint.com/install-alfresco-community-edition-on-centos-debian-ubuntu/comment-page-1/#comment-1129373</link>

		<dc:creator><![CDATA[Rajagopal]]></dc:creator>
		<pubDate>Thu, 11 Apr 2019 07:03:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18721#comment-1129373</guid>

					<description><![CDATA[How about a step by step guide to install the alfresco 6.0 version ?]]></description>
			<content:encoded><![CDATA[<p>How about a step by step guide to install the alfresco 6.0 version ?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Moisés		</title>
		<link>https://www.tecmint.com/install-alfresco-community-edition-on-centos-debian-ubuntu/comment-page-1/#comment-1042867</link>

		<dc:creator><![CDATA[Moisés]]></dc:creator>
		<pubDate>Wed, 03 Oct 2018 14:11:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18721#comment-1042867</guid>

					<description><![CDATA[Using nginx with ssl after ignoring the auto-signed certificate error, &lt;strong&gt;alfresco&lt;/strong&gt; does not open, says &quot;&lt;strong&gt;404 Not Found&lt;/strong&gt;&quot; although it can open the index normally.

Follows my configuration file: &lt;strong&gt;/etc/nginx/sites-availables/name-ip-ssl.conf&lt;/strong&gt;
&lt;pre&gt;
## File content ##

server {
    listen 443 ssl;
    server_name 192.168.10.11;

       ssl_certificate     /etc/nginx/ssl/cert.crt;
       ssl_certificate_key  /etc/nginx/ssl/cert.key;

       ssl_session_cache    shared:SSL:1m;
       ssl_session_timeout  5m;

       ssl_ciphers  HIGH:!aNULL:!MD5;
       ssl_prefer_server_ciphers  on;

    access_log /var/log/nginx/192.168.10.11-ssl.access.log;
    error_log /var/log/nginx/192.168.10.11-ssl.error.log;
    root /srv/http;
    location / {
    index index.html index.htm index.php;
        autoindex on;
        autoindex_exact_size off;
        autoindex_localtime on;
 }
    location /phpmyadmin {
        rewrite ^/* /phpMyAdmin last;
    }
    location ~ \.php$ {
        #fastcgi_pass 127.0.0.1:9000; (depending on your php-fpm socket configuration)
        fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
        fastcgi_index index.php;
        include fastcgi.conf;
    }
}
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>Using nginx with ssl after ignoring the auto-signed certificate error, <strong>alfresco</strong> does not open, says &#8220;<strong>404 Not Found</strong>&#8221; although it can open the index normally.</p>
<p>Follows my configuration file: <strong>/etc/nginx/sites-availables/name-ip-ssl.conf</strong></p>
<pre>
## File content ##

server {
    listen 443 ssl;
    server_name 192.168.10.11;

       ssl_certificate     /etc/nginx/ssl/cert.crt;
       ssl_certificate_key  /etc/nginx/ssl/cert.key;

       ssl_session_cache    shared:SSL:1m;
       ssl_session_timeout  5m;

       ssl_ciphers  HIGH:!aNULL:!MD5;
       ssl_prefer_server_ciphers  on;

    access_log /var/log/nginx/192.168.10.11-ssl.access.log;
    error_log /var/log/nginx/192.168.10.11-ssl.error.log;
    root /srv/http;
    location / {
    index index.html index.htm index.php;
        autoindex on;
        autoindex_exact_size off;
        autoindex_localtime on;
 }
    location /phpmyadmin {
        rewrite ^/* /phpMyAdmin last;
    }
    location ~ \.php$ {
        #fastcgi_pass 127.0.0.1:9000; (depending on your php-fpm socket configuration)
        fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
        fastcgi_index index.php;
        include fastcgi.conf;
    }
}
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Moisés		</title>
		<link>https://www.tecmint.com/install-alfresco-community-edition-on-centos-debian-ubuntu/comment-page-1/#comment-1042621</link>

		<dc:creator><![CDATA[Moisés]]></dc:creator>
		<pubDate>Tue, 02 Oct 2018 19:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=18721#comment-1042621</guid>

					<description><![CDATA[Congratulations on the article.

I&#039;m having trouble enabling services to start automatically.
&lt;pre&gt;
# systemctl enable nginx alfresco 
&lt;/pre&gt;
Synchronizing state of nginx.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable nginx
alfresco.service is not a native service, redirecting to systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable alfresco
update-rc.d: error: alfresco Default-Start contains no runlevels, aborting.]]></description>
			<content:encoded><![CDATA[<p>Congratulations on the article.</p>
<p>I&#8217;m having trouble enabling services to start automatically.</p>
<pre>
# systemctl enable nginx alfresco 
</pre>
<p>Synchronizing state of nginx.service with SysV service script with /lib/systemd/systemd-sysv-install.<br />
Executing: /lib/systemd/systemd-sysv-install enable nginx<br />
alfresco.service is not a native service, redirecting to systemd-sysv-install.<br />
Executing: /lib/systemd/systemd-sysv-install enable alfresco<br />
update-rc.d: error: alfresco Default-Start contains no runlevels, aborting.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
