<?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>Web Hosting India</title>
	<atom:link href="http://windowshostingindia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://windowshostingindia.com</link>
	<description>cPanel Hosting, Linux Hosting, Website Hosting, Dedicated Server, Hosting Tutorial, Hosting Tools, Hosting Resources</description>
	<lastBuildDate>Thu, 07 Jan 2010 09:12:00 +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>How to retrieve system level logs from a Windows or Linux machine</title>
		<link>http://windowshostingindia.com/windows-server/how-to-retrieve-system-level-logs-from-a-windows-or-linux-machine/</link>
		<comments>http://windowshostingindia.com/windows-server/how-to-retrieve-system-level-logs-from-a-windows-or-linux-machine/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 09:12:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows server]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=88</guid>
		<description><![CDATA[This document will let you know how to retrieve system level logs from a Windows or Linux machine. 
Windows servers have four types of logfiles by default: System, Security, Application and Internet Explorer, located here:
    &#8220;Start&#8221; &#8211;>&#8221;Settings&#8221; &#8211;>&#8221;ControlPanel&#8221; &#8211;> &#8220;Administrative Tools&#8221; &#8211;> &#8220;Event Viewer&#8221;
Each logfile must be saved individually.
 Right-click on the [...]]]></description>
			<content:encoded><![CDATA[<p>This document will let you know how to retrieve system level logs from a Windows or Linux machine. </p>
<p>Windows servers have four types of logfiles by default: System, Security, Application and Internet Explorer, located here:</p>
<p>    &#8220;Start&#8221; &#8211;>&#8221;Settings&#8221; &#8211;>&#8221;ControlPanel&#8221; &#8211;> &#8220;Administrative Tools&#8221; &#8211;> &#8220;Event Viewer&#8221;</p>
<p>Each logfile must be saved individually.</p>
<p> Right-click on the log you wish to save, choose &#8220;Save log file as&#8230;&#8221;. In case you are using RDP- to get into the your server, then you might be able to copy and paste the file(s) to your desktop.</p>
<p>Most Linux logfiles are located in /var/log. There can be many files and directories in this location, so your best choice here is to either you need to find exactly which logfiles you need and get only those files and directories or get a copy of the entire /var/log directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/windows-server/how-to-retrieve-system-level-logs-from-a-windows-or-linux-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MYSQL Error #2002</title>
		<link>http://windowshostingindia.com/mysql/mysql-error-2002/</link>
		<comments>http://windowshostingindia.com/mysql/mysql-error-2002/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 09:53:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=81</guid>
		<description><![CDATA[While accessing PhpMyAdmin getting the following error.
MYSQL Error #2002 &#8211; showing server is not responding or local MySQL server’s socket is not correctly configured. 
Reason :-
The mysql socket file is missing from the /tmp directory
Fix :-
1. Create a symbolic link from the original mysql socket file to /tmp
[root@test ~]# ln -s /var/lib/mysql/mysql.sock /tmp
OR
2. Restart MySQL [...]]]></description>
			<content:encoded><![CDATA[<p>While accessing PhpMyAdmin getting the following error.</p>
<p>MYSQL Error #2002 &#8211; showing server is not responding or local MySQL server’s socket is not correctly configured. </p>
<p>Reason :-</p>
<p>The mysql socket file is missing from the /tmp directory</p>
<p>Fix :-</p>
<p>1. Create a symbolic link from the original mysql socket file to /tmp</p>
<p>[root@test ~]# ln -s /var/lib/mysql/mysql.sock /tmp</p>
<p>OR</p>
<p>2. Restart MySQL service from WHM</p>
<p>WHM Login >> Main >> Restart Services >>SQL Server (MySQL)</p>
<p>OR</p>
<p>3. Edit the PhpMyAdmin configuration file to use the original MySQL socket file.</p>
<p>#  vi /usr/local/cpanel/base/3rdparty/phpMyAdmin/config.inc.php</p>
<p>Make sure, the correct mysql socket file is mentioned there.<br />
———————-<br />
$cfg['Servers'][$i]['socket'] = ‘/var/lib/mysql/mysql.sock’;<br />
$cfg['Servers'][$i]['connect_type'] = ’socket’;</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/mysql-error-2002/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Error Codes- Part II</title>
		<link>http://windowshostingindia.com/mysql/mysql-error-codes-part-ii/</link>
		<comments>http://windowshostingindia.com/mysql/mysql-error-codes-part-ii/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 09:03:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=78</guid>
		<description><![CDATA[MySQL Error Codes, continued from earlier post:
Error: 1026 SQLSTATE: HY000 ER_ERROR_ON_WRITE Message: Error writing file ‘%s’ errno: %d
Error: 1027 SQLSTATE: HY000 ER_FILE_USED Message: ‘%s’ is locked against change
Error: 1028 SQLSTATE: HY000 ER_FILSORT_ABORT Message: Sort aborted
Error: 1029 SQLSTATE: HY000 ER_FORM_NOT_FOUND Message: View ‘%s’ doesn’t exist for ‘%s’
Error: 1030 SQLSTATE: HY000 ER_GET_ERRNO Message: Got error %d from [...]]]></description>
			<content:encoded><![CDATA[<p>MySQL Error Codes, continued from earlier post:</p>
<p>Error: 1026 SQLSTATE: HY000 ER_ERROR_ON_WRITE Message: Error writing file ‘%s’ errno: %d<br />
Error: 1027 SQLSTATE: HY000 ER_FILE_USED Message: ‘%s’ is locked against change<br />
Error: 1028 SQLSTATE: HY000 ER_FILSORT_ABORT Message: Sort aborted<br />
Error: 1029 SQLSTATE: HY000 ER_FORM_NOT_FOUND Message: View ‘%s’ doesn’t exist for ‘%s’<br />
Error: 1030 SQLSTATE: HY000 ER_GET_ERRNO Message: Got error %d from storage engine<br />
Error: 1031 SQLSTATE: HY000 ER_ILLEGAL_HA Message: Table storage engine for ‘%s’ doesn’t have this option<br />
Error: 1032 SQLSTATE: HY000 ER_KEY_NOT_FOUND Message: Can’t find record in ‘%s’<br />
Error: 1033 SQLSTATE: HY000 ER_NOT_FORM_FILE Message: Incorrect information in file: ‘%s’<br />
Error: 1034 SQLSTATE: HY000 ER_NOT_KEYFILE Message: Incorrect key file for table ‘%s’; try to repair it<br />
Error: 1035 SQLSTATE: HY000 ER_OLD_KEYFILE Message: Old key file for table ‘%s’; repair it!<br />
Error: 1036 SQLSTATE: HY000 ER_OPEN_AS_READONLY Message: Table ‘%s’ is read only<br />
Error: 1037 SQLSTATE: HY001 ER_OUTOFMEMORY Message: Out of memory; restart server and try again needed %d bytes<br />
Error: 1038 SQLSTATE: HY001 ER_OUT_OF_SORTMEMORY Message: Out of sort memory; increase server sort buffer size<br />
Error: 1039 SQLSTATE: HY000 ER_UNEXPECTED_EOF Message: Unexpected EOF found when reading file ‘%s’ errno: %d<br />
Error: 1040 SQLSTATE: 08004 ER_CON_COUNT_ERROR Message: Too many connections<br />
Error: 1041 SQLSTATE: HY000 ER_OUT_OF_RESOURCES Message: Out of memory; check if mysqld or some other process uses all available memory; if not, you may have to use ‘ulimit’ to allow mysqld to use more memory or you can add more swap space<br />
Error: 1042 SQLSTATE: 08S01 ER_BAD_HOST_ERROR Message: Can’t get hostname for your address<br />
Error: 1043 SQLSTATE: 08S01 ER_HANDSHAKE_ERROR Message: Bad handshake<br />
Error: 1044 SQLSTATE: 42000 ER_DBACCESS_DENIED_ERROR Message: Access denied for user ‘%s’@&#8217;%s’ to database ‘%s’<br />
Error: 1045 SQLSTATE: 28000 ER_ACCESS_DENIED_ERROR Message: Access denied for user ‘%s’@&#8217;%s’ using password: %s<br />
Error: 1046 SQLSTATE: 3D000 ER_NO_DB_ERROR Message: No database selected<br />
Error: 1047 SQLSTATE: 08S01 ER_UNKNOWN_COM_ERROR Message: Unknown command<br />
Error: 1048 SQLSTATE: 23000 ER_BAD_NULL_ERROR Message: Column ‘%s’ cannot be null<br />
Error: 1049 SQLSTATE: 42000 ER_BAD_DB_ERROR Message: Unknown database ‘%s’<br />
Error: 1050 SQLSTATE: 42S01 ER_TABLE_EXISTS_ERROR Message: Table ‘%s’ already exists<br />
Error: 1051 SQLSTATE: 42S02 ER_BAD_TABLE_ERROR Message: Unknown table ‘%s’<br />
Error: 1052 SQLSTATE: 23000 ER_NON_UNIQ_ERROR Message: Column ‘%s’ in %s is ambiguous<br />
Error: 1053 SQLSTATE: 08S01 ER_SERVER_SHUTDOWN Message: Server shutdown in progress<br />
Error: 1054 SQLSTATE: 42S22 ER_BAD_FIELD_ERROR Message: Unknown column ‘%s’ in ‘%s’<br />
Error: 1055 SQLSTATE: 42000 ER_WRONG_FIELD_WITH_GROUP Message: ‘%s’ isn’t in GROUP BY<br />
Error: 1056 SQLSTATE: 42000 ER_WRONG_GROUP_FIELD Message: Can’t group on ‘%s’<br />
Error: 1057 SQLSTATE: 42000 ER_WRONG_SUM_SELECT Message: Statement has sum functions and columns in same statement<br />
Error: 1058 SQLSTATE: 21S01 ER_WRONG_VALUE_COUNT Message: Column count doesn’t match value count<br />
Error: 1059 SQLSTATE: 42000 ER_TOO_LONG_IDENT Message: Identifier name ‘%s’ is too long<br />
Error: 1060 SQLSTATE: 42S21 ER_DUP_FIELDNAME Message: Duplicate column name ‘%s’</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/mysql-error-codes-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Error Codes</title>
		<link>http://windowshostingindia.com/mysql/mysql-error-codes/</link>
		<comments>http://windowshostingindia.com/mysql/mysql-error-codes/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 08:55:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=76</guid>
		<description><![CDATA[MySQL Error Codes- You may receive an error message while using MySQL extention mysqli or PDO, check out this table which will help you to debug your applications.There could be two type of error, the first might be server errors and the second is client errors. The error messages are listed the source in the [...]]]></description>
			<content:encoded><![CDATA[<p>MySQL Error Codes- You may receive an error message while using MySQL extention mysqli or PDO, check out this table which will help you to debug your applications.There could be two type of error, the first might be server errors and the second is client errors. The error messages are listed the source in the errmsg.txt file.</p>
<p>Error Code SQL State Message</p>
<p>End of Server Errors Error: 1000 SQLSTATE: HY000 ER_HASHCHK Message: hashchk<br />
Error: 1001 SQLSTATE: HY000 ER_NISAMCHK Message: isamchk<br />
Error: 1002 SQLSTATE: HY000 ER_NO Message: NO<br />
Error: 1003 SQLSTATE: HY000 ER_YES Message: YES<br />
Error: 1004 SQLSTATE: HY000 ER_CANT_CREATE_FILE Message: Can’t create file ‘%s’ errno: %d<br />
Error: 1005 SQLSTATE: HY000 ER_CANT_CREATE_TABLE Message: Can’t create table ‘%s’ errno: %d<br />
Error: 1006 SQLSTATE: HY000 ER_CANT_CREATE_DB Message: Can’t create database ‘%s’ errno: %d<br />
Error: 1007 SQLSTATE: HY000 ER_DB_CREATE_EXISTS Message: Can’t create database ‘%s’; database exists<br />
Error: 1008 SQLSTATE: HY000 ER_DB_DROP_EXISTS Message: Can’t drop database ‘%s’; database doesn’t exist<br />
Error: 1009 SQLSTATE: HY000 ER_DB_DROP_DELETE Message: Error dropping database can’t delete ‘%s’, errno: %d<br />
Error: 1010 SQLSTATE: HY000 ER_DB_DROP_RMDIR Message: Error dropping database can’t rmdir ‘%s’, errno: %d<br />
Error: 1011 SQLSTATE: HY000 ER_CANT_DELETE_FILE Message: Error on delete of ‘%s’ errno: %d<br />
Error: 1012 SQLSTATE: HY000 ER_CANT_FIND_SYSTEM_REC Message: Can’t read record in system table<br />
Error: 1013 SQLSTATE: HY000 ER_CANT_GET_STAT Message: Can’t get status of ‘%s’ errno: %d<br />
Error: 1014 SQLSTATE: HY000 ER_CANT_GET_WD Message: Can’t get working directory errno: %d<br />
Error: 1015 SQLSTATE: HY000 ER_CANT_LOCK Message: Can’t lock file errno: %d<br />
Error: 1016 SQLSTATE: HY000 ER_CANT_OPEN_FILE Message: Can’t open file: ‘%s’ errno: %d<br />
Error: 1017 SQLSTATE: HY000 ER_FILE_NOT_FOUND Message: Can’t find file: ‘%s’ errno: %d<br />
Error: 1018 SQLSTATE: HY000 ER_CANT_READ_DIR Message: Can’t read dir of ‘%s’ errno: %d<br />
Error: 1019 SQLSTATE: HY000 ER_CANT_SET_WD Message: Can’t change dir to ‘%s’ errno: %d<br />
Error: 1020 SQLSTATE: HY000 ER_CHECKREAD Message: Record has changed since last read in table ‘%s’<br />
Error: 1021 SQLSTATE: HY000 ER_DISK_FULL Message: Disk full %s; waiting for someone to free some space…<br />
Error: 1022 SQLSTATE: 23000 ER_DUP_KEY Message: Can’t write; duplicate key in table ‘%s’<br />
Error: 1023 SQLSTATE: HY000 ER_ERROR_ON_CLOSE Message: Error on close of ‘%s’ errno: %d<br />
Error: 1024 SQLSTATE: HY000 ER_ERROR_ON_READ Message: Error reading file ‘%s’ errno: %d<br />
Error: 1025 SQLSTATE: HY000 ER_ERROR_ON_RENAME Message: Error on rename of ‘%s’ to ‘%s’ errno: %d</p>
<p>To be continued in next post….</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/mysql-error-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysqlaccess</title>
		<link>http://windowshostingindia.com/mysql/mysqlaccess/</link>
		<comments>http://windowshostingindia.com/mysql/mysqlaccess/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 07:21:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/mysql/mysqlaccess/</guid>
		<description><![CDATA[The mysqlaccess script provides information that can be useful in detect problems with user access to a given database. However before you process for this script you should make sure that you must always do a ‘mysqladmin reload’ after making changes to the MySQL database tables.
Mysqlaccess script support the following option. You may use either [...]]]></description>
			<content:encoded><![CDATA[<p>The mysqlaccess script provides information that can be useful in detect problems with user access to a given database. However before you process for this script you should make sure that you must always do a ‘mysqladmin reload’ after making changes to the MySQL database tables.</p>
<p>Mysqlaccess script support the following option. You may use either the “short” single character or more verbose versions.</p>
<p>-?, –help Display help message.<br />
-v, –version Print version information.<br />
-u, –user=… Username to use for logging into database.<br />
-p, –password=… Password to use for logging into database. Note there can be no space between the -p and the password.<br />
-h, –host=… Name of host to use for host permissions check.<br />
-d, –db=… Name of database to use for database permissions check.<br />
-U, –superuser=… Name of superuser account.<br />
-P, –spassword=… Password for the superuser account.<br />
-b, –brief Print single-line tabular report.<br />
–relnotes Print release notes<br />
–plan Print suggestions/ideas for future releases<br />
–howto Print examples of how to run `mysqlaccess’<br />
–debug=N Enter debuglevel N (0..3)</p>
<p>You should note that you need to also specify the user and db you would like to check. If no host is given, it would be assumed as ‘localhost’.</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/mysqlaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Check DDOS attack on server</title>
		<link>http://windowshostingindia.com/security/how-to-check-ddos-attack-on-server/</link>
		<comments>http://windowshostingindia.com/security/how-to-check-ddos-attack-on-server/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 14:15:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=71</guid>
		<description><![CDATA[An useful and useful command for checking if a server is under ddos?:
netstat -anp &#124;grep ‘tcp\&#124;udp’ &#124; awk ‘{print $5}’ &#124; cut -d: -f1 &#124; sort &#124; uniq -c &#124; sort -n
This command will list the IPs checking the most amounts of connections to a server, it&#8217;s  important to note that the ddos is [...]]]></description>
			<content:encoded><![CDATA[<p>An useful and useful command for checking if a server is under ddos?:</p>
<p>netstat -anp |grep ‘tcp\|udp’ | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort -n</p>
<p>This command will list the IPs checking the most amounts of connections to a server, it&#8217;s  important to note that the ddos is becoming more and more planned and hackers are using most sophisticated method. If this is the case you will still get low number of connections even while you are under a DDOS.</p>
<p>Another vital thing to look at is how many active connections your server is processing at the most.</p>
<p>netstat -n | grep :80 |wc -l</p>
<p>netstat -n | grep :80 | grep SYN |wc -l</p>
<p>The first command will show the number of active connections which are open to your server, most of the attacks typically starting a connection to the server and then not sending any reply making the server wait for longer time. The number of active connections from the first command is going to differ in large amount but if you are much above 500 you are probably having problems. If the second command is over 100 you are having trouble with a syn attack.</p>
<p>To Block a certain IP address that on server, you can use following commands</p>
<p>—————–command——————————</p>
<p>route add ipaddress reject</p>
<p>for example route add 192.168.0.168 reject</p>
<p>You can check whether given IP is blocked on server by using following command</p>
<p>route -n |grep IPaddress</p>
<p>—————–command——————————</p>
<p>OR</p>
<p>use follwoing command to block a ip with iptables on server<br />
—————–command——————————<br />
iptables -A INPUT 1 -s IPADRESS -j DROP/REJECT</p>
<p>service iptables restart</p>
<p>service iptables save</p>
<p>—————–command——————————</p>
<p>Then KILL all httpd connection and restarted httpd service by using following command</p>
<p>killall -KILL httpd</p>
<p>service httpd startssl</p>
<p>Hope this help! </p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/security/how-to-check-ddos-attack-on-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyper-V Monitor Gadget for Windows Sidebar</title>
		<link>http://windowshostingindia.com/windows-server/hyper-v-monitor-gadget-for-windows-sidebar/</link>
		<comments>http://windowshostingindia.com/windows-server/hyper-v-monitor-gadget-for-windows-sidebar/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 14:28:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows server]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=69</guid>
		<description><![CDATA[If you want to monitor your Hyper-V server working at your workstation? If you want to see instantly when server or virtual machine goes down? Here is a nice gadget for Windows 7 and Windows Vista. Hyper-V Monitor Gadget for Windows Sidebar displays all necessary information from your remote Hyper-V servers. 

With this tiny gadget [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to monitor your Hyper-V server working at your workstation? If you want to see instantly when server or virtual machine goes down? Here is a nice gadget for Windows 7 and Windows Vista. Hyper-V Monitor Gadget for Windows Sidebar displays all necessary information from your remote Hyper-V servers. </p>
<p><img src="http://mindre.net/image.axd?picture=2009%2f11%2fhvm1.png" alt="Hyper v monitor gadget" /></p>
<p>With this tiny gadget you can see the list of all your Hyper-V servers, and list of all virtual machines created on that servers and their status, it support vmconnect too when double clicking on a VM. Version 5.0 has just come out, with some new features, <a href="http://mindre.net/post/Hyper-V-Monitor-Gadget-for-Windows-Sidebar.aspx">check the official announcement </a>of the new version and download and try it, It’s free.. </p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/windows-server/hyper-v-monitor-gadget-for-windows-sidebar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Common Errors Using MySQL Programs</title>
		<link>http://windowshostingindia.com/mysql/common-errors-using-mysql-programs/</link>
		<comments>http://windowshostingindia.com/mysql/common-errors-using-mysql-programs/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 13:56:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=67</guid>
		<description><![CDATA[Here is the list of some common errors that users often encounter when running MySQL programs. 
Common Errors-MySQL Programs
B.5.2.1. : Access denied
B.5.2.2. : Can&#8217;t connect to [local] MySQL server
B.5.2.3. : Lost connection to MySQL server
B.5.2.4. : Client does not support authentication protocol
B.5.2.5. : Password Fails When Entered Interactively
B.5.2.6. : Host &#8216;host_name&#8217; is blocked
B.5.2.7. : Too [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the list of some common errors that users often encounter when running MySQL programs. </p>
<p>Common Errors-MySQL Programs</p>
<p>B.5.2.1. : Access denied<br />
B.5.2.2. : Can&#8217;t connect to [local] MySQL server<br />
B.5.2.3. : Lost connection to MySQL server<br />
B.5.2.4. : Client does not support authentication protocol<br />
B.5.2.5. : Password Fails When Entered Interactively<br />
B.5.2.6. : Host &#8216;host_name&#8217; is blocked<br />
B.5.2.7. : Too many connections<br />
B.5.2.8. : Out of memory<br />
B.5.2.9. : MySQL server has gone away<br />
B.5.2.10.: Packet too large<br />
B.5.2.11.: Communication Errors and Aborted Connections<br />
B.5.2.12.: The table is full<br />
B.5.2.13.: Can&#8217;t create/write to file<br />
B.5.2.14. :Commands out of sync<br />
B.5.2.15. : Ignoring user<br />
B.5.2.16. :Table &#8216;tbl_name&#8217; doesn&#8217;t exist<br />
B.5.2.17. : Can&#8217;t initialize character set<br />
B.5.2.18. : File&#8217; Not Found and Similar Errors<br />
B.5.2.19. : Table-Corruption Issues</p>
<p>Although the problems show up when you try to run client programs, most of the time the easiest solutions involves changing the configuration of the MySQL server. </p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/common-errors-using-mysql-programs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Avoid receiving message &#8220;Windows XP is not genuine&#8221;</title>
		<link>http://windowshostingindia.com/windows-xp/how-to-avoid-receiving-message-windows-xp-is-not-genuine/</link>
		<comments>http://windowshostingindia.com/windows-xp/how-to-avoid-receiving-message-windows-xp-is-not-genuine/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 09:58:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows XP]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=55</guid>
		<description><![CDATA[If your Windows OS keeps on giving you the alert that your XP is not genuine, you can avoid this message using following steps;
Just try this patch
Lauch Windows Task Manager.
End wgatray.exe process in Task Manager.
Restart Windows XP in Safe Mode.
Delete WgaTray.exe from c:\Windows\System32.
Delete WgaTray.exe from c:\Windows\System32\dllcache.
Lauch RegEdit.
Browse to the following location:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\
Windows NT\CurrentVersion\Winlogon\Notify
Delete the folder â€˜WgaLogonâ€™ [...]]]></description>
			<content:encoded><![CDATA[<p>If your Windows OS keeps on giving you the alert that your XP is not genuine, you can avoid this message using following steps;</p>
<p>Just try this patch<br />
Lauch Windows Task Manager.<br />
End wgatray.exe process in Task Manager.<br />
Restart Windows XP in Safe Mode.<br />
Delete WgaTray.exe from c:\Windows\System32.</p>
<p>Delete WgaTray.exe from c:\Windows\System32\dllcache.</p>
<p>Lauch RegEdit.<br />
Browse to the following location:<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\<br />
Windows NT\CurrentVersion\Winlogon\Notify<br />
Delete the folder â€˜WgaLogonâ€™ and all its contents<br />
Reboot Windows XP</p>
<p>If it still dont resolve the issue then better you should reinstall XP and when installing make sure to not to tick online updates the Geniun XP patch or what ever like such this. </p>
<p>Enjoy..</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/windows-xp/how-to-avoid-receiving-message-windows-xp-is-not-genuine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset Urchin password On Windows server</title>
		<link>http://windowshostingindia.com/windows-server/reset-urchin-password-on-windows-server/</link>
		<comments>http://windowshostingindia.com/windows-server/reset-urchin-password-on-windows-server/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 09:42:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows server]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=53</guid>
		<description><![CDATA[Reset Urchin password On Windows server :
Start up a Command Prompt window and type the following :
>cd \Program Files\Urchin\util
>uconf-driver action=set_parameter table=user \
name=&#8221;(admin)&#8221; ct_password=password
That&#8217;s all, you&#8217;ve reset Urchin password. 
]]></description>
			<content:encoded><![CDATA[<p>Reset Urchin password On Windows server :</p>
<p>Start up a Command Prompt window and type the following :</p>
<p>>cd \Program Files\Urchin\util<br />
>uconf-driver action=set_parameter table=user \<br />
name=&#8221;(admin)&#8221; ct_password=password</p>
<p>That&#8217;s all, you&#8217;ve reset Urchin password. </p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/windows-server/reset-urchin-password-on-windows-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
