<?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>Phat Site Blog &#187; mysql</title>
	<atom:link href="http://blog.phatsite.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.phatsite.com</link>
	<description>Web Stuff is Easy</description>
	<lastBuildDate>Sun, 29 Jan 2012 20:00:15 +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>MySQL 5 &#8211; Creating a Username and Assigning Permissions</title>
		<link>http://blog.phatsite.com/server-maintenance/mysql-5-creating-a-username-and-assigning-permissions/</link>
		<comments>http://blog.phatsite.com/server-maintenance/mysql-5-creating-a-username-and-assigning-permissions/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 02:05:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Server Maintenance]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://blog.phatsite.com/?p=28</guid>
		<description><![CDATA[Here&#8217;s a quick way to get a mysql up and running with all user permissions.
CREATE USER &#8216;newuser&#8217;@'localhost&#8217; IDENTIFIED BY &#8216;password&#8217;;
GRANT ALL ON database.* to &#8216;newuser&#8217;;
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick way to get a mysql up and running with all user permissions.<br />
CREATE USER &#8216;newuser&#8217;@'localhost&#8217; IDENTIFIED BY &#8216;password&#8217;;<br />
GRANT ALL ON database.* to &#8216;newuser&#8217;;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phatsite.com/server-maintenance/mysql-5-creating-a-username-and-assigning-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn On Your Lamp &#8211; Easy Apache/PHP/MySQL Install on CentOS for Web Developers</title>
		<link>http://blog.phatsite.com/other/turn-on-your-lamp-easy-apachephpmysql-install-on-centos-for-web-developers/</link>
		<comments>http://blog.phatsite.com/other/turn-on-your-lamp-easy-apachephpmysql-install-on-centos-for-web-developers/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 00:37:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.phatsite.com/?p=22</guid>
		<description><![CDATA[vi /etc/yum.repos.d/CentOS-Base.repo
find [centosplus] and locate:
enabled = 0
change to
enabled = 1
yum install php php-mysql mysql-server php-gd postgres ImageMagick ImageMagick-devel
Now you got php, mysql, graphic manipulation, and posgres installed.
Let&#8217;s setup your MySQL:
/etc/init.d/mysqld restart &#8211; after you run this, you will get a bunch of useful text, read it!
/usr/bin/mysqladmin -u root password &#8216;CHANGEMETOHARDPASSWORD&#8217;
/sbin/chkconfig mysqld &#8211;level 2345 on  &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>vi /etc/yum.repos.d/CentOS-Base.repo<br />
find [centosplus] and locate:<br />
enabled = 0</p>
<p>change to</p>
<p>enabled = 1</p>
<p>yum install php php-mysql mysql-server php-gd postgres ImageMagick ImageMagick-devel</p>
<p>Now you got php, mysql, graphic manipulation, and posgres installed.</p>
<p>Let&#8217;s setup your MySQL:<br />
/etc/init.d/mysqld restart &#8211; after you run this, you will get a bunch of useful text, read it!<br />
/usr/bin/mysqladmin -u root password &#8216;CHANGEMETOHARDPASSWORD&#8217;<br />
/sbin/chkconfig mysqld &#8211;level 2345 on  &#8211; lets mysql startup on reboot</p>
<p>Now you have PHP installed with common libraries such as image manipulation and postgres and mysql for database work.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phatsite.com/other/turn-on-your-lamp-easy-apachephpmysql-install-on-centos-for-web-developers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating a MySQL 5.0 Database for your Web Application</title>
		<link>http://blog.phatsite.com/server-maintenance/creating-a-mysql-50-database-for-your-web-application/</link>
		<comments>http://blog.phatsite.com/server-maintenance/creating-a-mysql-50-database-for-your-web-application/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 23:15:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Server Maintenance]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.phatsite.com/?p=14</guid>
		<description><![CDATA[&#62; mysql -u root -p
Enter password: &#60;enter your password&#62;
Welcome to the MySQL monitor.  Commands end with ; or \g.
Server version: 5.0.45 Source distribution
Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.
mysql&#62; create database newdb;
Query OK, 1 row affected (0.00 sec)
mysql&#62; GRANT ALL PRIVILEGES ON newdb.* TO newdbuser@localhost IDENTIFIED BY &#8216;password_for_newdbuser&#8217;;
To test if [...]]]></description>
			<content:encoded><![CDATA[<p>&gt; mysql -u root -p<br />
Enter password: &lt;enter your password&gt;<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Server version: 5.0.45 Source distribution</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.</p>
<p>mysql&gt; create database newdb;<br />
Query OK, 1 row affected (0.00 sec)<br />
mysql&gt; GRANT ALL PRIVILEGES ON newdb.* TO newdbuser@localhost IDENTIFIED BY &#8216;password_for_newdbuser&#8217;;</p>
<p>To test if it&#8217;s created, run this command:<br />
&gt; mysql -u newdbuser -p<br />
Enter password: &lt;enter your password&gt;<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Server version: 5.0.45 Source distribution</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.</p>
<p>mysql&gt; show databases;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
| Database           |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
| newdb              |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
3 rows in set (0.00 sec)</p>
<p>mysql&gt; use newdb;<br />
Database changed<br />
mysql&gt; exit<br />
Bye</p>
<p>Everything looks good!  Your database is created! Now you&#8217;re ready to create your Wordpress blog, just configure the settings with your database name, username, and password. <img src='http://blog.phatsite.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phatsite.com/server-maintenance/creating-a-mysql-50-database-for-your-web-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

