<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Best Free Webhosting</title>
	<atom:link href="http://bestfreewebhosting.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://bestfreewebhosting.net</link>
	<description>Free Hosting UNLIMITED, PHP, ASP, CGI, FILE, FORUM, DOMAIN</description>
	<lastBuildDate>Sun, 21 Feb 2016 22:21:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.4.2</generator>
	<item>
		<title>Free Windows VPS offer</title>
		<link>http://bestfreewebhosting.net/free-windows-vps-offer/</link>
		<comments>http://bestfreewebhosting.net/free-windows-vps-offer/#respond</comments>
		<pubDate>Thu, 04 Feb 2016 06:15:31 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[FREE VPS - DEDICATED SERVER]]></category>
		<category><![CDATA[FREE WEBHOSTING]]></category>

		<guid isPermaLink="false">http://bestfreewebhosting.net/?p=665</guid>
		<description><![CDATA[Best Free Webhosting &#8211; Free Windows VPS Update As you all know, we offer a free trial Windows VPS to allow you to experience our interface and the performance of our platform. Our free trial offers all of the following features: Identical experience and interface to full accounts Capacity to run one medium server or [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Best Free Webhosting &#8211; Free Windows VPS Update</strong></p>
<p>As you all know, we offer a free trial Windows VPS to allow you to experience our interface and the performance of our platform. Our free trial offers all of the following features:</p>
<p>Identical experience and interface to full accounts</p>
<p>Capacity to run one medium server or several small servers</p>
<p>Complete control to choose the operating system, applications and configuration of your servers</p>
<p>Start, stop and expand servers as you wish</p>
<p>Simple conversion to a full account at any point during your trial</p>
<p>Once you fall in love with Sublime Cloud, convert to a full account and your data and servers from your trial will continue without interruption</p>
<p>Our free trial provides 2 GHz CPU, 1 GB RAM and 10 GB of cloud storage.</p>
<p>Dual Xeon L5420 / 500GB HD / 5TB BW / DDOS Protection – in Los Angeles</p>
<p><strong>We have provided 1000 accounts last month. </strong></p>
<p><strong>Server from ip 104 216 118 203 overloaded. We will buy more in the nearest time.</strong></p>
<p>We apologise that online sign-up for Windows VPS trials are currently not available, while we work on some exciting improvements to our cloud platform.</p>
<p>Please visit again soon for updates. Big Thanks to ClouderHost company.</p>
<p><strong>Anyway, you can still continue to register free reseller from <a href="http://mostdaily.com/free-reseller-hosting/" target="_blank">Mostdaily</a></strong></p>
<p>Do not forget to use the code to register. You can find the code in the article. If you miss it, do not leave, stay tuned next code.</p>
<p><img src="http://www.clouderhost.com/wp-content/uploads/2011/06/600x400-youhosting.gif" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://bestfreewebhosting.net/free-windows-vps-offer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Configure Apache Content Caching on CentOS 7 (part 4)</title>
		<link>http://bestfreewebhosting.net/how-to-configure-apache-content-caching-on-centos-7-part-3/</link>
		<comments>http://bestfreewebhosting.net/how-to-configure-apache-content-caching-on-centos-7-part-3/#respond</comments>
		<pubDate>Sun, 24 Jan 2016 00:06:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[TECH]]></category>

		<guid isPermaLink="false">http://bestfreewebhosting.net/?p=642</guid>
		<description><![CDATA[Setting Expires and Caching Headers on Content In the above configuration, we configured HTTP caching, which relies on HTTP headers. However, none of the content we&#8217;re serving actually has the Expires or Cache-Control headers needed to make intelligent caching decisions. To set these headers, we need to take advantage of a few more modules. The [&#8230;]]]></description>
				<content:encoded><![CDATA[<h2 id="setting-expires-and-caching-headers-on-content">Setting Expires and Caching Headers on Content</h2>
<p>In the above configuration, we configured HTTP caching, which relies on HTTP headers. However, none of the content we&#8217;re serving actually has the <code>Expires</code> or <code>Cache-Control</code> headers needed to make intelligent caching decisions. To set these headers, we need to take advantage of a few more modules.</p>
<p>The <code>mod_expires</code> module can set both the <code>Expires</code> header and the <code>max-age</code> option in the <code>Cache-Control</code> header. The <code>mod_headers</code> module can be used to add more specific <code>Cache-Control</code> options to tune the caching policy further. Both of these modules are enabled by default in the CentOS 7 Apache package.</p>
<p>We can go straight to modifying our virtual host file again to begin configuring these items:</p>
<ul class="prefixed">
<li class="line">sudo nano /etc/httpd/conf.d/site.conf</li>
</ul>
<p>The <code>mod_expires</code> module provides just three directives. The <code>ExpiresActive</code> turns expiration processing on in a certain context by setting it to &#8220;on&#8221;. The other two directives are very similar to each other. The<code>ExpiresDefault</code> directive sets the default expiration time, and the <code>ExpiresByType</code> sets the expiration time according to the MIME type of the content. Both of these will set the <code>Expires</code> and the <code>Cache-Control</code> &#8220;max-age&#8221; to the correct values.</p>
<p>These two settings can take two different syntaxes. The first is simply &#8220;A&#8221; or &#8220;M&#8221; followed by a number of seconds. This sets the expiration in relation to the last time the content was &#8220;accessed&#8221; or &#8220;modified&#8221; respectively. For example, these both would expire content 30 seconds after it was accessed.</p>
<pre class="code-pre "><code>ExpiresDefault A30
ExpireByType text/html A30
</code></pre>
<p>The other syntax allows for more verbose configuration. It allows you to use units other than seconds that are easier for humans to calculate. It also uses the full word &#8220;access&#8221; or &#8220;modification&#8221;. The entire expiration configuration should be kept in quotes, like this:</p>
<pre class="code-pre "><code>ExpiresDefault "modification plus 2 weeks 3 days 1 hour"
ExpiresByType text/html "modification plus 2 weeks 3 days 1 hour"
</code></pre>
<p>For our purposes, we&#8217;ll just set a default expiration. We will start by setting it to 5 minutes so that if we make a mistake while getting familiar, it won&#8217;t be stored on our clients&#8217; computers for an extremely long time. When we&#8217;re more confident in our ability to select policies appropriate for our content, we can adjust this to something more aggressive:</p>
<div class="code-label " title="/etc/httpd/conf.d/site.conf">/etc/httpd/conf.d/site.conf</div>
<pre class="code-pre "><code class="code-highlight language-apache hljs "><span class="hljs-tag">&lt;VirtualHost *:80&gt;</span>
    <span class="hljs-keyword"><span class="hljs-common">ServerName</span></span> <span class="highlight">server_domain_or_IP</span>
    <span class="hljs-keyword"><span class="hljs-common">DocumentRoot</span></span> /var/www/html

    <span class="hljs-keyword">CacheQuickHandler</span> <span class="hljs-literal">off</span>

    <span class="hljs-keyword">CacheLock</span> <span class="hljs-literal">on</span>
    <span class="hljs-keyword">CacheLockPath</span> /tmp/mod_cache-lock
    <span class="hljs-keyword">CacheLockMaxAge</span> 5

    <span class="hljs-keyword">CacheIgnoreHeaders</span> Set-Cookie

    <span class="hljs-tag">&lt;Location /&gt;</span>
        <span class="hljs-keyword">CacheEnable</span> disk
        <span class="hljs-keyword">CacheHeader</span> <span class="hljs-literal">on</span>

        <span class="hljs-keyword">CacheDefaultExpire</span> 600
        <span class="hljs-keyword">CacheMaxExpire</span> 86400
        <span class="hljs-keyword">CacheLastModifiedFactor</span> 0.5

        <span class="highlight"><span class="hljs-keyword">ExpiresActive</span> <span class="hljs-literal">on</span></span>
        <span class="highlight"><span class="hljs-keyword">ExpiresDefault</span> <span class="hljs-string">"access plus 5 minutes"</span></span>
    <span class="hljs-tag">&lt;/Location&gt;</span>
<span class="hljs-tag">&lt;/VirtualHost&gt;</span>
</code></pre>
<p>This will set our <code>Expires</code> header to five minutes in the future and set <code>Cache-Control max-age=300</code>. In order to refine our caching policy further, we can use the <code>Header</code> directive. We can use the <code>merge</code> option to add additional <code>Cache-Control</code> options. You can call this multiple times and add whichever additional policies you&#8217;d like. Check out <a href="https://www.digitalocean.com/community/tutorials/web-caching-basics-terminology-http-headers-and-caching-strategies">this guide</a> to get an idea about the caching policies you&#8217;d like to set for your content. For our example, we&#8217;ll just set &#8220;public&#8221; so that other caches can be sure that they&#8217;re allowed to store copies.</p>
<p>To set <code>ETags</code> for static content on our site (to use for validation), we can use the <code>FileETag</code> directive. This will work for static content. For dynamically generated content, you&#8217;re application will be responsible for correctly generating <code>ETags</code>.</p>
<p>We can use the directive to set the attributes that Apache will use to calculate the <code>Etag</code>. This can be<code>INode</code>, <code>MTime</code>, <code>Size</code>, or <code>All</code> depending on if we want to modify the <code>ETag</code> whenever the file&#8217;s <code>inode</code>changes, its modification time changes, its size changes, or all of the above. You can provide more than one value, and you can modify the inherited setting in child contexts by preceding the new settings with a<code>+</code> or <code>-</code>. For our purposes, we&#8217;ll just use &#8220;all&#8221; so that all changes are registered:</p>
<div class="code-label " title="/etc/httpd/conf.d/site.conf">/etc/httpd/conf.d/site.conf</div>
<pre class="code-pre "><code class="code-highlight language-apache hljs "><span class="hljs-tag">&lt;VirtualHost *:80&gt;</span>
    <span class="hljs-keyword"><span class="hljs-common">ServerName</span></span> <span class="highlight">server_domain_or_IP</span>
    <span class="hljs-keyword"><span class="hljs-common">DocumentRoot</span></span> /var/www/html

    <span class="hljs-keyword">CacheQuickHandler</span> <span class="hljs-literal">off</span>

    <span class="hljs-keyword">CacheLock</span> <span class="hljs-literal">on</span>
    <span class="hljs-keyword">CacheLockPath</span> /tmp/mod_cache-lock
    <span class="hljs-keyword">CacheLockMaxAge</span> 5

    <span class="hljs-keyword">CacheIgnoreHeaders</span> Set-Cookie

    <span class="hljs-tag">&lt;Location /&gt;</span>
        <span class="hljs-keyword">CacheEnable</span> disk
        <span class="hljs-keyword">CacheHeader</span> <span class="hljs-literal">on</span>

        <span class="hljs-keyword">CacheDefaultExpire</span> 600
        <span class="hljs-keyword">CacheMaxExpire</span> 86400
        <span class="hljs-keyword">CacheLastModifiedFactor</span> 0.5

        <span class="hljs-keyword">ExpiresActive</span> <span class="hljs-literal">on</span>
        <span class="hljs-keyword">ExpiresDefault</span> <span class="hljs-string">"access plus 5 minutes"</span>

        <span class="highlight"><span class="hljs-keyword"><span class="hljs-common">Header</span></span> merge Cache-Control public</span>
        <span class="highlight"><span class="hljs-keyword">FileETag</span></span> <span class="hljs-literal">All</span>
    <span class="hljs-tag">&lt;/Location&gt;</span>
<span class="hljs-tag">&lt;/VirtualHost&gt;</span>
</code></pre>
<p>This will add &#8220;public&#8221; (separated by a comma) to whatever value <code>Cache-Control</code> already has and will include an <code>ETag</code> for our static content.</p>
<p>When you are finished, save and close the file. Check the syntax of your changes by typing:</p>
<ul class="prefixed">
<li class="line">sudo apachectl configtest</li>
</ul>
<p>If no errors were found, restart your service to implement your caching policies:</p>
<ul class="prefixed">
<li class="line">sudo systemctl restart httpd</li>
</ul>
<div data-unique="conclusion"></div>
<h2 id="conclusion">Conclusion</h2>
<p>Configuring caching with Apache can seem like a daunting job due to how many options there are. Luckily, it is easy to start simple and then grow as you require more complexity. Most administrators will not require each of the caching types.</p>
<p>When configuring caching, keep in mind the specific problems that you&#8217;re trying to solve to avoid getting lost in the different implementation choices. Most users will benefit from at least setting up headers. If you are proxying or generating content, setting an HTTP cache may be helpful. Shared object caching is useful for specific tasks like storing SSL sessions or authentication details if you are using a backend provider. File caching can probably be limited to those with slow systems.</p>
]]></content:encoded>
			<wfw:commentRss>http://bestfreewebhosting.net/how-to-configure-apache-content-caching-on-centos-7-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Configure Apache Content Caching on CentOS 7 (part 2)</title>
		<link>http://bestfreewebhosting.net/how-to-configure-apache-content-caching-on-centos-7-part-2/</link>
		<comments>http://bestfreewebhosting.net/how-to-configure-apache-content-caching-on-centos-7-part-2/#respond</comments>
		<pubDate>Fri, 22 Jan 2016 00:06:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[TECH]]></category>

		<guid isPermaLink="false">http://bestfreewebhosting.net/?p=640</guid>
		<description><![CDATA[How To Enable Key-Value Caching With the above bugs and caveats in mind, if you still wish to configure this type of caching in Apache, follow along below. The method used to set up the key-value cache will depend on what it will be used for and what provider you are using. We&#8217;ll go over [&#8230;]]]></description>
				<content:encoded><![CDATA[<h3 id="how-to-enable-key-value-caching">How To Enable Key-Value Caching</h3>
<p>With the above bugs and caveats in mind, if you still wish to configure this type of caching in Apache, follow along below.</p>
<p>The method used to set up the key-value cache will depend on what it will be used for and what provider you are using. We&#8217;ll go over the basics of both authentication caching and SSL session caching below.</p>
<p>Currently, there is <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=54342">a bug with authentication caching</a> that prevents passing arguments to the cache provider. So any providers that do not provide default settings to fall back on will have issues.</p>
<h4 id="authentication-caching">Authentication Caching</h4>
<p>Authentication caching is useful if you are using an expensive authentication method, such as LDAP or database authentication. These types of operations can have a significant impact on performance if the backend must be hit every time an authentication request is made.</p>
<p>Setting up caching involves modifying your existing authentication configuration (we will not cover how to set up authentication in this guide). The modifications themselves will be much the same regardless of the backend authentication method. We&#8217;ll use <code>mod_socache_shmcb</code> for our demonstration. This module is already enabled in our <code>/etc/httpd/conf.modules.d/00-base.conf</code> file.</p>
<p>Open your main Apache configuration file so that you can specify this shared cache backend for use with authentication:</p>
<ul class="prefixed">
<li class="line">sudo nano /etc/httpd/conf/httpd.conf</li>
</ul>
<p>Inside, towards the top of the file, add the <code>AuthnCacheSOCache</code> directive. Specify that <code>shmcb</code> should be used as the provider. If the bug discussed earlier preventing option passing is fixed by the time you read this, you can specify a location and size for the cache. The number is in bytes, so the commented example will result in a 512 kilobyte cache:</p>
<div class="code-label " title="/etc/httpd/conf/httpd.conf">/etc/httpd/conf/httpd.conf</div>
<pre class="code-pre "><code class="code-highlight language-apache hljs "><span class="hljs-keyword">AuthnCacheSOCache</span> shmcb

<span class="hljs-comment"># If the bug preventing passed arguments to the provider gets fixed,</span>
<span class="hljs-comment"># you can customize the location and size like this</span>
<span class="hljs-comment">#AuthnCacheSOCache shmcb:${APACHE_RUN_DIR}/auth_cache(512000)</span>
</code></pre>
<p>Save and close the file when you are finished.</p>
<p>Next, open your virtual host configuration page that has authentication configured. We&#8217;ll assume you&#8217;re using a virtual host config called <code>site.conf</code> located within the <code>/etc/httpd/conf.d</code> directory, but you should modify it to reflect your environment:</p>
<ul class="prefixed">
<li class="line">sudo nano /etc/httpd/conf.d/site.conf</li>
</ul>
<p>A basic virtual host set up with authentication may look something like this:</p>
<div class="code-label " title="/etc/httpd/conf.d/site.conf">/etc/httpd/conf.d/site.conf</div>
<pre class="code-pre "><code class="code-highlight language-apache hljs "><span class="hljs-tag">&lt;VirtualHost *:80&gt;</span>
    <span class="hljs-keyword"><span class="hljs-common">ServerName</span></span> <span class="highlight">server_domain_or_IP</span>
    <span class="hljs-keyword"><span class="hljs-common">DocumentRoot</span></span> /var/www/html

    <span class="hljs-tag">&lt;Directory /var/www/html/private&gt;</span>
        <span class="hljs-keyword">AuthType</span> Basic
        <span class="hljs-keyword">AuthName</span> <span class="hljs-string">"Restricted Files"</span>
        <span class="hljs-keyword">AuthUserFile</span> /etc/httpd/.htpasswd
        <span class="hljs-keyword">AuthBasicProvider</span> file
        <span class="hljs-keyword">Require</span> valid-user
    <span class="hljs-tag">&lt;/Directory&gt;</span>
<span class="hljs-tag">&lt;/VirtualHost&gt;</span>
</code></pre>
<p>In the location where you&#8217;ve configured authentication, modify the block to add caching. Specifically, you need to add the <code>AuthnCacheProvideFor</code> to tell it which authentication sources to cache, add a cache timeout with <code>AuthnCacheTimeout</code>, and add <code>socache</code> to the <code>AuthBasicProvider</code> list ahead of your conventional authentication method. The results will look something like this:</p>
<div class="code-label " title="/etc/httpd/conf.d/site.conf">/etc/httpd/conf.d/site.conf</div>
<pre class="code-pre "><code class="code-highlight language-apache hljs "><span class="hljs-tag">&lt;VirtualHost *:80&gt;</span>
    <span class="hljs-keyword"><span class="hljs-common">ServerName</span></span> <span class="highlight">server_domain_or_IP</span>
    <span class="hljs-keyword"><span class="hljs-common">DocumentRoot</span></span> /var/www/html

    <span class="hljs-tag">&lt;Directory /var/www/html/private&gt;</span>
        <span class="hljs-keyword">AuthType</span> Basic
        <span class="hljs-keyword">AuthName</span> <span class="hljs-string">"Restricted Files"</span>
        <span class="hljs-keyword">AuthUserFile</span> /etc/apache/.htpasswd
        <span class="hljs-keyword">AuthBasicProvider</span> <span class="highlight">socache</span> file
        <span class="highlight"><span class="hljs-keyword">AuthnCacheProvideFor</span> file</span>
        <span class="highlight"><span class="hljs-keyword">AuthnCacheTimeout</span> 300</span>
        <span class="hljs-keyword">Require</span> valid-user
    <span class="hljs-tag">&lt;/Directory&gt;</span>
<span class="hljs-tag">&lt;/VirtualHost&gt;</span>
</code></pre>
<p>The above example is for file authentication, which probably won&#8217;t benefit from caching very much. However, the implmentation should be very similar when using other authentiation methods. The only substantial difference would be where the &#8220;file&#8221; specification is in the above example, the other authentication method would be used instead.</p>
<p>Save and close the file. Check your changes for syntax errors by typing:</p>
<ul class="prefixed">
<li class="line">sudo apachectl configtest</li>
</ul>
<p>If no syntax errors are found, restart Apache to implement your caching changes:</p>
<ul class="prefixed">
<li class="line">sudo systemctl restart httpd</li>
</ul>
<h4 id="ssl-session-caching">SSL Session Caching</h4>
<p>The handshake that must be performed to establish an SSL connection carries significant overhead. As such, caching the session data to avoid this initialization step for further requests can potentially skirt this penalty. The shared object cache is a perfect place for this.</p>
<p>If you have SSL already configured for your Apache server, <code>mod_ssl</code> will be enabled (if not, use <code>yum</code> to install the <code>mod_ssl</code> module). On CentOS 7, this means that an <code>ssl.conf</code> file will be available in the<code>/etc/httpd/conf.d</code> directory. This actually already sets up caching. Inside, you will see some lines like this:</p>
<div class="code-label " title="/etc/httpd/conf.d/ssl.conf">/etc/httpd/conf.d/ssl.conf</div>
<pre class="code-pre "><code class="code-highlight language-apache hljs ">. . .

<span class="hljs-keyword">SSLSessionCache</span>         shmcb:/run/httpd/sslcache(512000)
<span class="hljs-keyword">SSLSessionCacheTimeout</span>  300

. . .
</code></pre>
<p>This is actually enough to set up session caching. To test this, you can use OpenSSL&#8217;s connection client. Type:</p>
<ul class="prefixed">
<li class="line">openssl s_client -connect 127.0.0.1:443 -reconnect -no_ticket | grep Session-ID</li>
</ul>
<p>If the session ID is the same in all of the results, your session cache is working correctly. Press CTRL-C to exit back to the terminal.</p>
]]></content:encoded>
			<wfw:commentRss>http://bestfreewebhosting.net/how-to-configure-apache-content-caching-on-centos-7-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Configure Apache Content Caching on CentOS 7 (part 1)</title>
		<link>http://bestfreewebhosting.net/how-to-configure-apache-content-caching-on-centos-7-part-1/</link>
		<comments>http://bestfreewebhosting.net/how-to-configure-apache-content-caching-on-centos-7-part-1/#respond</comments>
		<pubDate>Fri, 22 Jan 2016 00:06:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[TECH]]></category>

		<guid isPermaLink="false">http://bestfreewebhosting.net/?p=638</guid>
		<description><![CDATA[What is Caching? Caching is a method of improving server performance by allowing commonly requested content to be temporarily stored in a way that allows for faster access. This speeds up processing and delivery by cutting out some resource intensive operations. By creating effective caching rules, content that is suitable for caching will be stored [&#8230;]]]></description>
				<content:encoded><![CDATA[<h3 id="what-is-caching">What is Caching?</h3>
<p>Caching is a method of improving server performance by allowing commonly requested content to be temporarily stored in a way that allows for faster access. This speeds up processing and delivery by cutting out some resource intensive operations.</p>
<p>By creating effective caching rules, content that is suitable for caching will be stored to improve response times, conserve resources, and minimize load. Apache provides a variety of caches suitable for speeding up different types of operations. In this guide, we will be discussing how to configure Apache 2.4 on CentOS 7 using its various caching modules.</p>
<p>To learn more about developing general caching strategies, check out <a href="https://www.digitalocean.com/community/tutorials/web-caching-basics-terminology-http-headers-and-caching-strategies">this article</a>.</p>
<div data-unique="an-introduction-to-caching-in-apache"></div>
<h2 id="an-introduction-to-caching-in-apache">An Introduction to Caching in Apache</h2>
<p>Apache can cache content with varying levels of sophistication and scalability. The project divides these into three groups according to the method in which the content is cached. The general breakdown is:</p>
<ul>
<li><strong>File Caching</strong>: The most basic caching strategy, this simply opens files or file descriptors when the server starts and keeps them available to speed up access.</li>
<li><strong>Key-Value Caching</strong>: Mainly used for SSL and authentication caching, key-value caching uses a shared object model that can store items which are costly to compute repeatedly.</li>
<li><strong>Standard HTTP caching</strong>: The most flexible and generally useful caching mechanism, this three-state system can store responses and validate them when they expire. This can be configured for performance or flexibility depending on your specific needs.</li>
</ul>
<p>A quick look at the above descriptions may reveal that the above methods have some overlap, but also that it may be helpful to use more than one strategy at the same time. For instance, using a key-value store for your SSL sessions and enabling a standard HTTP cache for responses could allow you to take significant load off of your data sources and speed up many content delivery operations for your clients.</p>
<p>Now that you have a broad understanding of each of Apache&#8217;s caching mechanisms, let&#8217;s look at these systems in more detail.</p>
<div data-unique="file-caching"></div>
<h2 id="file-caching">File Caching</h2>
<h3 id="general-overview">General Overview</h3>
<ul>
<li><strong>Primary modules involved</strong>: <code>mod_file_cache</code></li>
<li><strong>Main use cases</strong>: storing either file contents or file descriptors when the server starts. These are static representations that cannot reliably be changed until the server is restarted.</li>
<li><strong>Features</strong>: simple, improves performance of slow filesystems</li>
<li><strong>Drawbacks</strong>: experimental feature, does not respond to updates on the filesystem, must be used sparingly to fit within operating system&#8217;s limitations, can only be used on static files</li>
</ul>
<h3 id="the-details">The Details</h3>
<p>The <code>mod_file_cache</code> module is mainly used to speed up file access on servers with slow filesystems. It provides a choice of two configuration directives, both of which aim to accelerate the process of serving static files by performing some of the work when the server is started rather than when the files are requested.</p>
<p>The <code>CacheFile</code> directive is used to specify the path to files on disk that you would like to accelerate access to. When Apache is started, Apache will open the static files that were specified and cache the file handle, avoiding the need to open the file when it is requested. The number of files that can be opened in this way is subject to the limitations set by your operating system.</p>
<p>The <code>MMapFile</code> directive also opens files when Apache is first started. However, <code>MMapFile</code> caches the file&#8217;s contents in memory rather than just the file handler. This allows for faster performance for those pages, but it has some serious limitations. It maintains no record of the amount of memory it has used, so it is possible to run out of memory. Also note that child processes will copy any of the allocated memory, which can result in faster resource depletion than you initially may anticipate. Only use this directive sparingly.</p>
<p>These directives are evaluated only when Apache starts. This means that you cannot rely on Apache to pick up changes made after it has started. Only use these on static files that will not change for the lifetime of the Apache session. Depending on how the files are modified, the server may be notified of changes, but this is not expected behavior and will not always work correctly. If changes must be made to files passed to these directives, restart Apache after the changes have been made.</p>
<h3 id="how-to-enable-file-caching">How To Enable File Caching</h3>
<p>File caching is provided by the <code>mod_file_cache</code> module. To use this functionality, you&#8217;ll need to enable the module.</p>
<p>When running CentOS 7, the module will be installed when you install Apache, but the default configuration does not load the module. To load the module, we&#8217;ll create a simple file in our<code>/etc/httpd/conf.modules.d</code> directory to load the module. We&#8217;ll call this file <code>00-cache.conf</code>:</p>
<ul class="prefixed">
<li class="line">sudo nano /etc/httpd/conf.modules.d/00-cache.conf</li>
</ul>
<p>Inside, we need to use the <code>LoadModule</code> directive to enable the functionality we need. Add the following line to the file:</p>
<div class="code-label " title="/etc/httpd/conf.modules.d/00-cache.conf">/etc/httpd/conf.modules.d/00-cache.conf</div>
<pre class="code-pre "><code class="code-highlight language-apache hljs "><span class="hljs-keyword"><span class="hljs-common">LoadModule</span></span> file_cache_module modules/mod_file_cache.so
</code></pre>
<p>Save and close the file when you&#8217;re finished.</p>
<p>Afterwards, you should edit the main configuration file to set up your file caching directives. Open the file by typing:</p>
<ul class="prefixed">
<li class="line">sudo nano /etc/httpd/conf/httpd.conf</li>
</ul>
<p>To set up file handle caching, use the <code>CacheFile</code> directive. This directive takes a list of file paths, separated by spaces, like this:</p>
<div class="code-label " title="/etc/httpd/conf/httpd.conf">/etc/httpd/conf/httpd.conf</div>
<pre class="code-pre "><code class="code-highlight language-apache hljs "><span class="hljs-keyword">CacheFile</span> /var/www/html/index.html /var/www/html/somefile.index
</code></pre>
<p>When the server is restarted, Apache will open the files listed and store their file handles in the cache for faster access.</p>
<p>If, instead, you wish to map a few files directly into memory, you can use the <code>MMapFile</code> directive. Its syntax is basically the same as the last directive, in that it simply takes a list of file paths:</p>
<div class="code-label " title="/etc/httpd/conf/httpd.conf">/etc/httpd/conf/httpd.conf</div>
<pre class="code-pre "><code class="code-highlight language-apache hljs "><span class="hljs-keyword">MMapFile</span> /var/www/html/index.html /var/www/html/somefile.index
</code></pre>
<p>In practice, there would be no reason to configure <em>both</em> <code>CacheFile</code> and <code>MMapFile</code> for the same set of files, but you could use both on different sets of files.</p>
<p>When you are finished, you can save and close the files. Check the configuration file syntax by typing:</p>
<ul class="prefixed">
<li class="line">sudo apachectl configtest</li>
</ul>
<p>If the last line reads <code>Syntax OK</code>, you can safely restart your Apache instance:</p>
<ul class="prefixed">
<li class="line">sudo systemctl restart httpd</li>
</ul>
<p>Apache will restart, caching the file contents or handlers depending on the directives you used.</p>
<div data-unique="key-value-caching"></div>
<h2 id="key-value-caching">Key-Value Caching</h2>
<h3 id="general-overview">General Overview</h3>
<ul>
<li><strong>Primary modules involved</strong>: <code>mod_socache_dbm</code>, <code>mod_socache_dc</code>, <code>mod_socache_memcache</code>,<code>mod_socache_shmcb</code></li>
<li><strong>Supporting modules involved</strong>: <code>mod_authn_socache</code>, <code>mod_ssl</code></li>
<li><strong>Main use cases</strong>: storing SSL sessions or authentication details, SSL stapling</li>
<li><strong>Features</strong>: shared object cache to store complex resources, can assist in SSL session caching and stapling, flexible backends</li>
<li><strong>Drawbacks</strong>: has no validation mechanisms, need to configure separate software for more performant/flexible backends, some bugs in code</li>
</ul>
<h3 id="the-details">The Details</h3>
<p>Key-value caching is more complex than file caching and has more focused benefits. Also known as a shared object cache, Apache&#8217;s key-value cache is mainly used to avoid repeating expensive operations involved with setting up a client&#8217;s access to content, as opposed to the content itself. Specifically, it can be used to cache authentication details, SSL sessions, and to provide SSL stapling.</p>
<div class="code-label notes-and-warnings note" title="Note">Note</div>
<p><span class="note">Currently, there are some issues with <em>every</em> shared object cache provider. References to the issues will be outlined below. Take these into consideration when evaluating whether to enable this feature.<br />
</span></p>
<p>The actual caching is accomplished through the use of one of the shared object caching provider modules. These are:</p>
<ul>
<li><strong><code>mod_socache_dbm</code></strong>: This backend uses the simple <code>dbm</code> database engine, which is a file-based key-value store that makes use of hashing and fixed-size buckets. This provider suffers from some memory leaks, so for most cases it is recommended to use <code>mod_socache_shmcb</code> instead.</li>
<li><strong><code>mod_socache_dc</code></strong>: This provider uses the distcache session caching software. This project has not been updated since 2004 and is not even packaged for some distributions, so use with a healthy dose of caution.</li>
<li><strong><code>mod_socache_memcache</code></strong>: This uses the memcache distributed memory object cache for storing items. This is the best option for a distributed cache among multiple servers. Currently, it does not properly expire entries, but a <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=55445">patch</a> was committed to the trunk of Apache&#8217;s version control that fixes the issue.</li>
<li><strong><code>mod_socache_shmcb</code></strong>: Currently, this is the best option for key-value caching. This caches to a cyclic buffer in shared memory, which will remove entries as it becomes full. It currently chokes on<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=57023">entries over 11k in size</a>.</li>
</ul>
<p>Along with the above provider modules, additional modules will be required depending on the objects being cached. For instance, to cache SSL sessions or to configure SSL stapling, <code>mod_ssl</code> must be enabled, which will provide the <code>SSLSessionCache</code> and <code>SSLStaplingCache</code> directives respectively. Similarly, to set up authentication caching, the <code>mod_authn_socache</code> module must be enabled so that the<code>AuthnCacheSOCache</code> directive can be set.</p>
]]></content:encoded>
			<wfw:commentRss>http://bestfreewebhosting.net/how-to-configure-apache-content-caching-on-centos-7-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementing Mumble on Your Debian/Ubuntu Low End Server</title>
		<link>http://bestfreewebhosting.net/implementing-mumble-on-your-debianubuntu-low-end-server/</link>
		<comments>http://bestfreewebhosting.net/implementing-mumble-on-your-debianubuntu-low-end-server/#respond</comments>
		<pubDate>Sat, 16 Jan 2016 01:23:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[TECH]]></category>

		<guid isPermaLink="false">http://bestfreewebhosting.net/?p=635</guid>
		<description><![CDATA[Mumble is a high-quality, low-latency voice chat app that was primarily developed for those in the gaming community. If you’ve got a spare low end server, you could consider implementing Mumble to facilitate voice chats with those that you invite to connect to your server. There’s several reason you may want to implement the Mumble [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Mumble is a high-quality, low-latency voice chat app that was primarily developed for those in the gaming community.</p>
<p>If you’ve got a spare low end server, you could consider implementing Mumble to facilitate voice chats with those that you invite to connect to your server. There’s several reason you may want to implement the Mumble Server app. Perhaps you’d like to privately communicate with a loved one without paying fees to a telephony provider?</p>
<h3>Examining the Core Features of Mumble</h3>
<p>If you decide to install Mumble on your VPS, you can expect to get the following:</p>
<ul>
<li>Low-latency: This makes Mumble great for talking and gaming</li>
<li> Encrypted communications – Mumble uses Public/private-key authentication by default</li>
<li> Recognize your friends across different servers</li>
<li> In-game Overlay / See which user is talking</li>
<li> Positional Audio – Hear the players from where they are located</li>
<li> Wizards to guide you through the setup (ex. configuring your microphone)</li>
</ul>
<p>We will now go through the installation looking both at the server side and at the client side.</p>
<h3>How to Install the Mumble Server</h3>
<p>Mumble is available in the software repositories of each of the major Linux distributions. This makes Mumble very easy to install and setup. We will concentrate on how to install the server on a Ubuntu VPS.<br />
First step consists in connecting to the server from your client using SSH:</p>
<blockquote><p>ssh username@SERVER-IP</p></blockquote>
<p>You will be asked for the password and then you will be logged in. Once inside the server you will need to gain root access:</p>
<blockquote><p>sudo bash</p></blockquote>
<p>Type in your root password and then run the following command to install the mumble server:</p>
<blockquote><p>apt-get install mumble-server</p></blockquote>
<p>Once the server is installed you will need to setup Mumble running the following command:</p>
<blockquote><p>dpkg-reconfigure mumble-server</p></blockquote>
<p>You will be now asked if you want the mumble-server to be started automatically when the servers start. Pick “Yes”.<br />
The following questions will pop-up, asking if you wish to run Mumble in a high- priority mode to ensure lower latency. It’s a good idea to run it in this mode so pick “Yes”.</p>
<p>You will now have to choose a password for the administrative user of your new Mumble server. This password will be needed later to log-in so you better take note of it.</p>
<p>Congratulations! We have now finished installing the server-side of the Mumble app.</p>
<h3>How To Install the Mumble Client on Ubuntu</h3>
<p>Let’s move on to the client. The client can be installed on all the major platforms (Windows, Mac OS X and Linux). We will go through the installation and configuration on Ubuntu Linux.</p>
<p>Once again you will need to open a terminal and type the following command in order to gain root access:</p>
<blockquote><p>sudo bash</p></blockquote>
<p>You will be asked for your root password of your workstation and after that your prompt will be ready for the next command that actually installs the mumble client:</p>
<blockquote><p>apt-get install mumble</p></blockquote>
<p>Once the installation process is done, you can exit the root mode using the following command:</p>
<blockquote><p>exit</p></blockquote>
<p>You will now be ready to start Mumble using the following command:</p>
<blockquote><p>mumble</p></blockquote>
<p>Since it will be the first time you run that program, it will present you with a wizard to help you configure your audio input and output.<br />
It will give you a short introduction where you will have to press “Next” to reach the sound device selection window.<br />
It will first ask you which sound device and microphone to use.</p>
<p>Once you will have selected the right input and output devices pressing “Next”, you will reach the window where you will be able to calibrate the devices and set the right level for each of them. After you’ve finished the audio setup process, you will be asked to create a certificate since Mumble will encrypt all the communications.<br />
Leave the “Automatic Certificate Creation” option selected and press “Next”.</p>
<p>Press “Finish” in the next window, you’ll be on your way to finishing up the installation.</p>
<p>Final Step: Test Out Your Mumble Server</p>
<p>The last step is to select which server you want to connect to. You can choose one from the list or press the “Add New…” button on the low part of the window.</p>
<p>In this case we will press “Add New…” because we will want to connect to our own server.</p>
<p>First enter a label to help you identifying your server, next add the address and port of the server and finally use “SuperUser” as user and the password you chose when you configured the Mumble server.</p>
<h3>Congratulations!</h3>
<p>You will now be able connect to the server and enjoy all of the features while you play online or talk to your friends.</p>
<p>(Tutorial written by a contributor)</p>
]]></content:encoded>
			<wfw:commentRss>http://bestfreewebhosting.net/implementing-mumble-on-your-debianubuntu-low-end-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using a Ubuntu/Debian VPS to Establish Anonymous SSH sessions with TOR</title>
		<link>http://bestfreewebhosting.net/using-a-ubuntudebian-vps-to-establish-anonymous-ssh-sessions-with-tor/</link>
		<comments>http://bestfreewebhosting.net/using-a-ubuntudebian-vps-to-establish-anonymous-ssh-sessions-with-tor/#respond</comments>
		<pubDate>Sat, 16 Jan 2016 01:21:58 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[TECH]]></category>

		<guid isPermaLink="false">http://bestfreewebhosting.net/?p=633</guid>
		<description><![CDATA[Perhaps you’ve wanted to set up a virtual private server (VPS) to anonymize HTTP traffic on the TOR network. OpenSSH would be the first solution that admins would turn to, given the fact that OpenSSH is the de facto tool used utilize to encrypt connections on a VPS. A bigger question remains: How do you [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="page" title="Page 1">
<div class="layoutArea">
<div class="column">
<p>Perhaps you’ve wanted to set up a virtual private server (VPS) to anonymize HTTP traffic on the TOR network.</p>
<p>OpenSSH would be the first solution that admins would turn to, given the fact that OpenSSH is the de facto tool used utilize to encrypt connections on a VPS.</p>
<p>A bigger question remains: How do you port all of your TOR connections through SSH? A few configuration changes must be made. Also, a proxy must be established in order to achieve an anonymous SSH session with TOR.</p>
<p><em>Luckily, all of this is really easy to configure.</em></p>
<p>In case you haven’t installed TOR yet, you may want to go ahead and do so. The instructions for installing TOR has been published numerous times online. Here is a recap of how to get TOR installed:</p>
<p><strong>Refresher on Installing TOR</strong></p>
<p>If TOR isn’t available in your repository, you must take steps in order to ensure that it is available for you to install.</p>
<p>If you can confirm that TOR is already available for you to install, you may skip to the section and proceed to the section titled, “One Liner for Updating Repos and Installing TOR.”</p>
<p><strong>If TOR Isn’t Available in your Repository</strong></p>
<p>You would want to open /etc/apt/sources.list and add the following line.</p>
<blockquote><p>deb http://deb.torproject.org/torproject.org DISTRONAME main</p></blockquote>
<p>Note: the DISTRONAME in caps needs to be replaced with your distribution’s name. For example, Lenny, Squeeze, etc.</p>
<p><strong>Install the PGP Key</strong></p>
<p>Experts recommend that you install a PGP key to ensure that the repo is authorized. In a terminal session, type:</p>
<blockquote><p>apt-key adv –recv-keys –keyserver subkeys.pgp.net 0x94C09C7F</p></blockquote>
<p>Next, you are ready to update your repositories and get TOR installed.</p>
<p><strong>One Liner for Updating Repos and Installing TOR</strong></p>
<blockquote><p>apt-get update &amp;&amp; apt-get install -y tor</p></blockquote>
</div>
</div>
</div>
<div class="page" title="Page 2">
<div class="layoutArea">
<div class="column">
<p>You must now install the proxy we discussed above, which can be done using the following command at the terminal:</p>
<blockquote><p>apt-get install -y connect-proxy</p></blockquote>
<p><strong>But Wait, There’s More: Configuring OpenSSH to Work with TOR</strong></p>
<p>At this point in the tutorial, you have everything in place. Now it is time to make OpenSSH and TOR work seamlessly.</p>
<p>Most experts do not recommend setting up OpenSSH to use TOR for all connections. If you wish to do so, you’d open your ~/.ssh/config file and add this to the top of the file:</p>
<blockquote><p>Host *<br />
CheckHostIP no<br />
Compression yes<br />
Protocol 2<br />
ProxyCommand connect -4 -S localhost:9050 $(tor-resolve %h localhost:9050) %p</p></blockquote>
<p>Most of those who set up their VPS to create anonymous SSH session with TOR will only want specific connection types to be tunneled in this fashion. To define specific connections, you’d open your ~/.ssh/config file and add this text to the top of the file:</p>
<blockquote><p>Host YOURDOMAINNAME<br />
HostName YOURDOMAINNAME.COM<br />
User YOURACCOUNT<br />
CheckHostIP no<br />
Compression yes<br />
Protocol 2<br />
ProxyCommand connect -4 -S localhost:9050 $(tor-resolve %h localhost:9050) %p</p></blockquote>
<p>Note: In the above text, you’ll want to change YOURDOMAINNAME and YOURACCOUNT to match the appropriate values for your environment.</p>
<p><strong>Conclusion</strong></p>
<p>That’s the general gist of setting up a VPS to create an anonymous SSH session with TOR.</p>
<p>When you set up this type of service, we remind you to only do so within the laws and legal regulatory framework in your area. You should only use a VPS to create anonymous SSH tunnels with TOR to conduct lawful activities.</p>
</div>
</div>
</div>
<p>Link to free register with code:</p>
<blockquote data-secret="SPQoKz7WoN" class="wp-embedded-content"><p><a href="http://mostdaily.com/free-reseller-hosting/">Free Reseller Hosting</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" src="http://mostdaily.com/free-reseller-hosting/embed/#?secret=SPQoKz7WoN" data-secret="SPQoKz7WoN" width="500" height="282" title="Embedded WordPress Post" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://bestfreewebhosting.net/using-a-ubuntudebian-vps-to-establish-anonymous-ssh-sessions-with-tor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Kloxo-MR</title>
		<link>http://bestfreewebhosting.net/how-to-install-kloxo-mr/</link>
		<comments>http://bestfreewebhosting.net/how-to-install-kloxo-mr/#respond</comments>
		<pubDate>Mon, 11 Jan 2016 06:23:53 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[TECH]]></category>

		<guid isPermaLink="false">http://bestfreewebhosting.net/?p=621</guid>
		<description><![CDATA[As we all know, Kloxo was one of the Best Free VPS Control Panel Open Source. It has the advantage of being easy to manage, easy to install, easy to customize, great community support.  But it has many disadvantages: poor security, many errors arise during installation&#8230; We have 2 ways to fix problems. First, choose other [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>As we all know, Kloxo was one of the <strong><a href="http://bestfreewebhosting.net/best-free-vps-control-panel-open-source/" target="_blank">Best Free VPS Control Panel Open Source</a></strong>. It has the advantage of being easy to manage, easy to install, easy to customize, great community support.  But it has many disadvantages: poor security, many errors arise during installation&#8230;</p>
<p>We have 2 ways to fix problems. First, choose other control panel, as we have introduced &#8220;<strong><a href="http://bestfreewebhosting.net/best-free-vps-control-panel-open-source/" target="_blank">Best Free VPS Control Panel Open Source</a>&#8220;</strong>. Secondly, the choice of mr-kloxo, this is the perfect replacement of kloxo, was Mustafa Ramadhan own development. It overcomes errors in the installation process, with regular upgrades.<br />
Here&#8217;s how to install mr-kloxo for CentOS 5, CentOS 6:</p>
<blockquote>
<pre>A. pre-install -- better for fresh install

    cd /

    # update centos to latest version
    yum update -y
    # install some packages like package-cleanup, etc
    yum install yum-utils yum-priorities vim-minimal subversion curl zip unzip -y
    yum install telnet wget -y

    cd /

B. Install Kloxo-MR
   - Install/reinstall/upgrade -- data not destroyed with this fork
     for existing Kloxo (6.1.x), run 'sh /script/update' first.

B.1. Fresh Install

    B.1.1. for version 6.5.0 (rpm naming as kloxomr-6.5.0-*.rpm)

        # move to /
        cd /tmp

        # remove old rpm
        rm -f mratwork*

        # get repo file -- no need for 6.5.0.c and after
        wget https://github.com/mustafaramadhan/kloxo/raw/rpms/release/neutral/noarch/mratwork-release-0.0.1-1.noarch.rpm --no-check-certificate
        rpm -ivh mratwork-release-0.0.1-1.noarch.rpm

        # move to /
        cd /

        # update
        yum clean all

        yum update mratwork-* -y

        yum install kloxomr -y

        sh /script/upcp
  
    B.1.2. for version 7.0.0 (rpm naming as kloxomr7-7.0.0-*.rpm)

        # move to /
        cd /tmp

        # remove old rpm
        rm -f mratwork*

        # get repo file -- no need for 6.5.0.c and after
        wget https://github.com/mustafaramadhan/kloxo/raw/rpms/release/neutral/noarch/mratwork-release-0.0.1-1.noarch.rpm --no-check-certificate
        rpm -ivh mratwork-release-0.0.1-1.noarch.rpm

        # move to /
        cd /

        # update
        yum clean all

        yum update mratwork-* -y

        yum install kloxomr7 -y

        sh /script/upcp

B.2. update from 6.5.0 to 7.0.0

    yum replace kloxomr --replace-with=kloxomr7 -y
	
    # '-y' mean force
    sh /script/upcp -y
	
B.3. update from Kloxo Official 6.1.19

    ## follow step B.1.1 or B.1.2 and read 'WARNING' below before next step

    # '-y' mean force
    sh /script/upcp -y

WARNING:

1. Need running 'sh /script/backup-patch' in Kloxo Official (6.1.12) before backup data.

    - In Kloxo offical run:

        cd /script
        wget https://github.com/mustafaramadhan/kloxo/raw/dev/kloxo/pscript/backup-patch
        sh ./backup-patch

2. Need remove certain rpms in Kloxo Official after 6.1.12 (testing in 6.1.19)

	# remove packages from Kloxo Official
    yum remove kloxo* -y
    
3. Since 6.5.0.f-20130701, Kloxo-MR using MySQLi API instead MySQL API. Need update mysql 5.0.x to 5.1.x or above for Centos 5.

    - Check mysql version with:

        mysql -V|awk '{print $5}'

    - Update with 'yum replace mysql --replace-with=mysql55' (ask to forum for update to MariaDB)

4. Make sure all MySQL databases in MyISAM storage-engine (especially upgrade to version 6.5.0) with execute:

   ## convert to MyISAM storage-engine
   sh /script/mysql-convert --engine=myisam</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://bestfreewebhosting.net/how-to-install-kloxo-mr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtualization Solutions Data Center</title>
		<link>http://bestfreewebhosting.net/virtualization-solutions-data-center/</link>
		<comments>http://bestfreewebhosting.net/virtualization-solutions-data-center/#respond</comments>
		<pubDate>Mon, 11 Jan 2016 06:01:06 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[TECH]]></category>

		<guid isPermaLink="false">http://bestfreewebhosting.net/?p=619</guid>
		<description><![CDATA[Virtualization technology is designed to create intermediate layer between the hardware and software server running on it. Server virtualization is implemented in a way from a single physical machine can create multiple independent virtual machines. Each virtual machine has a system set up separate sources, its own operating system and applications separately. There are two [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Virtualization technology is designed to create intermediate layer between the hardware and software server running on it.</strong></p>
<p>Server virtualization is implemented in a way from a single physical machine can create multiple independent virtual machines. Each virtual machine has a system set up separate sources, its own operating system and applications separately. There are two forms of server virtualization.</p>
<p>Virtualization Management Layer: This is the original form of virtualization of servers. We are often called “hosted”. As the figure below shows, virtualization functionality is built on a common platform OS. Some common products: Microsoft’s Virtual PC, Workstation and VMWare’s.<br />
Dedicated Virtualization: Virtualization mode often called “bare-metal”, which is run directly on the server hardware. So you will use server resources than is optimal form of “hosted” faster processing speed. The popular products: Vsphere (ESX), Xen, and Hyper-V…</p>
<p><strong>Disadvantage of traditional solutions</strong><br />
To meet these requirements are constantly on the implementation and development of new services and applications, organizations need to continue to increase the number of servers. However, as more and more servers, the problem is even clearer:</p>
<p>Increased costs: more purchasing new servers will include the cost of purchasing servers and other costs: power, cooling, space in the server room, …</p>
<p>Low investment efficiency: with each one dedicated server for x86 applications (low load) operations will yield only about 5-15% of CPU.</p>
<p>Reduce management capabilities: management more difficult as more and more servers and applications in a complex environment with a variety of operating systems, hardware, different types of servers.</p>
<p>The effectiveness of the reduction: IT staff will focus more time for server deployment, configuration, monitoring and maintenance. So no longer focus on the activities and projects to help improve the level of information infrastructure.</p>
<p><strong>Benefits of virtualization solutions cannon</strong><br />
Virtualization solution to solve the problem of cost and performance of the server operating costs by reducing hardware and operating more than 50%, the optimal use of resources through virtualization. It also helps deploy servers quickly, easily and automatically manage the resources in a more optimal server as:</p>
<p>– Simplify infrastructure management by centralized management.</p>
<p>– Automate the management of server resources to help IT staff no longer spend so much time on the management server that will focus on new applications and services to benefit the people users and organizations.</p>
<p>– Up to 50% of the cost of new equipment devices such as servers, power, cooling system … by increasing the operational efficiency of the current server.</p>
<p><strong>High Availability &amp; Disaster Prevention</strong><br />
IT is increasingly important contribution to operations of businesses and organizations. The IT system stops working for whatever reason: maintenance, backup, equipment failure, natural disaster will affect very large businesses and organizations. Virtualization solutions will help protect data effectively, can recover lost data quickly and easily; providing fault tolerance, ensuring applications and services continues to operate if something goes wrong; while allowing the system to restore effective IT disaster with lower costs such as:</p>
<p><strong>Protect your data safe</strong><br />
Virtualization solutions ensure the backup, restore data, applications and services quickly, easily and flexibly to meet the requirements of time and data recovery needs such as:</p>
<p>– Data Recovery Fast and simple</p>
<p>– Simplify data protection in a comprehensive</p>
<p>– Enables centralized backup virtual machines without affecting users, applications</p>
<p>&nbsp;</p>
<p>Link to free register with code:</p>
<blockquote><p>http://mostdaily.com/free-reseller-hosting</p>
<p>https://t.co/txM7Kxtatb<br />
https://t.co/IqhNLZEf9D<br />
https://t.co/6HPCeQMbi9<br />
https://t.co/cMsx2toaxg<br />
https://t.co/2qgG9dDanS<br />
https://t.co/ZA57aRf9C2<br />
https://t.co/ReiR7JihUl<br />
https://t.co/EhfoxrlrkF</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://bestfreewebhosting.net/virtualization-solutions-data-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disaster Recovery For Virtualization Solutions Data Center</title>
		<link>http://bestfreewebhosting.net/disaster-recovery-for-virtualization-solutions-data-center/</link>
		<comments>http://bestfreewebhosting.net/disaster-recovery-for-virtualization-solutions-data-center/#respond</comments>
		<pubDate>Mon, 11 Jan 2016 06:00:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[TECH]]></category>

		<guid isPermaLink="false">http://bestfreewebhosting.net/?p=617</guid>
		<description><![CDATA[The business will encounter significant losses when the incident (earthquake, hurricane, fire, …) loss of data, greatly affect the entire operation of the business. So, the big businesses often build a DR solution, enables system restores after a disaster. However, the current DR solutions exist many problems: – High investment costs: hardware configuration requirements in [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The business will encounter significant losses when the incident (earthquake, hurricane, fire, …) loss of data, greatly affect the entire operation of the business. So, the big businesses often build a DR solution, enables system restores after a disaster. However, the current DR solutions exist many problems:<br />
<a href="http://vinabooking2015.com/wp-content/uploads/2015/05/cdc.jpg"><img class="alignnone size-full wp-image-738" src="http://vinabooking2015.com/wp-content/uploads/2015/05/cdc.jpg" alt="cdc" width="640" height="309" /></a><br />
– High investment costs: hardware configuration requirements in the recovery (DR site) must be identical to the main center (Production site).</p>
<p>– Solution complex and take time to recover: need many tools, recovery process for each type of application, each type of data. At the same time the recovery process is consuming too much time, can not meet the requirements of the RTO (recovery time objective).</p>
<p>– Ability to restore unreliable: Need to regularly inspect and evaluate the solution to ensure the ability to recover when the problem. However, the current solution is hard to test because of the complexity and time for recovery.<br />
Virtualization solutions provide a DR plan with a completely new approach – based on the concept of virtualization – to bring the advantages compared to existing solutions:</p>
<p>– Recovery Actions: Virtualization makes it easy to copy, clone the system resources should be time for the lake is improved significantly.</p>
<p>– Solution recovery after a disaster is always ready and achieves high reliability for easy inspection and evaluation more.</p>
<p>– Reduce the cost of building a solution Disaster</p>
<p>Recovery using the virtual machine is hardware independent and can run on any x86 physical servers typically without editing, reconfiguration, so can use any server in the DR site that is not required to purchase hardware like in production site.</p>
<p>Link to free register with code:</p>
<blockquote data-secret="xHcb0abgyk" class="wp-embedded-content"><p><a href="http://mostdaily.com/free-reseller-hosting/">Free Reseller Hosting</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" src="http://mostdaily.com/free-reseller-hosting/embed/#?secret=xHcb0abgyk" data-secret="xHcb0abgyk" width="500" height="282" title="Embedded WordPress Post" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://bestfreewebhosting.net/disaster-recovery-for-virtualization-solutions-data-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eight Potentials To Start A Business Sector In 2015 (Part 1)</title>
		<link>http://bestfreewebhosting.net/eight-potentials-to-start-a-business-sector-in-2015-part-1/</link>
		<comments>http://bestfreewebhosting.net/eight-potentials-to-start-a-business-sector-in-2015-part-1/#respond</comments>
		<pubDate>Mon, 11 Jan 2016 06:00:12 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[TECH]]></category>

		<guid isPermaLink="false">http://bestfreewebhosting.net/?p=615</guid>
		<description><![CDATA[You are planning to start a business? You want to enter the industry has great potential to make every customer products insane? Business Journal Inc. has integrated the data to make a list of 8 sectors have the potential to develop today. Smart Devices – New Generation The concept of “wearable computing” is increasingly popular [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>You are planning to start a business? You want to enter the industry has great potential to make every customer products insane? Business Journal Inc. has integrated the data to make a list of 8 sectors have the potential to develop today.</p>
<p><strong>Smart Devices – New Generation</strong><br />
The concept of “wearable computing” is increasingly popular with smart devices more compact that you can wear as jewelry. Imagine a pair of contact lenses can help you weather or update Facebook. Closer to home, a pair of 3D glasses, clocks and personal devices have been and will change the way you approach the world around them. This will be a potential market is no less present in the smartphone market.</p>
<p><strong>Production of beer and alcoholic beverages</strong><br />
Forget the spirits go! The craft brewing and manufacturing base retail alcoholic beverage is to make food. The traditional formula, the meticulous and exquisite artisan have high quality drinks and formed a popular trend in the US. Sales of individual manufacturers in the US rose 29% in 2012 and with the winemakers, the rate is 32%. With the huge amount of beer consumed in Vietnam every year, you can be confident that you’re not missing the opportunity to get rich.</p>
<p><strong>Tourist boats</strong><br />
Travel by train has always been a symbol of expensive and spiritual discovery. However, the demand for this industry is growing and the demands of increasing customer. Not only segment of luxury cruise ship that river travel or romantic ride in the bay, lake with exceptional service.</p>
]]></content:encoded>
			<wfw:commentRss>http://bestfreewebhosting.net/eight-potentials-to-start-a-business-sector-in-2015-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
