<?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>x83.net &#187; account</title>
	<atom:link href="http://www.x83.net/tag/account/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.x83.net</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 13:53:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Show FTP accounts in Plesk</title>
		<link>http://www.x83.net/show-ftp-accounts-in-plesk/</link>
		<comments>http://www.x83.net/show-ftp-accounts-in-plesk/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 21:58:51 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[plesk]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=822</guid>
		<description><![CDATA[First login into mysql: mysql -uadmin -p`cat /etc/psa/.psa.shadow` and then: SELECT REPLACE(sys_users.home,&#8217;/home/httpd/vhosts/&#8217;,&#8221;) AS domain, sys_users.login,accounts.password FROM sys_users LEFT JOIN accounts on sys_users.account_id=accounts.id ORDER BY sys_users.home DESC ;]]></description>
			<content:encoded><![CDATA[<p>First login into mysql:</p>
<p><strong>mysql -uadmin -p`cat /etc/psa/.psa.shadow`</strong></p>
<p>and then:</p>
<p><strong>SELECT REPLACE(sys_users.home,&#8217;/home/httpd/vhosts/&#8217;,&#8221;) AS domain, sys_users.login,accounts.password FROM sys_users LEFT JOIN accounts on sys_users.account_id=accounts.id ORDER BY sys_users.home DESC ;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/show-ftp-accounts-in-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sorry, there have been more than 5 failed login attempts for this account</title>
		<link>http://www.x83.net/sorry-there-have-been-more-than-5-failed-login-attempts-for-this-account/</link>
		<comments>http://www.x83.net/sorry-there-have-been-more-than-5-failed-login-attempts-for-this-account/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 01:19:42 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[attempts]]></category>
		<category><![CDATA[drupal 7]]></category>
		<category><![CDATA[failed]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=783</guid>
		<description><![CDATA[After messing with the password change in Drupal 7 it seems I&#8217;ve blocked myself out. Drupal keeps the flood entries in a mysql table called flood. To recover from this run in sql: delete from `flood`; After this if the password is good you should be able to login. This problem is explained here http://drupal.org/node/1023440]]></description>
			<content:encoded><![CDATA[<p>After messing with the password change in Drupal 7 it seems I&#8217;ve blocked myself out. Drupal keeps the flood entries in a mysql table called <strong>flood</strong>. To recover from this run in sql:</p>
<p><strong>delete from `flood`</strong>;</p>
<p>After this if the password is good you should be able to login.</p>
<p>This problem is explained here http://drupal.org/node/1023440 <a href="http://drupal.org/node/1023440" title="Fix" target="_blank"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/sorry-there-have-been-more-than-5-failed-login-attempts-for-this-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleted mysql root account</title>
		<link>http://www.x83.net/deleted-mysql-root-account/</link>
		<comments>http://www.x83.net/deleted-mysql-root-account/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 13:30:49 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[recover]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=704</guid>
		<description><![CDATA[One friend of mine was playing these days with mysql and while browsing the &#8220;mysql&#8221; database he tried to alter some permissions and he ended up deleting the root account. If you are still logged in to mysql CLI you can recover from this but what do you do if you logout? I&#8217;m not aware of any [...]]]></description>
			<content:encoded><![CDATA[<p>One friend of mine was playing these days with mysql and while browsing the &#8220;mysql&#8221; database he tried to alter some permissions and he ended up deleting the root account. If you are still logged in to mysql CLI you can recover from this but what do you do if you logout?</p>
<p>I&#8217;m not aware of any trick to recover from this problem so my only solution was to backup all its databases from /var/lib/mysql and then delete /var/lib/mysql. Afterwards I start the mysql daemon so the root user and settings are regenerated.  In the end I move back the databases to /var/lib/mysql and do a <strong>service mysqld restart.</strong></p>
<p>Anyone other hints on recovering from this?</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/deleted-mysql-root-account/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Howto show email accounts and passwords in Plesk</title>
		<link>http://www.x83.net/howto-show-email-accounts-and-passwords-in-plesk/</link>
		<comments>http://www.x83.net/howto-show-email-accounts-and-passwords-in-plesk/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 08:39:30 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[plesk]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=392</guid>
		<description><![CDATA[Login to mysql and : use psa; SELECT accounts.id, mail.mail_name, accounts.password, domains.name FROM domains LEFT JOIN mail ON domains.id = mail.dom_id LEFT JOIN accounts ON mail.account_id = accounts.id It should print all emails that are created and their passwords.]]></description>
			<content:encoded><![CDATA[<p>Login to mysql and :</p>
<blockquote><p>use psa;<br />
SELECT accounts.id, mail.mail_name, accounts.password, domains.name FROM domains LEFT JOIN mail ON domains.id = mail.dom_id LEFT JOIN accounts ON mail.account_id = accounts.id
</p></blockquote>
<p>It should print all emails that are created and their passwords.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/howto-show-email-accounts-and-passwords-in-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

