<?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>Hello System Admin &#124; Where system admins share technical article and tips &#124; Create free Blog &#124; Updates on domains, web hosting, servers and more &#187; Featured</title>
	<atom:link href="http://hellosystemadmin.com/blog/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://hellosystemadmin.com</link>
	<description></description>
	<lastBuildDate>Wed, 06 Apr 2011 02:50:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>create free blogs for system admins</title>
		<link>http://hellosystemadmin.com/blog/create-free-blogs-for-system-admins/</link>
		<comments>http://hellosystemadmin.com/blog/create-free-blogs-for-system-admins/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 06:19:46 +0000</pubDate>
		<dc:creator>Aneesh</dc:creator>
				<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://hellosystemadmin.com/?p=242</guid>
		<description><![CDATA[



Create yourown blogs  .  Share your knowledge with others , create your own signature in the web.
You can also upload photos , videos and much more.  We also provide sigmple Adsense integration plugin and using this you can add your Google adsense code in your blogs .
Create Your Blogs : http://hellosystemadmin.com/login/
Customise your Blogs : http://hellosystemadmin.com/support/docs/
]]></description>
			<content:encoded><![CDATA[<p><code><script type="text/javascript"><!--
google_ad_client = "pub-2585810307670535";
/* 468x60, created 11/28/09 */
google_ad_slot = "9594852426";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></code></p>
<p><strong>Create yourown blogs  .  Share your knowledge with others , create your own signature in the web.</strong></p>
<p>You can also upload photos , videos and much more.  We also provide sigmple Adsense integration plugin and using this you can add your Google adsense code in your blogs .</p>
<p>Create Your Blogs : <a href="http://hellosystemadmin.com/login/">http://hellosystemadmin.com/login/</a></p>
<p>Customise your Blogs : <a href="http://hellosystemadmin.com/support/docs/">http://hellosystemadmin.com/support/docs/</a></p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fhellosystemadmin.com%2Fblog%2Fcreate-free-blogs-for-system-admins%2F', 'create+free+blogs+for+system+admins')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fhellosystemadmin.com%2Fblog%2Fcreate-free-blogs-for-system-admins%2F', title: '+create+free+blogs+for+system+admins+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://hellosystemadmin.com/blog/create-free-blogs-for-system-admins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install SVN server , create respository and users</title>
		<link>http://hellosystemadmin.com/blog/install-svn-server-create-respository-and-users/</link>
		<comments>http://hellosystemadmin.com/blog/install-svn-server-create-respository-and-users/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 07:10:31 +0000</pubDate>
		<dc:creator>Aneesh</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://dev3.ispg.in/aneesh/sysadmin/?p=54</guid>
		<description><![CDATA[Easiest way to install SVN Server]]></description>
			<content:encoded><![CDATA[<p><code><script type="text/javascript"><!--
google_ad_client = "pub-2585810307670535";
/* 468x60, created 11/28/09 */
google_ad_slot = "9594852426";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></code></p>
<p>I am going to install SVN‚  on Fedora</p>
<p><strong>1. Install SVN</strong><br />
yum install subversion<br />
<strong>2.  Create a Repository</strong><br />
svnadmin create /svn_repos<br />
<strong>3. Create a SVN User</strong><br />
Edit‚  /svnrepos/conf/svnserve.conf and add the follwoing lines to it<br />
anon-access = none<br />
auth-access = write<br />
password-db = passwd</p>
<p><strong>4. Create a password file</strong><br />
Edit /svnrepos/conf/passwd and add the follwing line to it<br />
systemadmin = mypassword<br />
<em>#You can add another use in the same way by adding a new line in the same file</em><br />
<strong>5. Start the SVN Server as Daemon</strong><br />
svnserve -d<br />
<strong>6. Connecting from a client machine</strong><br />
Install SVN clinet amd comect to the SVN server‚  by<br />
svn co svn://SERVER_IP_ADDRESS/svn_repos</p>
<p><code><script type="text/javascript"><!--
google_ad_client = "pub-2585810307670535";
/* 468x60, created 11/28/09 */
google_ad_slot = "9594852426";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></code></p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fhellosystemadmin.com%2Fblog%2Finstall-svn-server-create-respository-and-users%2F', 'Install+SVN+server+%2C+create+respository+and+users')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fhellosystemadmin.com%2Fblog%2Finstall-svn-server-create-respository-and-users%2F', title: '+Install+SVN+server+%2C+create+respository+and+users+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://hellosystemadmin.com/blog/install-svn-server-create-respository-and-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Apache and IIS on Windws server</title>
		<link>http://hellosystemadmin.com/blog/install-apache-and-iis-on-windws-server/</link>
		<comments>http://hellosystemadmin.com/blog/install-apache-and-iis-on-windws-server/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 06:55:18 +0000</pubDate>
		<dc:creator>Aneesh</dc:creator>
				<category><![CDATA[Apache on windows]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://dev3.ispg.in/aneesh/sysadmin/?p=44</guid>
		<description><![CDATA[



You can install both apache and IIS on same port if the system has two IP address. You may install IIS and apache server in normal way. IF IIS is started  prior to Apache, IIS will take all the IP address and apache cannot start on the same port. Do fix this, we need to [...]]]></description>
			<content:encoded><![CDATA[<p><code><script type="text/javascript"><!--
google_ad_client = "pub-2585810307670535";
/* 468x60, created 11/28/09 */
google_ad_slot = "9594852426";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></code></p>
<p>You can install both apache and IIS on same port if the system has two IP address. You may install IIS and apache server in normal way. IF IIS is started  prior to Apache, IIS will take all the IP address and apache cannot start on the same port. Do fix this, we need to tell IIS to bind only one ip.</p>
<p>You need HttpCfg.exe utility to do this tak. It is available by default on Windows Server 2003 but if you&#8217;re using Windows XP you can install HttpCfg.exe as part of the Windows XP Service Pack 2 Support tools. Then open a command prompt and type the following, replacing xxx.xxx.xxx.xxx with the IP address you&#8217;d like to bind to IIS:</p>
<p>C:\Windows\system32&gt;httpcfg set iplisten -i xxx.xxx.xxx.xxx</p>
<p><code><script type="text/javascript"><!--
google_ad_client = "pub-2585810307670535";
/* 468x60, created 11/28/09 */
google_ad_slot = "9594852426";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></code></p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fhellosystemadmin.com%2Fblog%2Finstall-apache-and-iis-on-windws-server%2F', 'Install+Apache+and+IIS+on+Windws+server')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fhellosystemadmin.com%2Fblog%2Finstall-apache-and-iis-on-windws-server%2F', title: '+Install+Apache+and+IIS+on+Windws+server+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://hellosystemadmin.com/blog/install-apache-and-iis-on-windws-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Apache, Mysql, PHP in Linux Server</title>
		<link>http://hellosystemadmin.com/blog/instal_apache_mysql_php_linux_server/</link>
		<comments>http://hellosystemadmin.com/blog/instal_apache_mysql_php_linux_server/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 06:29:50 +0000</pubDate>
		<dc:creator>Aneesh</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://dev3.ispg.in/aneesh/sysadmin/?p=3</guid>
		<description><![CDATA[Installing Apache

[root@server ~]# wget http://opensource.become.com/apache/httpd/apache_1.3.41.tar.gz]]></description>
			<content:encoded><![CDATA[<p><code><script type="text/javascript"><!--
google_ad_client = "pub-2585810307670535";
/* 468x60, created 11/28/09 */
google_ad_slot = "9594852426";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></code></p>
<p>Installing Apache</p>
<p>[root@server ~]# wget http://opensource.become.com/apache/httpd/apache_1.3.41.tar.gz<br />
[root@server ~]# tar zxvf apache_1.3.41.tar.gz<br />
[root@server ~]# cd apache_1.3.41<br />
[root@server ~]#  ./configure &#8211;prefix=/usr/local/apache &#8211;enable-module=so<br />
[root@server ~]# make<br />
[root@server ~]# make install</p>
<p>Now we have installed apache <img src='http://hellosystemadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . Let&#8217;s start the apache by the following command</p>
<p>[root@server ~]# /usr/local/apache/bin/apachectl start</p>
<p>Installing Mysql</p>
<p>[root@server ~]#  wget http://mysql.llarian.net/Downloads/MySQL-5.1/mysql-5.1.40-linux-i686-glibc23.tar.gz<br />
[root@server ~]# tar zxvf mysql-5.1.40-linux-i686-glibc23.tar.gz<br />
[root@server ~]# mv mysql-5.1.40* mysql<br />
[root@server ~]# mv mysql /usr/local/ mysql<br />
[root@server ~]# cd mysql<br />
[root@server ~]# chown -R mysql .<br />
[root@server ~]‚  chgrp -R mysql .<br />
[root@server ~]# scripts/mysql_install_db &#8211;user=mysql<br />
[root@server ~]# chown -R root .<br />
[root@server ~]# chown -R mysql data</p>
<p><strong>Now we can start mysql by the following command</strong><strong> </strong><br />
[root@server ~]# bin/mysqld_safe &#8211;user=mysql &amp;<br />
Note: Now mysql has not password. To set root password run the following command<br />
[root@server ~]#  bin/mysqladmin -uroot -password &#8216;NEWPASSWORD&#8217;</p>
<p>To Stop mysql server , do the follwing command</p>
<p>[root@server ~]# bin/mysqladmin -uroot -p shutdown</p>
<p><strong>Installing PHP</strong><strong> </strong></p>
<p>[root@server ~]# wget http://in.php.net/distributions/php-5.3.0.tar.gz<br />
[root@server ~]# tar zxvf php-5.3.0.tar.gz<br />
[root@server ~]# cd php-5.3.0<br />
[root@server ~]# ./configure &#8211;with-apxs=/usr/local/apache/bin/apxs &#8211;with-gd &#8211;with-zlib-dir &#8211;with-jpeg-dir &#8211;with-png-dir &#8211;with-freetype-dir &#8211;enable-gd-native-ttf &#8211;with-freetype2-dir &#8211;with-ttf &#8211;with-mysql=/usr/local/mysql &#8211;with-mysqli=/usr/bin/mysql_config &#8211;with-curl &#8211;disable-soap &#8211;with-openssl &#8211;with-xmlrpc &#8211;enable-ftp &#8211;with-xsl</p>
<p>********if configure error do install the following pakages******</p>
<p>yum install flex<br />
yum install libxml2 libxml2-dev<br />
yum install &#8216;openssl*&#8217;<br />
yum install openssl<br />
yum install libopenssl*<br />
yum install openssl*<br />
yum install libjpeg*<br />
yum install libpng*<br />
yum install libfreetype*<br />
yum install libxslt-dev<br />
if Package libxslt-dev has no installation candidate then<br />
yum install libxslt1-dev</p>
<p>***************</p>
<p>[root@server ~]# make<br />
[root@server ~]# make install</p>
<p>Now we have installed php. We need to‚  load php in apache configuration file. To do it add the following line in /usr/local/apache/conf/httpd.conf</p>
<p><em>AddType application/x-httpd-php .php .php3 .wml .html</em></p>
<p><code><script type="text/javascript"><!--
google_ad_client = "pub-2585810307670535";
/* 468x60, created 11/28/09 */
google_ad_slot = "9594852426";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></code></p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fhellosystemadmin.com%2Fblog%2Finstal_apache_mysql_php_linux_server%2F', 'Install+Apache%2C+Mysql%2C+PHP+in+Linux+Server')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fhellosystemadmin.com%2Fblog%2Finstal_apache_mysql_php_linux_server%2F', title: '+Install+Apache%2C+Mysql%2C+PHP+in+Linux+Server+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://hellosystemadmin.com/blog/instal_apache_mysql_php_linux_server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

