<?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>root | /var/logs/paulooi.log</title>
	<atom:link href="https://logs.paulooi.com/tag/root/feed" rel="self" type="application/rss+xml" />
	<link>https://logs.paulooi.com</link>
	<description>Systems Admin, Web Development and etc</description>
	<lastBuildDate>Fri, 04 Jun 2010 14:51:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Change or Set User Password in FreeBSD</title>
		<link>https://logs.paulooi.com/change-or-set-user-password-in-freebsd.php</link>
					<comments>https://logs.paulooi.com/change-or-set-user-password-in-freebsd.php#respond</comments>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Fri, 04 Jun 2010 14:51:02 +0000</pubDate>
				<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[<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...</p>
The post <a href="https://logs.paulooi.com/change-or-set-user-password-in-freebsd.php">Change or Set User Password in FreeBSD</a> first appeared on <a href="https://logs.paulooi.com">/var/logs/paulooi.log</a>.]]></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>The post <a href="https://logs.paulooi.com/change-or-set-user-password-in-freebsd.php">Change or Set User Password in FreeBSD</a> first appeared on <a href="https://logs.paulooi.com">/var/logs/paulooi.log</a>.]]></content:encoded>
					
					<wfw:commentRss>https://logs.paulooi.com/change-or-set-user-password-in-freebsd.php/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Reset MySQL Root Password</title>
		<link>https://logs.paulooi.com/reset-mysql-root-password.php</link>
					<comments>https://logs.paulooi.com/reset-mysql-root-password.php#respond</comments>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Mon, 10 May 2010 08:55:11 +0000</pubDate>
				<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[<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 😛 Follow the steps below to reset...</p>
The post <a href="https://logs.paulooi.com/reset-mysql-root-password.php">Reset MySQL Root Password</a> first appeared on <a href="https://logs.paulooi.com">/var/logs/paulooi.log</a>.]]></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="https://s.w.org/images/core/emoji/16.0.1/72x72/1f61b.png" alt="😛" class="wp-smiley" style="height: 1em; max-height: 1em;" /> </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>The post <a href="https://logs.paulooi.com/reset-mysql-root-password.php">Reset MySQL Root Password</a> first appeared on <a href="https://logs.paulooi.com">/var/logs/paulooi.log</a>.]]></content:encoded>
					
					<wfw:commentRss>https://logs.paulooi.com/reset-mysql-root-password.php/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
