<?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>takizo, not takezo &#187; password</title>
	<atom:link href="http://systems.takizo.com/tag/password/feed/" rel="self" type="application/rss+xml" />
	<link>http://systems.takizo.com</link>
	<description>the systems admin blog</description>
	<lastBuildDate>Fri, 25 Nov 2011 00:55:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Change or Set User Password in FreeBSD</title>
		<link>http://systems.takizo.com/2010/06/04/change-or-set-user-password-in-freebsd/</link>
		<comments>http://systems.takizo.com/2010/06/04/change-or-set-user-password-in-freebsd/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 14:51:02 +0000</pubDate>
		<dc:creator>takizo</dc:creator>
				<category><![CDATA[Systems]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[userid]]></category>

		<guid isPermaLink="false">http://systems.takizo.com/?p=1000</guid>
		<description><![CDATA[If you notice, during FreeBSD installation, it doesn&#8217;t have a step by step installation guides for creating user&#8217;s password for login credential. By default, FreeBSD installation only come with user &#8220;root&#8221;, and it doesn&#8217;t prompts for password setting for default user &#8220;root&#8221;. After installation, you can login to FreeBSD with user &#8220;root&#8221;, no password. So, [...]]]></description>
			<content:encoded><![CDATA[<p>If you notice, during FreeBSD installation, it doesn&#8217;t have a step by step installation guides for creating user&#8217;s password for login credential. By default, FreeBSD installation only come with user &#8220;root&#8221;, and it doesn&#8217;t prompts for password setting for default user &#8220;root&#8221;. After installation, you can login to FreeBSD with user &#8220;root&#8221;, no password.</p>
<p>So, it&#8217;s advise that to set user&#8217;s password after installation. You can set or change user&#8217;s password in FreeBSD with passwd command. </p>
<p>Try to have your password in alphanumeric combination, meaning alphabets + numbers and at least 6 characters long. You can do some creative password combination like &#8220;go2HELL&#8221;, &#8220;1amN00b1nUn1x&#8221;, &#8220;BUYm3b33r&#8221;, &#8220;h3ySumm3rH0t&#8221; and etc. Please do remember, the password is case sensitive too.</p>
<p><strong>To Set Password for Default User &#8220;root&#8221;</strong></p>
<p>To set the password;</p>
<ul>
<li>type: passwd</li>
<li>input your password twice</li>
</ul>
<p>To change your password, use the same command and it will prompt you for current password before putting the new one.</p>
<p><strong>To Set or Change Password for Other Userid</strong></p>
<p>Login as &#8220;root&#8221; and change user&#8217;s password, in example userid foo</p>
<ul>
<li>Type: passwd foo </li>
<li>Input your password twice</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://systems.takizo.com/2010/06/04/change-or-set-user-password-in-freebsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Root Privilege User on MySQL</title>
		<link>http://systems.takizo.com/2010/05/11/create-root-privilege-user-on-mysql/</link>
		<comments>http://systems.takizo.com/2010/05/11/create-root-privilege-user-on-mysql/#comments</comments>
		<pubDate>Tue, 11 May 2010 02:57:56 +0000</pubDate>
		<dc:creator>takizo</dc:creator>
				<category><![CDATA[Systems]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[privileges]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://systems.takizo.com/?p=966</guid>
		<description><![CDATA[By default, MySQL root privileges user is &#8220;root&#8221;, I always remove &#8220;root&#8221; userid once I got MySQL installed, mainly for security purpose, secondly I do not want stupid thing happened like someone able to brute force into MySQL database. You can create &#8220;root&#8221; alike privilege user in MySQL by following the step below; Access to [...]]]></description>
			<content:encoded><![CDATA[<p>By default, MySQL root privileges user is &#8220;root&#8221;, I always remove &#8220;root&#8221; userid once I got MySQL installed, mainly for security purpose, secondly I do not want stupid thing happened like someone able to brute force into MySQL database. </p>
<p>You can create &#8220;root&#8221; alike privilege user in MySQL by following the step below;</p>
<ul>
<li>Access to mysql /usr/local/bin/mysql</li>
<li>mysql> GRANT ALL PRIVILEGES ON *.* TO &#8216;yourusername&#8217;@'localhost&#8217; IDENTIFIED BY &#8216;yourpasswordhere&#8217; WITH GRANT OPTION;</li>
<li>mysql> flush privileges;</li>
<li>mysql> quit;</li>
</ul>
<p>You can add a few more privileges user if you have more than 1 person to admin MySQL Database. </p>
]]></content:encoded>
			<wfw:commentRss>http://systems.takizo.com/2010/05/11/create-root-privilege-user-on-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset MySQL Root Password</title>
		<link>http://systems.takizo.com/2010/05/10/reset-mysql-root-password/</link>
		<comments>http://systems.takizo.com/2010/05/10/reset-mysql-root-password/#comments</comments>
		<pubDate>Mon, 10 May 2010 08:55:11 +0000</pubDate>
		<dc:creator>takizo</dc:creator>
				<category><![CDATA[Systems]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">http://systems.takizo.com/?p=964</guid>
		<description><![CDATA[Very often, once we didn&#8217;t log on to MySQL database for some time, I guess most of us will forgot the root password. Can we reset the root password? Obviously&#8230; Nothing is Impossible Follow the steps below to reset MySQL&#8217;s Root Password; Stop MySQL Service Start MySQL Service in Safe Mode: /usr/local/bin/mysqld_safe –skip-grant-tables&#038; Connect to [...]]]></description>
			<content:encoded><![CDATA[<p>Very often, once we didn&#8217;t log on to MySQL database for some time, I guess most of us will forgot the root password. Can we reset the root password? Obviously&#8230; Nothing is Impossible <img src='http://systems.takizo.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  </p>
<p>Follow the steps below to reset MySQL&#8217;s Root Password;</p>
<ul>
<li>Stop MySQL Service</li>
<li>Start MySQL Service in Safe Mode: /usr/local/bin/mysqld_safe –skip-grant-tables&#038;</li>
<li>Connect to MySQL /usr/local/bin/mysql</li>
<li>mysql> use mysql;</li>
<li>mysql> UPDATE user set password=password(&#8216;newpassword’) where user=’root’ and host=’localhost’;</li>
<li>mysql> flush privileges;</li>
<li>mysql> quit;</li>
<li>Stop MySQL Service Again</li>
<li>Start MySQL Service in normal mode</li>
</ul>
<p>Log in to MySQL with your newly created password. </p>
]]></content:encoded>
			<wfw:commentRss>http://systems.takizo.com/2010/05/10/reset-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

