<?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>User Account &#8211; Techawaken</title>
	<atom:link href="https://www.techawaken.com/tag/user-account/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techawaken.com</link>
	<description>Techawaken shares articles and experience in PHP, MySql, Magento,Joomla, Wordpress, JQuery, Javascript etc.</description>
	<lastBuildDate>Tue, 27 Jan 2015 19:31:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Setting user account passwords in MySQL</title>
		<link>https://www.techawaken.com/setting-user-account-passwords-mysql/</link>
				<comments>https://www.techawaken.com/setting-user-account-passwords-mysql/#respond</comments>
				<pubDate>Tue, 09 Dec 2014 19:28:38 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[User Account]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=643</guid>
				<description><![CDATA[It is important to have passwords for all MySQL user accounts for securing the database. If anyone knows the username of an account with no password then he can successfully connect to the database server.

<strong>To assign or change a password for an existing account</strong>

<pre>

mysql> SET PASSWORD FOR 'newuser'@'localhost' = PASSWORD('mypass');

</pre>



<strong>NOTE:</strong> <em>Only users such as root that have update access to the mysql database can change the password for other users.</em><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/creating-user-accounts-mysql/" rel="bookmark" title="Creating user accounts in MySQL">Creating user accounts in MySQL </a></li>
<li><a href="https://www.techawaken.com/deleting-user-accounts-mysql/" rel="bookmark" title="Deleting user accounts in MySQL">Deleting user accounts in MySQL </a></li>
<li><a href="https://www.techawaken.com/magento-admin-this-account-locked-unlock-it/" rel="bookmark" title="Magento Admin &#8211; &#8220;This account is locked.&#8221;, how to unlock it?">Magento Admin &#8211; &#8220;This account is locked.&#8221;, how to unlock it? </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/setting-user-account-passwords-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Deleting user accounts in MySQL</title>
		<link>https://www.techawaken.com/deleting-user-accounts-mysql/</link>
				<comments>https://www.techawaken.com/deleting-user-accounts-mysql/#respond</comments>
				<pubDate>Sat, 08 Nov 2014 17:50:44 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Delete User]]></category>
		<category><![CDATA[User Account]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=644</guid>
				<description><![CDATA[The <strong>DROP USER</strong> statement is used to delete MySQL accounts and their privileges.

<pre>

DROP USER 'accountuser'@'localhost';

</pre>



If you wish to delete <em>multiple</em> user accounts then you can enter them <em>comma separated</em> as shown below:

<pre>

DROP USER 'accountuser1'@'localhost', DROP USER 'accountuser2'@'localhost';

</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/creating-user-accounts-mysql/" rel="bookmark" title="Creating user accounts in MySQL">Creating user accounts in MySQL </a></li>
<li><a href="https://www.techawaken.com/deleting-customer-data-magento/" rel="bookmark" title="Deleting customer data in Magento">Deleting customer data in Magento </a></li>
<li><a href="https://www.techawaken.com/mysql-data-directory-size-large-fix/" rel="bookmark" title="MySql data directory size is very large, how to fix?">MySql data directory size is very large, how to fix? </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/deleting-user-accounts-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Creating user accounts in MySQL</title>
		<link>https://www.techawaken.com/creating-user-accounts-mysql/</link>
				<comments>https://www.techawaken.com/creating-user-accounts-mysql/#respond</comments>
				<pubDate>Thu, 09 Oct 2014 19:21:05 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[User Account]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=640</guid>
				<description><![CDATA[MySQL user names can be up to 16 characters long.

Here are the queries for creating user accounts in MySQL:

<strong>Create user with no password</strong>

<pre>

mysql> CREATE USER 'newuser'@'localhost';

</pre>



<strong>Create user with password test123</strong>

<pre>

mysql> CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'test123';

</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/optimize-mysql-database-phpmyadmin/" rel="bookmark" title="How to Optimize a MySQL Database using phpMyAdmin?">How to Optimize a MySQL Database using phpMyAdmin? </a></li>
<li><a href="https://www.techawaken.com/magento-admin-this-account-locked-unlock-it/" rel="bookmark" title="Magento Admin &#8211; &#8220;This account is locked.&#8221;, how to unlock it?">Magento Admin &#8211; &#8220;This account is locked.&#8221;, how to unlock it? </a></li>
<li><a href="https://www.techawaken.com/mysql-data-directory-size-large-fix/" rel="bookmark" title="MySql data directory size is very large, how to fix?">MySql data directory size is very large, how to fix? </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/creating-user-accounts-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
