<?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>Round Robin DNS Information and Services</title>
	<atom:link href="http://www.rrdns.com/feed" rel="self" type="application/rss+xml" />
	<link>https://www.rrdns.com</link>
	<description></description>
	<lastBuildDate>Fri, 08 Aug 2014 06:05:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Resolve Passive FTP Data Port connection error</title>
		<link>https://www.rrdns.com/resolve-passive-ftp-data-port-connection-error.html</link>
					<comments>https://www.rrdns.com/resolve-passive-ftp-data-port-connection-error.html#respond</comments>
		
		<dc:creator><![CDATA[Webmaster]]></dc:creator>
		<pubDate>Tue, 08 Oct 2013 18:23:07 +0000</pubDate>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[ftp data error]]></category>
		<category><![CDATA[how to ftp]]></category>
		<category><![CDATA[passive error]]></category>
		<category><![CDATA[technical support]]></category>
		<guid isPermaLink="false">http://www.rrdns.com/?p=328</guid>

					<description><![CDATA[<p>How to Resolve Passive FTP Data Port connection error: If you are not able to connect to FTP data port using passive-mode and getting the connection error as: “FTP Connection Error: Error loading directory” &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; “Server failed to connect data port Error loading directory&#8230;” &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- Then there is possibility that a port range is not [&#8230;]</p>
<p>The post <a href="https://www.rrdns.com/resolve-passive-ftp-data-port-connection-error.html">Resolve Passive FTP Data Port connection error</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-related-none yarpp-template-list'>

No related posts.
</div>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;"><span style="color: #993300;">How to Resolve Passive FTP Data Port connection error:</span></p>
<p>If you are not able to connect to FTP data port using passive-mode and getting the connection error as:</p>
<p><b>“FTP Connection Error:</b></p>
<p><b>Error loading directory”</b></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><b>“Server failed to connect data port</b></p>
<p><b>Error loading directory&#8230;”</b></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Then there is possibility that a port range is not open in the firewall to match the port range used by the FTP service.</p>
<p><b>There are two options to fix this:</b></p>
<p>1) Use active-mode FTP instead of passive. This is normally selectable in the FTP client. In the command-line FTP client, you can simply type &#8220;passive&#8221; to toggle passive/active mode.</p>
<p>2) Configure a port range for passive-mode FTP in the FTP service configuration, and configure the server&#8217;s firewall to allow the connection on them.</p>
<p>If you are using Pure-FTPd, which is the default, you can define the passive-mode port range by editing <b>/etc/pure-ftpd.conf</b> and uncommenting the following directive:</p>
<p>Code:</p>
<pre lang="bash"># Port range for passive connections replies.

# PassivePortRange          30000 50000</pre>
<p>Once you have removed the hash mark (#) from the line starting with</p>
<p>&#8220;PassivePortRange&#8221;, restart Pure-FTPd and edit your firewall configuration to allow traffic on the same port range as mentioned below :</p>
<p>Assuming that your eth0 network interface has public ip (119.54.1.20). FTP uses both port 21 and 20 (port 21 for the command port and port 20 for the data). So following iptables rules take care of both ports (add rules to your iptables based shell script):</p>
<p>1)  Add support for FTP connection tracking via enabling the two iptable modules  as given below:</p>
<p>First login as the root user.</p>
<p>Next type the following command to load two iptables modules:</p>
<pre lang="bash"># modprobe ip_conntrack

# modprobe ip_conntrack_ftp</pre>
<p>2)  Now add following iptable rules for incoming request on port 21 (open port 21) to your script:</p>
<pre lang="bash"># iptables -A INPUT -p tcp -s 0/0 --sport 30000:50000 -d 119.54.1.20 --dport 21 –m state --state NEW,ESTABLISHED -j ACCEPT

# iptables -A OUTPUT -p tcp -s 119.54.1.20 --sport 21 -d 0/0 --dport 30000:50000 –m state --state ESTABLISHED -j ACCEPT</pre>
<p>3)  Now add following iptable rules for allowing the passive post range to your script:</p>
<pre lang="bash"># iptables -A INPUT -p tcp -s 0/0 --sport 30000:50000 -d 119.54.1.20 --dport 30000:50000 -m state --state ESTABLISHED,RELATED -j ACCEPT

# iptables -A OUTPUT -p tcp -s 119.54.1.20 --sport 30000:50000 -d 0/0 --dport 30000:50000 -m state --state ESTABLISHED -j ACCEPT</pre>
<p>4)  Now add following iptable rules for allowing the FTP data Port(20) and passive post range to your script:</p>
<pre lang="bash"># iptables -A OUTPUT -p tcp -s 119.54.1.20 --sport 20 -d 0/0 --dport 30000:50000 –m state --state ESTABLISHED,RELATED -j ACCEPT

# iptables -A INPUT -p tcp -s 0/0 --sport 30000:50000 119.54.1.20 --dport 20 -m state --state ESTABLISHED -j ACCEPT</pre>
<p>Now save the iptables rules as below:</p>
<pre lang="bash"># service iptables save</pre>
<p>Now try accessing the FTP. It should be working for you.</p><p>The post <a href="https://www.rrdns.com/resolve-passive-ftp-data-port-connection-error.html">Resolve Passive FTP Data Port connection error</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-related-none yarpp-template-list'>
<p>No related posts.</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.rrdns.com/resolve-passive-ftp-data-port-connection-error.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to add targeted Host in Nagios</title>
		<link>https://www.rrdns.com/how-to-add-targeted-host-in-nagios.html</link>
					<comments>https://www.rrdns.com/how-to-add-targeted-host-in-nagios.html#respond</comments>
		
		<dc:creator><![CDATA[Webmaster]]></dc:creator>
		<pubDate>Thu, 19 Sep 2013 07:55:34 +0000</pubDate>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Information]]></category>
		<guid isPermaLink="false">http://www.rrdns.com/?p=378</guid>

					<description><![CDATA[<p>Previously We learned about installing the nagios. Today, we will learn how to add targeted host in Nagios in other word adding another server or other hosts, which lives or server is ping or not. If you want to monitor various services on other hosts, then you need to install NRPE agent on target host. [&#8230;]</p>
<p>The post <a href="https://www.rrdns.com/how-to-add-targeted-host-in-nagios.html">How to add targeted Host in Nagios</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->

Related posts:<ol>
<li><a href="https://www.rrdns.com/installing-nagios.html" rel="bookmark" title="Installing Nagios">Installing Nagios</a> <small>Nagios is a host and service monitor designed to inform...</small></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a title="Previously" href="http://www.rrdns.com/installing-nagios.html" target="_blank">Previously</a> We learned about installing the nagios. Today, we will learn <strong>how to add targeted host in Nagios</strong> in other word adding another server or other hosts, which lives or server is ping or not. If you want to monitor various services on other hosts, then you need to install NRPE agent on target host. We know Nagios is best monitoring tools and nagios offers monitoring and alerting for servers, switches, application, and services. It alerts users when things go wrong and alerts them again when the problem has been resolved.<br />
This is the time to add some stuff in nagious. Adding targeted host in nagios is very important but it can be a bit tidy.</p>
<h1>How to add targeted Host in Nagios?</h1>
<p>1) This syntax example shows to add a target &#8220;node01.rrdns.com [10.10.0.201]&#8221;.</p>
<p>[root@master ~]#chgrp nagios /etc/nagios/servers</p>
<p>[root@master ~]#chmod 750 /etc/nagios/servers</p>
<p>[root@master ~]#vi /etc/nagios/servers/node01.cfg</p>
<p># create new</p>
<p>define host{<br />
use linux-server<br />
host_name node01<br />
alias node01<br />
address 10.10.0.201<br />
}<br />
define service{<br />
use generic-service<br />
host_name node01<br />
service_description PING<br />
check_command check_ping!100.0,20%!500.0,60%<br />
}</p>
<p>[root@master ~]#/etc/rc.d/init.d/nagios restart<br />
Running configuration check&#8230;done.<br />
Stopping nagios: .done.<br />
Starting nagios: done.</p>
<p>2) You can access Nagios admin site and confirm the target hosts added or not.</p><p>The post <a href="https://www.rrdns.com/how-to-add-targeted-host-in-nagios.html">How to add targeted Host in Nagios</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<p>Related posts:<ol>
<li><a href="https://www.rrdns.com/installing-nagios.html" rel="bookmark" title="Installing Nagios">Installing Nagios</a> <small>Nagios is a host and service monitor designed to inform...</small></li>
</ol></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.rrdns.com/how-to-add-targeted-host-in-nagios.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Round Robin Clusters available in India via Servers.co.in</title>
		<link>https://www.rrdns.com/round-robin-clusters-available-in-india-via-servers-co-in.html</link>
					<comments>https://www.rrdns.com/round-robin-clusters-available-in-india-via-servers-co-in.html#respond</comments>
		
		<dc:creator><![CDATA[Webmaster]]></dc:creator>
		<pubDate>Mon, 18 Mar 2013 11:54:09 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[cdn servers]]></category>
		<category><![CDATA[clustered hosting]]></category>
		<category><![CDATA[reverse proxy]]></category>
		<category><![CDATA[servers.co.in]]></category>
		<guid isPermaLink="false">http://www.rrdns.com/?p=389</guid>

					<description><![CDATA[<p>Dear Readers, We are happy to announce our strategic partnership with Servers.co.in for providing Round Robin Clusters and Servers in India for our ever-increasing Asian client base. Servers.co.in providers great and affordable servers with top quality network and 24&#215;7 great localized support. Our managed clusters are hosted in their state of art facilities and some of [&#8230;]</p>
<p>The post <a href="https://www.rrdns.com/round-robin-clusters-available-in-india-via-servers-co-in.html">Round Robin Clusters available in India via Servers.co.in</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->

Related posts:<ol>
<li><a href="https://www.rrdns.com/shared-clustered-hosting-services-available.html" rel="bookmark" title="Shared Clustered Hosting Services Available">Shared Clustered Hosting Services Available</a> <small>We are happy to announce the launch of our Shared...</small></li>
<li><a href="https://www.rrdns.com/vps-clusters-now-available.html" rel="bookmark" title="VPS clusters now available">VPS clusters now available</a> <small>Hello People, We have been working constantly on expanding our...</small></li>
<li><a href="https://www.rrdns.com/round-robin-dns-setup-a-howto.html" rel="bookmark" title="Round Robin DNS Setup :: A Howto">Round Robin DNS Setup :: A Howto</a> <small>Round Robin DNS is a technique involving changes to the...</small></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Dear Readers,</p>
<p style="text-align: center;">We are happy to announce our strategic partnership with <a href="http://www.servers.co.in" target="_blank">Servers.co.in</a> for providing Round Robin Clusters and Servers in India for our ever-increasing Asian client base. <a href="http://www.servers.co.in" target="_blank">Servers.co.in</a> providers great and affordable servers with top quality network and 24&#215;7 great localized support. Our managed clusters are hosted in their state of art facilities and some of our clients have already started utilizing our Asian presence for CDN and other advanced hosting needs.<a href="http://www.rrdns.com/wp-content/uploads/2012/09/Define-Partnership-and-Discuss-its-main-Features-or-Characteristics-of-Partnership.jpg"><img decoding="async" class="wp-image-238 aligncenter" alt="Define Partnership and Discuss its main Features or Characteristics of Partnership" src="http://www.rrdns.com/wp-content/uploads/2012/09/Define-Partnership-and-Discuss-its-main-Features-or-Characteristics-of-Partnership.jpg" width="200" height="140" /></a></p>
<p>They are currently offering 25% discount on all their hosting plans and will offer 30% discount on custom clusters off the first invoice. All our offerings like pro blogging clusters, CDN servers, reverse cache proxies, clustered hosting and advanced web hosting are available in Asia with the help of our partner Servers.co.in. Please feel free to send in a query to sales@servers.co.in if you are interested in any of our services in Asia.</p><p>The post <a href="https://www.rrdns.com/round-robin-clusters-available-in-india-via-servers-co-in.html">Round Robin Clusters available in India via Servers.co.in</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<p>Related posts:<ol>
<li><a href="https://www.rrdns.com/shared-clustered-hosting-services-available.html" rel="bookmark" title="Shared Clustered Hosting Services Available">Shared Clustered Hosting Services Available</a> <small>We are happy to announce the launch of our Shared...</small></li>
<li><a href="https://www.rrdns.com/vps-clusters-now-available.html" rel="bookmark" title="VPS clusters now available">VPS clusters now available</a> <small>Hello People, We have been working constantly on expanding our...</small></li>
<li><a href="https://www.rrdns.com/round-robin-dns-setup-a-howto.html" rel="bookmark" title="Round Robin DNS Setup :: A Howto">Round Robin DNS Setup :: A Howto</a> <small>Round Robin DNS is a technique involving changes to the...</small></li>
</ol></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.rrdns.com/round-robin-clusters-available-in-india-via-servers-co-in.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>MySQL &#8211; DBMS</title>
		<link>https://www.rrdns.com/mysql-dbms.html</link>
					<comments>https://www.rrdns.com/mysql-dbms.html#respond</comments>
		
		<dc:creator><![CDATA[Webmaster]]></dc:creator>
		<pubDate>Mon, 28 Jan 2013 16:18:01 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<guid isPermaLink="false">http://www.rrdns.com/?p=370</guid>

					<description><![CDATA[<p>Before we start with the MySQL we need to understand what does database mean? Database is nothing but the collection of data which will be used for any website. Let’s take an example over here, suppose a computer having some files saved name as rrdns.doc, server.doc, host.doc so on. While finding a particular file name [&#8230;]</p>
<p>The post <a href="https://www.rrdns.com/mysql-dbms.html">MySQL – DBMS</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->

Related posts:<ol>
<li><a href="https://www.rrdns.com/installation-of-php-on-linux-distribution.html" rel="bookmark" title="Installation of PHP On Linux  Distribution">Installation of PHP On Linux  Distribution</a> <small>:: Installation of PHP On Linux Distribution :: Prerequisites for...</small></li>
<li><a href="https://www.rrdns.com/the-importance-of-ftp.html" rel="bookmark" title="The importance of FTP">The importance of FTP</a> <small>What is FTP? When you want to copy files between...</small></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<h1>Before we start with the MySQL we need to understand what does database mean?</h1>
<p>Database is nothing but the collection of data which will be used for any website.<br />
Let’s take an example over here, suppose a computer having some files saved name as rrdns.doc, server.doc, host.doc so on.<br />
While finding a particular file name which includes business proposal data which has been made some time ago say for <a title="RRDNS Hosting" href="http://www.rrdnshosting.com" target="_blank">RRDNS Hosting</a> So which file should you open?<br />
One way is to sequentially check each and every single file starting from &#8220;rrdns.doc&#8221; till you gets the right data but this will bring us a highly inefficient method to getting a right file.<br />
There are multiple database software’s that can help to locate the correct file without to manually open every single file sequentially like MySQL.<br />
MySQL is database software which is just program to lets you store and retrieve that data as efficiently as possible.<br />
MySQL is easy to use, powerful, secure and scalable. Because of its small size and speed, it is the ideal database solution for Web sites. It has a solid data security layer which protects data from intruders.<br />
MySQL is Specialised database software and Open Source Database Management System that mean it is possible to use and modify the software.<br />
MySQL databases are commonly used by programs that run on websites.it is what which holds all of website database tables, Queries.<br />
It’s used with web applications and closely to the popularity of PHP<br />
RRDNS servers has been thoroughly tested to prevent memory leaks which having MySQL databases.<br />
RRDNS Clients can be access their MySQL database remotely from RRDNS server through standard TCP/IP sockets using graphical application such as HeidiSQL.<br />
All web hosting companies generally support associated with <a title="Unix/Linux base server" href="http://www.rrdnshosting.com/linux-dedicated-server-hosting.html" target="_blank">Unix/Linux base server</a>, If you want your own page and want MYSQL/PHP support check out http://www.rrdnshosting.com/.<br />
If we want to build a website with bunch of information that the visitors cannot quickly find OR Visitors want to impart information to you, both of these problems can be solved by building a database for the website.<br />
With the help of MySQL databases we can arrange our website information in a systematic format.<br />
Database software’s have many methods for storing, retrieve and organising the stored data.<br />
How to check and select database from command line?<br />
To login database server.</p>
<pre lang="bash"># mysql -h localhost -p -u databaseusername
# mysql> SHOW databases; To check the available databases.
# mysql> SELECT database(); To get currunt database name.</pre>
<h2>How to Create Database from command line?</h2>
<pre lang="bash">mysql> create database databasename;
mysql> grant usage on *.* to databaseusername@localhost identified by 'Databasepassword';
mysql> grant all privileges on databasename.* to databaseuser@localhost ;
mysql> grant CREATE,INSERT,DELETE,UPDATE,SELECT on pauldb.* to databaseusername@localhost;
mysql> set password for databaseuser = password('mysecretpassword');</pre>
<h2>How To Enable Query Cache?</h2>
<p>Before enable query cache it is enabled or not using following command.</p>
<pre lang="bash">mysql> show variables like 'have_query_cache';</pre>
<p>If the result is 0 like in the following example, then the query cache is not enabled:<br />
To Install Query Cache On the Server:</p>
<pre lang="bash">mysql> SET GLOBAL query_cache_size = 16777216;</pre>
<p>To verify if the changes have been done or not.</p>
<p>mysql> SHOW VARIABLES LIKE &#8216;query_cache_size&#8217;;<br />
To Enable Query cache via /etc/my.cnf</p>
<pre lang="bash">Vi /etc/my.cnf</pre>
<p>Insert following Values into the file</p>
<pre lang="bash">query_cache_size = 268435456
query_cache_type=1
query_cache_limit=1048576</pre>
<p>To resolve mysqldump: Got error: 1045: Access denied for user Error.</p>
<p>1. Check that whether you have created the proper MySQL user and gave them the required permission. You can check the user permission by following command.</p>
<pre lang="bash"># SHOW GRANTS FOR 'user'@'localhost';</pre>
<p>OR</p>
<pre lang="bash">#SHOW GRANTS FOR 'user'@'192.168.1.10';</pre>
<p>2. If the permissions are not proper, you might think of providing it properly by</p>
<pre lang="bash"># GRANT ALL ON database.* TO 'user'@'localhost' identified by 'password';</pre>
<p>3. Check whether you are including the host properly in case of remote MySQL connections.</p>
<pre lang="bash"># mysql -h host -u user -p database</pre>
<p>3. Finally, if you have created user and didn’t restarted your MySQL server or ran following command, your MySQL user permissions will not take effect in-spite of creating them. (Ps. This was the issue I was having.)</p>
<pre lang="bash">#FLUSH PRIVILEGES</pre>
<p>Removing blocked IP addresses manually from cPHulk&#8217;s database.</p>
<pre lang="bash"># mysql> use cphulkd;
# mysql> SELECT * FROM brutes WHERE `IP`=’xxx.xxx.xxx.xxx’;
# mysql> DELETE FROM brutes WHERE `IP`=’xxx.xxx.xxx.xxx’;
# mysql>quit</pre>
<p>How to enable MySQL query logs</p>
<p>To enable the query log put following entry into the /etc/my.cnf file under [mysqld] section.</p>
<p>log = path to query.log<br />
general_log=1</p><p>The post <a href="https://www.rrdns.com/mysql-dbms.html">MySQL – DBMS</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<p>Related posts:<ol>
<li><a href="https://www.rrdns.com/installation-of-php-on-linux-distribution.html" rel="bookmark" title="Installation of PHP On Linux  Distribution">Installation of PHP On Linux  Distribution</a> <small>:: Installation of PHP On Linux Distribution :: Prerequisites for...</small></li>
<li><a href="https://www.rrdns.com/the-importance-of-ftp.html" rel="bookmark" title="The importance of FTP">The importance of FTP</a> <small>What is FTP? When you want to copy files between...</small></li>
</ol></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.rrdns.com/mysql-dbms.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Apache Server</title>
		<link>https://www.rrdns.com/apache-server.html</link>
					<comments>https://www.rrdns.com/apache-server.html#respond</comments>
		
		<dc:creator><![CDATA[Webmaster]]></dc:creator>
		<pubDate>Wed, 16 Jan 2013 09:58:51 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Services]]></category>
		<guid isPermaLink="false">http://www.rrdns.com/?p=365</guid>

					<description><![CDATA[<p>What is apache? Apache server, is a simply a public-domain open source Web Server developed by a loosely-knit group of programmers. ==About apache Web Server== The first version of Apache, based on the NCSA(National Center for Supercomputing Applications) httpd Web server. Basically it was developed in 1995 and usually it uses on linux operating system.The original version of this [&#8230;]</p>
<p>The post <a href="https://www.rrdns.com/apache-server.html">Apache Server</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->

Related posts:<ol>
<li><a href="https://www.rrdns.com/apache-handler.html" rel="bookmark" title="Apache Handler">Apache Handler</a> <small>Apache Handler What Apache-Handler is ? it is a means...</small></li>
<li><a href="https://www.rrdns.com/apache-mpm-multi-processing-module-2.html" rel="bookmark" title="Apache MPM-Multi Processing Module">Apache MPM-Multi Processing Module</a> <small>APACHE MPM APACHE MPM:- MPM stands for Multiple Processing Modules....</small></li>
<li><a href="https://www.rrdns.com/installation-of-php-on-linux-distribution.html" rel="bookmark" title="Installation of PHP On Linux  Distribution">Installation of PHP On Linux  Distribution</a> <small>:: Installation of PHP On Linux Distribution :: Prerequisites for...</small></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<h1>What is apache?</h1>
<p>Apache server, is a simply a public-domain open source Web Server developed by a loosely-knit group of programmers.</p>
<h2>==About apache Web Server==</h2>
<p>The first version of Apache, based on the NCSA(National Center for Supercomputing Applications) httpd Web server. Basically it was developed in 1995 and usually it uses on linux operating system.The original version of this server was written for UNIX, but there are now versions that run under OS/2, Windows/Linux and other platforms. Programmer &#8220;Brian Behlendorf&#8221; is the founder of Apache Web Server born March 30, 1973.</p>
<h2>==Apache Server Versions==</h2>
<p>Since its initial launch the web server has undergone a number of improvements, which led to the release of several versions. Below are the Apache Server versions along with their disscription.</p>
<p><strong>-Apache 1.3-</strong> boasts a great deal of improvements over 1.2, the most noteworthy of them being &#8211; useful configurable files, Windows and Novell NetWare support, DSO support, APXS tool and others.</p>
<p><strong>-Apache 2.0-</strong>differs from the previous versions by the much re-written code, which has considerably simplified its configuration and boosted its efficiency. It supports Ipv6, Unix threading, other protocols such as mod_echo. This version also offers a new compilation system and multi-language error messaging.</p>
<p><strong>-Apache 2.2-</strong> came out in 2006 and offers new and more flexible modules for user authentication and proxy caching, support for files exceeding 2 GB, as well as SQL support.</p>
<h2>==Advantage of Apache Server==</h2>
<p>&#8220;Apache is&#8230;much faster serving static resources&#8221; as that&#8217;s highly qualitative.Apache is a popular open-source web server and has been the most popular open source web server on the internet for the last few years. With Apache, you can create VirtualHosts on your main server that will accept requests from designated servers and route them to the correct ports. These VirtualHosts can be defined in the configuration file, which is basically where most of the configuration for Apache is done.web server is a system that stores information and delivers, or &#8220;serves,&#8221; this data when needed. Every website on the Internet resides on a web server. When a user access website, server sends the data that is displayed on the screen.</p>
<h2>==Apache Installation and Server configuration==</h2>
<p>You can use below commands to install Apache on linux. You need to upload files at /var/www/html under RHEL / CentOS / Fedora Linux operating system. You need to configure and use Apache as per the requirement. /etc/httpd/conf/httpd.conf (RHEL/Cent OS/Fedora Core Linux) or /etc/apache2/httpd.conf (Debian / Ubuntu Linux) is the location of apache configuration file.</p>
<p># yum install httpd<br />
# chkconfig httpd on<br />
# /etc/init.d/httpd start</p><p>The post <a href="https://www.rrdns.com/apache-server.html">Apache Server</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<p>Related posts:<ol>
<li><a href="https://www.rrdns.com/apache-handler.html" rel="bookmark" title="Apache Handler">Apache Handler</a> <small>Apache Handler What Apache-Handler is ? it is a means...</small></li>
<li><a href="https://www.rrdns.com/apache-mpm-multi-processing-module-2.html" rel="bookmark" title="Apache MPM-Multi Processing Module">Apache MPM-Multi Processing Module</a> <small>APACHE MPM APACHE MPM:- MPM stands for Multiple Processing Modules....</small></li>
<li><a href="https://www.rrdns.com/installation-of-php-on-linux-distribution.html" rel="bookmark" title="Installation of PHP On Linux  Distribution">Installation of PHP On Linux  Distribution</a> <small>:: Installation of PHP On Linux Distribution :: Prerequisites for...</small></li>
</ol></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.rrdns.com/apache-server.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Domain management using cPanel</title>
		<link>https://www.rrdns.com/domain-management-through-cpanel.html</link>
					<comments>https://www.rrdns.com/domain-management-through-cpanel.html#respond</comments>
		
		<dc:creator><![CDATA[Webmaster]]></dc:creator>
		<pubDate>Sat, 12 Jan 2013 08:19:25 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<guid isPermaLink="false">http://www.rrdns.com/?p=343</guid>

					<description><![CDATA[<p>Domain management Domain management using cPanel is very easy.  Domain section allows you to manage your subdomains, addon domains and parked domains. Additionally you can set the redirects for your URL&#8217;s. Buying domain name transfer and domain ID protection becomes easy with Domain section of cPanel. Through this section you can change the DNS settings [&#8230;]</p>
<p>The post <a href="https://www.rrdns.com/domain-management-through-cpanel.html">Domain management using cPanel</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->

Related posts:<ol>
<li><a href="https://www.rrdns.com/round-robin-dns-setup-a-howto.html" rel="bookmark" title="Round Robin DNS Setup :: A Howto">Round Robin DNS Setup :: A Howto</a> <small>Round Robin DNS is a technique involving changes to the...</small></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<h1>Domain management</h1>
<p>Domain management using cPanel is very easy.  Domain section allows you to manage your subdomains, addon domains and parked domains. Additionally you can set the redirects for your URL&#8217;s. Buying domain name transfer and domain ID protection becomes easy with Domain section of cPanel.</p>
<div id="attachment_347" style="width: 537px" class="wp-caption aligncenter"><img fetchpriority="high" decoding="async" aria-describedby="caption-attachment-347" class="size-full wp-image-347 " title="Domain management using cPanel" src="http://www.rrdns.com/wp-content/uploads/2013/01/cpanel-domain-management.png" alt="Domain management using cPanel" width="527" height="181" srcset="https://www.rrdns.com/wp-content/uploads/2013/01/cpanel-domain-management.png 527w, https://www.rrdns.com/wp-content/uploads/2013/01/cpanel-domain-management-300x103.png 300w" sizes="(max-width: 527px) 100vw, 527px" /><p id="caption-attachment-347" class="wp-caption-text">Domain management using cPanel</p></div>
<p>Through this section you can change the DNS settings of your domain as well..</p>
<p><strong>Subdomains</strong> &#8211; Through this feature you can add subdomains for your primary, parked and addon domains.</p>
<div id="attachment_350" style="width: 570px" class="wp-caption aligncenter"><img decoding="async" aria-describedby="caption-attachment-350" class="size-full wp-image-350" src="http://www.rrdns.com/wp-content/uploads/2013/01/subdomains.jpg" alt="Domain management-Subdomain" width="560" height="300" srcset="https://www.rrdns.com/wp-content/uploads/2013/01/subdomains.jpg 560w, https://www.rrdns.com/wp-content/uploads/2013/01/subdomains-300x160.jpg 300w" sizes="(max-width: 560px) 100vw, 560px" /><p id="caption-attachment-350" class="wp-caption-text">Domain management-Subdomain</p></div>
<p>&nbsp;</p>
<p><strong>Addon domains</strong> &#8211; Through this feature you can add addon domains to your account.</p>
<p><strong>Parked domains</strong> &#8211; Using this feature you can add parked domains to your account.</p>
<p><strong>Redirects</strong> &#8211; Using this tool you can set a Temporary or a Permanent redirect for your web site to a separate one or from one file to another. You can also set a wild card redirect for all the files under a directory.</p>
<div id="attachment_351" style="width: 570px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-351" class="size-full wp-image-351" src="http://www.rrdns.com/wp-content/uploads/2013/01/redirect.jpg" alt="Domain management-redirect" width="560" height="300" srcset="https://www.rrdns.com/wp-content/uploads/2013/01/redirect.jpg 560w, https://www.rrdns.com/wp-content/uploads/2013/01/redirect-300x160.jpg 300w" sizes="(max-width: 560px) 100vw, 560px" /><p id="caption-attachment-351" class="wp-caption-text">Domain management-redirect</p></div>
<p>&nbsp;</p>
<p><strong>Domain Transfer</strong> &#8211; If you have a domain name with top level domain extensions like .com, .net, .org, .info, .biz, .us, .co.uk, .org.uk and you wish to manage your domain more conveniently together with your hosting account, you can transfer your domain name to <a title="RRDNShosting" href="http://www.rrdnshosting.com" target="_blank">RRDNShosting</a>.</p>
<p><strong>Register New Domain</strong> &#8211; If you need a new domain name for your account, you can register one through <a title="RRDNShosting" href="https://www.mybillingsite.com/domainchecker.php" target="_blank">RRDNShosting</a>. Domain names with the following extensions can be registered &#8211; .com, .net, .org, .info, .biz, .us, .co.uk, .org.uk, .eu, .ca, .me, .tel, .mobi.</p>
<p><strong>Domain ID Protect</strong> &#8211; Protect your privacy by hiding the WHOIS info for your domain name. With a Domain ID Protect you can hide your name and organization, living address, phone, email address, etc, which will be otherwise visible through public Domain Whois services.</p>
<p><strong>Domain Manager</strong> &#8211; Manage your domain DNS and WHOIS information.</p>
<p><strong>Primary Domain Change </strong>&#8211; You can change the primary domain name for your account to another one.</p>
<p><strong>Advanced DNS Zone Editor</strong> &#8211; This tool gives you advanced options when editing your DNS zone.</p>
<p><strong>Simple DNS Zone Editor</strong> &#8211; A simpler but efficient tool to manage your DNS zone.</p>
<p>&nbsp;</p><p>The post <a href="https://www.rrdns.com/domain-management-through-cpanel.html">Domain management using cPanel</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<p>Related posts:<ol>
<li><a href="https://www.rrdns.com/round-robin-dns-setup-a-howto.html" rel="bookmark" title="Round Robin DNS Setup :: A Howto">Round Robin DNS Setup :: A Howto</a> <small>Round Robin DNS is a technique involving changes to the...</small></li>
</ol></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.rrdns.com/domain-management-through-cpanel.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>PHP Handler</title>
		<link>https://www.rrdns.com/php-handler.html</link>
					<comments>https://www.rrdns.com/php-handler.html#respond</comments>
		
		<dc:creator><![CDATA[Webmaster]]></dc:creator>
		<pubDate>Mon, 17 Dec 2012 15:18:32 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<guid isPermaLink="false">http://www.rrdns.com/?p=307</guid>

					<description><![CDATA[<p>PHP Handler In order to run a PHP site, the server must interpret the PHP code and generate a page most probably in HTML format that should be easily readable by the browser, when visitors access the website. A PHP handler actually loads the libraries so that they can be used for interpretation of PHP [&#8230;]</p>
<p>The post <a href="https://www.rrdns.com/php-handler.html">PHP Handler</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->

Related posts:<ol>
<li><a href="https://www.rrdns.com/apache-handler.html" rel="bookmark" title="Apache Handler">Apache Handler</a> <small>Apache Handler What Apache-Handler is ? it is a means...</small></li>
<li><a href="https://www.rrdns.com/apache-mpm-multi-processing-module-2.html" rel="bookmark" title="Apache MPM-Multi Processing Module">Apache MPM-Multi Processing Module</a> <small>APACHE MPM APACHE MPM:- MPM stands for Multiple Processing Modules....</small></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<h1>PHP Handler</h1>
<p>In order to run a PHP site, the server must interpret the PHP code and generate a page most probably in HTML format that should be easily readable by the browser, when visitors access the website.<br />
A PHP handler actually loads the libraries so that they can be used for interpretation of PHP code.<br />
There are multiple different handlers that can be used for loading PHP with an Apache server :-</p>
<p><span style="color: #0000ff">&#8211; CGI</span><br />
<span style="color: #0000ff">&#8211; DSO</span><br />
<span style="color: #0000ff">&#8211; suPHP</span><br />
<span style="color: #0000ff">-FastCGI.</span></p>
<p>Each handler delivers the libraries through different files and implementations. Each file and implementation affects Apache’s performance, because it determines how Apache serves PHP.<br />
It is essential for your server’s performance that you select the handler that fits your situation. Selecting the right handler is just as important as the PHP version itself. One handler is not necessarily always better than another; it depends on your unique setup.</p>
<h2>How to change the handler</h2>
<p>1) Though WHM Panel :-<br />
Main &gt;&gt; Service Configuration &gt;&gt; Configure PHP and SuExec<br />
You simply select your PHP handler choice from the drop-down menu. Then hit “Save New Configuration”.<br />
2) Via Shell</p>
<pre># /scripts/easyapache</pre>
<p>OR</p>
<pre>#/usr/local/cpanel/bin/rebuild_phpconfig</pre>
<h2>PHP handlers:-</h2>
<h3>CGI</h3>
<p>CGI stands for: Common Gateway Interface. CGI handler will run PHP as a CGI module. CGI still runs PHP processes as the Apache ‘nobody’ user. However, if you have suEXEC enabled, it will allow you to see the user that made the request.<br />
CGI is considered as Neither Secure Nor Fast. CGI is never recommended.</p>
<pre>http://docs.cpanel.net/twiki/bin/view/AllDocumentation/WHMDocs/MorePhphandlers</pre>
<h3>DSO (mod_php)</h3>
<p>Apache 1.3 introduced a method to load the modules dynamically called as Dynamic Sharing Object (DSO ) running in an Apache web server. DSO allows to load additional modules to apache webserver anytime without recompiling an entire server.<br />
PHP as an Apache module is DSO.<br />
It is also know as mod_php.<br />
It runs PHP as an Apache module. This means that PHP scripts will run as the Apache user, which is the user: ‘nobody’.<br />
<span style="color: #0000ff">Merits</span> :-<br />
&#8211; DSO is an older configuration<br />
&#8211; Actually considered as the fastest PHP handler.<br />
&#8211; Optimal utilization of resource usage.<br />
-Additional modules can be added without recompilation of server-<br />
<span style="color: #ff0000">De-Merits</span> :-<br />
&#8211; Files created by PHP scripts will have ownership as “NOBODY” – the situation is more prone to website compromise by an attacker. If an hacker finds an exploit in PHP script. This will give them the ability to modify files outside of that user’s account. This is really worst.<br />
-Websites that need to upload files through PHP may face permission issues, due to conflicts settings of permissions.<br />
&#8211; OS Platform restriction, since dynamic loading is not supported by some OS.<br />
More Information</p>
<h3>suPHP</h3>
<p>suPHP stands for Single user PHP. suPHP also runs PHP as a CGI module instead of an Apache module. The main difference, and the advantage of having suPHP, is that with suEXEC enabled it runs the PHP scripts as the user calling them, rather than as the ‘nobody’ user.<br />
suPHP is typically the default handler and is recommended by cPanel for serving PHP because you will be able to see which user owns the account that is running the PHP script.<br />
suPHP is beneficial in that if you are using a file upload tool on your site (such as an automatic updater or theme/plug-in installer for WordPress), the files will already have the right ownership &amp; permissions. Uploading and other WordPress functions will not work without suPHP or FastCGI.<br />
<span style="color: #0000ff">Merits</span> :-<br />
&#8211; The security difference between suPHP and DSO is that suPHP confines an intruder to the particular user that he/she has affected. The exploit can’t cross accounts, however it can affect every single file the user owns as opposed to just the files writable by the webserver.<br />
&#8211; suPHP also offers a security advantage that any php script that is not owned by the particular user (such as another account or root) will not be executable.<br />
<span style="color: #ff0000">De-Merits</span> :-<br />
&#8211; suPHP generally runs a much higher CPU load. In addition, you CANNOT use an Opcode Cache (such as eAccelerator, Xcache or APC) with suPHP. It is strongly recommend that you install a caching plug-into supplement. If you find that your server is still continually struggling with CPU usage, you will want to consider switching to DSO or FastCGI.</p>
<h3>FastCGI</h3>
<p>FastCGI also called as FCGI or mod_fcgid it is similar to suPHP and/or is a high performance variation of CGI. It has the security/ownership benefits of suPHP in that PHP scripts will run as the actual cPanel user as opposed to ‘nobody’.<br />
The difference with FastCGI is that it can drastically save on CPU performance and give speeds close to that of DSO. It can also be used with an opcode cacher like eAccelerator or APC, which can help further speed the loading of pages.<br />
<span style="color: #ff0000">De-Merits</span> :-<br />
&#8211; FastCGI has a high memory usage. ( because rather than creating the PHP process each time it is called, like suPHP, it keeps a persistent session open in the background).<br />
Go through below Image that will depict the PHP Handler :-</p>
<p>How to check current PHP Handler on server :-</p>
<pre># /usr/local/apache/bin/rebuild_phpconf –current</pre><p>The post <a href="https://www.rrdns.com/php-handler.html">PHP Handler</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<p>Related posts:<ol>
<li><a href="https://www.rrdns.com/apache-handler.html" rel="bookmark" title="Apache Handler">Apache Handler</a> <small>Apache Handler What Apache-Handler is ? it is a means...</small></li>
<li><a href="https://www.rrdns.com/apache-mpm-multi-processing-module-2.html" rel="bookmark" title="Apache MPM-Multi Processing Module">Apache MPM-Multi Processing Module</a> <small>APACHE MPM APACHE MPM:- MPM stands for Multiple Processing Modules....</small></li>
</ol></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.rrdns.com/php-handler.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Apache Handler</title>
		<link>https://www.rrdns.com/apache-handler.html</link>
					<comments>https://www.rrdns.com/apache-handler.html#respond</comments>
		
		<dc:creator><![CDATA[Webmaster]]></dc:creator>
		<pubDate>Fri, 14 Dec 2012 10:36:46 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<guid isPermaLink="false">http://www.rrdns.com/?p=304</guid>

					<description><![CDATA[<p>Apache Handler What Apache-Handler is ? it is a means of telling the Apache web server ; how to process a given type of file. By default, Apache only handles certain file types. Apache handlers control how your site’s Apache web server manages certain file types and file extensions. Apache comes configured to handle CGI [&#8230;]</p>
<p>The post <a href="https://www.rrdns.com/apache-handler.html">Apache Handler</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->

Related posts:<ol>
<li><a href="https://www.rrdns.com/apache-mpm-multi-processing-module-2.html" rel="bookmark" title="Apache MPM-Multi Processing Module">Apache MPM-Multi Processing Module</a> <small>APACHE MPM APACHE MPM:- MPM stands for Multiple Processing Modules....</small></li>
<li><a href="https://www.rrdns.com/importance-of-dns-servers.html" rel="bookmark" title="Importance of DNS Servers">Importance of DNS Servers</a> <small>DNS servers turns IP address to human friendly domain name...</small></li>
<li><a href="https://www.rrdns.com/the-importance-of-ftp.html" rel="bookmark" title="The importance of FTP">The importance of FTP</a> <small>What is FTP? When you want to copy files between...</small></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<h1>Apache Handler</h1>
<h3>What Apache-Handler is ?</h3>
<p>it is a means of telling the Apache web server ; how to process a given type of file. By default, Apache only handles certain file types. Apache handlers control how your site’s Apache web server manages certain file types and file extensions. Apache comes configured to handle CGI scripts and server-parsed files. The extensions include: .cgi, .pl, .plx, .perl, and .shtml.<br />
If you wish Apache to do a different action, you will need to make a handler to tell Apache to perform that action. For example, if you use a file type that requires a special service to run it, such as a file with server side includes that is not named with a .shtml extension, you need to tell Apache to treat these files differently.</p>
<p>To get regular html pages to handle php code, you need to add this line to your .htaccess file.<br />
AddHandler application/x-httpd-php5 .html .htm<br />
It is highly recommended that you never allow html pages to automatically handle php or shtml, because this forces all of your html pages to be processed by the server first. Instead, please rename your files to .php or .shtml whenever possible.<br />
HTML pages can be sent directly to a visitors browser, with no processing. However, PHP must be processed by the server before it is sent to the visitor, thus using more resources. (If you set that code in your .htaccess, it will work, and it will be more convenient, but it will also greatly increase your resource usage).<br />
The Built-in Apache handlers are :-<br />
default-handler : Send the file to the browser using default_handler() function, which is used to handle default static pages.<br />
send-as-is : Send file with HTTP headers &gt;&gt; mod_asis)<br />
cgi-script : Treat file as CGI script &gt;&gt; mod_cgi<br />
imap-file : Parse as an imagemap rule file &gt;&gt; mod_imagemap<br />
server-info : Get servers config info &gt;&gt; mod_info<br />
server-status : Get servers status stas &gt;&gt; mod_status</p><p>The post <a href="https://www.rrdns.com/apache-handler.html">Apache Handler</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<p>Related posts:<ol>
<li><a href="https://www.rrdns.com/apache-mpm-multi-processing-module-2.html" rel="bookmark" title="Apache MPM-Multi Processing Module">Apache MPM-Multi Processing Module</a> <small>APACHE MPM APACHE MPM:- MPM stands for Multiple Processing Modules....</small></li>
<li><a href="https://www.rrdns.com/importance-of-dns-servers.html" rel="bookmark" title="Importance of DNS Servers">Importance of DNS Servers</a> <small>DNS servers turns IP address to human friendly domain name...</small></li>
<li><a href="https://www.rrdns.com/the-importance-of-ftp.html" rel="bookmark" title="The importance of FTP">The importance of FTP</a> <small>What is FTP? When you want to copy files between...</small></li>
</ol></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.rrdns.com/apache-handler.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Apache MPM-Multi Processing Module</title>
		<link>https://www.rrdns.com/apache-mpm-multi-processing-module-2.html</link>
					<comments>https://www.rrdns.com/apache-mpm-multi-processing-module-2.html#respond</comments>
		
		<dc:creator><![CDATA[Webmaster]]></dc:creator>
		<pubDate>Wed, 12 Dec 2012 15:27:30 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<guid isPermaLink="false">http://www.rrdns.com/?p=295</guid>

					<description><![CDATA[<p>APACHE MPM APACHE MPM:- MPM stands for Multiple Processing Modules. The main purpose of MPM is binding network ports on machine, accepting request and dispatching children to handle the requets. Apache implements specialised MPM. MPM must be chosen while configuring and must be compiled in the server. MPM behaves like Apache module, the basic difference [&#8230;]</p>
<p>The post <a href="https://www.rrdns.com/apache-mpm-multi-processing-module-2.html">Apache MPM-Multi Processing Module</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-related-none yarpp-template-list'>

No related posts.
</div>
]]></description>
										<content:encoded><![CDATA[<h1>APACHE MPM</h1>
<p>APACHE MPM:-<br />
MPM stands for Multiple Processing Modules. The main purpose of MPM is binding network ports on machine, accepting request and dispatching children to handle the requets.<br />
Apache implements specialised MPM. MPM must be chosen while configuring and must be compiled in the server. MPM behaves like Apache module, the basic difference is only one MPM must be loaded into the server at any time. MPM are not actually modules that are loaded by apache. Instead they are compiled into apache.<br />
We can compare MPM as an aperture which is responsible for accepting requests, spawning child processes; based on requests assigning child process and processing the request<br />
List of Apache MPM modules are available. Refer the link for the same :-</p>
<pre lang="bash">http://httpd.apache.org/docs/2.0/mod/</pre>
<p>Some of the well know and widely implemented MPM’s :-<br />
1) Prefork<br />
2) Event<br />
3) Worker</p>
<p>CHECK WHICH MPM IS ACTIVE ?</p>
<pre lang="bash">#httpd –V or
#/usr/sbin/httpd –V | grep MPM</pre>
<p>TYPES OF MPM :-<br />
Basically, there are two major MPM’s</p>
<h3>1) Prefork :-</h3>
<p>A single control process is responsible for launching child processes which listen for connections and serve them when they arrive. Apache always tries to maintain several idle processes, which are ready to serve incoming requests. Therefore, client do not need to wait for a new child processes to be forked before their requests can be served.</p>
<p>“The prefork MPM runs multiple processes with each child process handling one connection”.<br />
Prefork are non-threaded MPM<br />
Preform is the default module given by an Apache.<br />
Merits :-<br />
-Stable and Secure<br />
-Compatible with all implementations (cgi, fcgi, suPHP, DSO).<br />
-Failure of one process won’t affect other connections.</p>
<p>De-Merits:-<br />
-Simultaneous execution of multiple processes &gt;&gt; indicates more memory usage.<br />
A typical configuration of the process controls in the Preform MPM could look as follows:</p>
<p>StartServers 8<br />
MinSpareServers 5<br />
MaxSpareServers 20<br />
MaxClients 256<br />
MaxRequestsPerChild 1000</p>
<p><a title="More Information" href="http://httpd.apache.org/docs/2.0/mod/prefork.html" target="_blank">More Information</a> for parameters</p>
<h3>2) Worker :-</h3>
<p>Asingle control process that is, parent process is responsible for launching child processes. Each child process creates a fixed number of server threads as specified in the configuration, as well as listener thread which listens for connections and passes them to server for processing.</p>
<p>“The worker MPM has one control process that launches multi-threaded child processes which handles one connection per thread”.<br />
Worker is a threaded MPM</p>
<p>Merits :-</p>
<p>-Multi-threaded design utilizes less memory usage irrespective of high connections.<br />
-Fast performance.</p>
<p>De-Merits :-</p>
<p>-DSO Module Incompatible.<br />
A typical configuration of the process-thread controls in the Worker MPM could look as follows:</p>
<p>ServerLimit 16<br />
StartServers 2<br />
MaxClients 150<br />
MinSpareThreads 25<br />
MaxSpareThreads 75<br />
ThreadsPerChild 25</p>
<p><a title="More Information" href="http://httpd.apache.org/docs/2.0/mod/worker.html" target="_blank">More Information</a> for parameters</p><p>The post <a href="https://www.rrdns.com/apache-mpm-multi-processing-module-2.html">Apache MPM-Multi Processing Module</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-related-none yarpp-template-list'>
<p>No related posts.</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.rrdns.com/apache-mpm-multi-processing-module-2.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Importance of DNS Servers</title>
		<link>https://www.rrdns.com/importance-of-dns-servers.html</link>
					<comments>https://www.rrdns.com/importance-of-dns-servers.html#respond</comments>
		
		<dc:creator><![CDATA[Webmaster]]></dc:creator>
		<pubDate>Mon, 10 Dec 2012 10:41:06 +0000</pubDate>
				<category><![CDATA[Information]]></category>
		<guid isPermaLink="false">http://www.rrdns.com/?p=286</guid>

					<description><![CDATA[<p>DNS servers turns IP address to human friendly domain name like http://www.rrdnshosting.com If DNS server don&#8217;t exist internet use will become pain in the ass. That underlines the importance of DNS servers. What is DNS? DNS stands for Domain Name System. A domain name is the unique name that is assigned to a website. DNS [&#8230;]</p>
<p>The post <a href="https://www.rrdns.com/importance-of-dns-servers.html">Importance of DNS Servers</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->

Related posts:<ol>
<li><a href="https://www.rrdns.com/the-importance-of-ftp.html" rel="bookmark" title="The importance of FTP">The importance of FTP</a> <small>What is FTP? When you want to copy files between...</small></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>DNS servers turns IP address to human friendly domain name like <a title="http://www.rrdnshosting.com" href="http://www.rrdnshosting.com">http://www.rrdnshosting.com</a> If DNS server don&#8217;t exist internet use will become pain in the ass. That underlines the importance of DNS servers.</p>
<h1>What is DNS?</h1>
<p><strong>DNS</strong> stands for Domain Name System. A domain name is the unique name that is assigned to a website. <strong>DNS</strong> is the system that enables this to work. When you build a website, you also register a <a title="domain name" href="http://www.rrdnshosting.com" target="_blank">domain name</a>. Then, you point the domain name to your website.</p>
<p>For a domain name to be assigned to a website, it first needs to be added to a <strong><a href="http://www.rrdnshosting.com">DNS SERVER</a></strong>. A <strong>DNS (Domain Name System) SERVER</strong> is a large database containing each domain name and its corresponding IP address. For example, if the domain name &#8220;<a title="http://www.rrdnshosting.com" href="http://www.rrdnshosting.com" target="_blank">http://www.rrdnshosting.com</a>&#8221; resolves to the website at 55.114.57.26 the <strong><a href="http://www.rrdnshosting.com">DNS SERVER</a></strong> holds this information.</p>
<p>How does my Browser find the right Website?</p>
<p>1. Your browser checks it&#8217;s cache (memory) to see if it knows which IP address the domain name resolves to. If it knows, it will resolve it and display the web page.<br />
2. If the domain name is unable to be resolved, the browser will check your hosts file for a <strong>DNS</strong> entry (more on hosts files below).<br />
3. If there&#8217;s no entry in the hosts file, the browser will check the default <strong><a href="http://www.rrdnshosting.com">DNS SERVER</a></strong> (specified via your computer&#8217;s network settings). This is usually your ISP&#8217;s <strong>DNS</strong> <strong>SERVER</strong> or your employer&#8217;s.<br />
If the <strong><a href="http://www.rrdnshosting.com">DNS SERVER</a></strong> has an entry for that domain name, the browser will display the applicable website.<br />
4. If the default <strong><a href="http://www.rrdnshosting.com">DNS SERVER</a></strong> doesn&#8217;t have an entry for that domain name, the browser will attempt to find a <strong>DNS</strong> <strong>SERVER</strong> somewhere in the world that does. This is made easier by the hierarchical structure of <strong><a href="http://www.rrdnshosting.com">DNS SERVERS</a></strong> throughout the world.<br />
If the domain name can be resolved, the applicable website will be displayed.<br />
5. If the browser can&#8217;t find a <strong>DNS</strong> entry anywhere, it won&#8217;t be able to resolve the domain name (or URL). This is usually due to there being no entry for that domain name, or possible network problems between your computer and the <strong><a href="http://www.rrdnshosting.com">DNS SERVER</a></strong>. In this case, your browser will display an error page.</p><p>The post <a href="https://www.rrdns.com/importance-of-dns-servers.html">Importance of DNS Servers</a> first appeared on <a href="https://www.rrdns.com">Round Robin DNS Information and Services</a>.</p><div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<p>Related posts:<ol>
<li><a href="https://www.rrdns.com/the-importance-of-ftp.html" rel="bookmark" title="The importance of FTP">The importance of FTP</a> <small>What is FTP? When you want to copy files between...</small></li>
</ol></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.rrdns.com/importance-of-dns-servers.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
