<?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; password</title>
	<atom:link href="http://www.x83.net/tag/password/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.x83.net</link>
	<description></description>
	<lastBuildDate>Sat, 24 Jul 2010 09:50:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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>
		<item>
		<title>Joomla: Change Super Admin/Administrator password</title>
		<link>http://www.x83.net/joomla-change-super-adminadministrator-password/</link>
		<comments>http://www.x83.net/joomla-change-super-adminadministrator-password/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 06:04:55 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[where]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=359</guid>
		<description><![CDATA[Login with your mysql client and issue either one of these:
UPDATE `jos_users` SET `password` =MD5(&#8220;getsmart&#8221;) WHERE usertype = &#8220;Super Administrator&#8221;;
or
UPDATE `jos_users` SET `password` =MD5(&#8220;getsmart&#8221;) WHERE usertype = &#8220;Administrator&#8221;;
]]></description>
			<content:encoded><![CDATA[<p>Login with your mysql client and issue either one of these:</p>
<p>UPDATE `jos_users` SET `password` =MD5(&#8220;getsmart&#8221;) WHERE usertype = &#8220;Super Administrator&#8221;;<br />
or<br />
UPDATE `jos_users` SET `password` =MD5(&#8220;getsmart&#8221;) WHERE usertype = &#8220;Administrator&#8221;;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/joomla-change-super-adminadministrator-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Squid and password authentication</title>
		<link>http://www.x83.net/squid-and-password-authentication/</link>
		<comments>http://www.x83.net/squid-and-password-authentication/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 09:00:53 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Redhat]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[acl]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[squid]]></category>
		<category><![CDATA[tcp_outgoing_address]]></category>
		<category><![CDATA[visible_hostname]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=274</guid>
		<description><![CDATA[yum install squid
Example of squid.conf
http_port 10000
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/passwd
auth_param basic children 5
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours
auth_param basic casesensitive off
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern [...]]]></description>
			<content:encoded><![CDATA[<p>yum install squid</p>
<p>Example of squid.conf</p>
<blockquote><p>http_port 10000<br />
hierarchy_stoplist cgi-bin ?</p>
<p>acl QUERY urlpath_regex cgi-bin \?<br />
no_cache deny QUERY</p>
<p>auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/passwd<br />
auth_param basic children 5<br />
auth_param basic realm Squid proxy-caching web server<br />
auth_param basic credentialsttl 2 hours<br />
auth_param basic casesensitive off</p>
<p>refresh_pattern ^ftp:           1440    20%     10080<br />
refresh_pattern ^gopher:        1440    0%      1440<br />
refresh_pattern .               0       20%     4320</p>
<p>acl all src 0.0.0.0/0.0.0.0<br />
acl SSL_ports port 443 563<br />
acl Safe_ports port 80          # http<br />
acl Safe_ports port 21          # ftp<br />
acl Safe_ports port 443 563     # https, snews<br />
acl Safe_ports port 70          # gopher<br />
acl Safe_ports port 210         # wais<br />
acl Safe_ports port 1025-65535  # unregistered ports<br />
acl Safe_ports port 280         # http-mgmt<br />
acl Safe_ports port 488         # gss-http<br />
acl Safe_ports port 591         # filemaker<br />
acl Safe_ports port 777         # multiling http</p>
<p>acl ncsa_users proxy_auth REQUIRED<br />
http_access deny !Safe_ports<br />
http_access allow ncsa_users<br />
visible_hostname mysite.com<br />
coredump_dir /var/spool/squid</p></blockquote>
<blockquote><p>service squid start</p></blockquote>
<p>Setting proxy for wget:</p>
<blockquote><p>export http_proxy=http://anton:testinsg@mysite:10000</p></blockquote>
<p>If you want to make it anonymous add these lines:</p>
<blockquote><p>forwarded_for off</p>
<p>header_access Allow allow all<br />
header_access Authorization allow all<br />
header_access WWW-Authenticate allow all<br />
header_access Proxy-Authorization allow all<br />
header_access Proxy-Authenticate allow all<br />
header_access Cache-Control allow all<br />
header_access Content-Encoding allow all<br />
header_access Content-Length allow all<br />
header_access Content-Type allow all<br />
header_access Date allow all<br />
header_access Expires allow all<br />
header_access Host allow all<br />
header_access If-Modified-Since allow all<br />
header_access Last-Modified allow all<br />
header_access Location allow all<br />
header_access Pragma allow all<br />
header_access Accept allow all<br />
header_access Accept-Charset allow all<br />
header_access Accept-Encoding allow all<br />
header_access Accept-Language allow all<br />
header_access Content-Language allow all<br />
header_access Mime-Version allow all<br />
header_access Retry-After allow all<br />
header_access Title allow all<br />
header_access Connection allow all<br />
header_access Proxy-Connection allow all<br />
header_access Cookie allow all<br />
header_access Set-Cookie allow all<br />
header_access All deny all</p>
<p>acl ip4 myaclname yourip<br />
tcp_outgoing_address yourip myaclname</p></blockquote>
<p>Generate acl and tcp_outgoing_address:</p>
<blockquote><p>for f in {314..372}; do echo &#8220;acl ip$((f))&#8221; myip aaa.bbb.ccc.$((f-246)) >> &#8220;blah1&#8243;; done<br />
for f in {314..372}; do echo &#8220;tcp_outgoing_address aaa.bbb.ccc.$((f-246))&#8221; ip$((f)) >> &#8220;blah1&#8243;; done</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/squid-and-password-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change mysql password</title>
		<link>http://www.x83.net/change-mysql-password/</link>
		<comments>http://www.x83.net/change-mysql-password/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 20:01:47 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysqladmin]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.x83.net/blog/?p=124</guid>
		<description><![CDATA[Setting up mysql password is one of the essential tasks. root user is MySQL admin account. Please note that Linux / UNIX login root account for your operating system and MySQL root are different. They are separate and nothing to do with each other (indeed some admin removes root account and setup admin as mysql [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up mysql password is one of the essential tasks. root user is MySQL admin account. Please note that Linux / UNIX login root account for your operating system and MySQL root are different. They are separate and nothing to do with each other (indeed some admin removes root account and setup admin as mysql super user).</p>
<p><strong>Mysqladmin</strong></p>
<p>If you have never set a root password for MySQL, the server does not require a password at all for connecting as root. To setup root password for first time, use mysqladmin command at shell prompt as follows:</p>
<p> $ mysqladmin -u root password NEWPASSWORD</p>
<p>However, if you want to change (or update) a root password, then you need to use following command</p>
<p> $ mysqladmin -u root -p oldpassword newpass</p>
<p>Enter password:</p>
<p>To change a normal user password you need to type (let us assume you would like to change password for user):</p>
<p> $ mysqladmin -u user -p oldpassword newpass</p>
<p> $ mysqladmin –user=root –password=’my_old_password’ password ‘my_new_password’</p>
<p><strong>Change using mysql sql command</strong></p>
<p>This is another method. MySQL stores username and passwords in user table inside MySQL database. You can directly update password using the following method to update or change password for user test:</p>
<p>1) Login to mysql server, type following command at shell prompt:</p>
<p> $ mysql -u root -p</p>
<p>2) Use mysql database (type command at mysql> prompt):</p>
<p> mysql> use mysql;</p>
<p>3) Change password for user vivek:</p>
<p> mysql> update user set password=PASSWORD(&#8220;NEWPASSWORD&#8221;) where User=&#8217;test&#8217;;</p>
<p>4) Reload privileges:</p>
<p> mysql> flush privileges;<br />
 mysql> quit</p>
<p><strong>Remove root pass</strong></p>
<p> mysqladmin -u root -p password ”</p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/change-mysql-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
