<?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>ServerSignature Linux Community Support Blog Page &#187; mysql</title>
	<atom:link href="http://support.serversignature.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://support.serversignature.com</link>
	<description>Linux Server Management &#38; Consulting  Services :  Contact Email - admin@serversignature.com &#124; Web: serversignature.com</description>
	<lastBuildDate>Sun, 20 Jun 2010 17:59:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>rsync all your home and mysql db to new server.</title>
		<link>http://support.serversignature.com/rsync/rsync-all-your-home-and-mysql-db-to-new-server/</link>
		<comments>http://support.serversignature.com/rsync/rsync-all-your-home-and-mysql-db-to-new-server/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 14:31:04 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[Rsync]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=102</guid>
		<description><![CDATA[Some time you may want to backup your home directory and mysql databases to a new server, we can do that using rsync script.  The below script when run from your new server will, rsync all your home dir to your new server.
#!/bin/bash
#by-admin@serversignature.com
#Old Server IP
IP=192.168.0.1
#Scrit is run from the new server to move the [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/rsync/rsync-all-your-home-and-mysql-db-to-new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change mysql time zone</title>
		<link>http://support.serversignature.com/lamp/how-to-change-mysql-time-zone/</link>
		<comments>http://support.serversignature.com/lamp/how-to-change-mysql-time-zone/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 18:02:15 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[timezone]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=76</guid>
		<description><![CDATA[How to change mysql time zone
Edit /etc/my.cnf   and change your time zone.
root@box1 [/var/lib/mysql]# cat /etc/my.cnf
[mysqld_safe]
timezone = Europe/London
~
[mysqld]
set-variable = max_connections=500
safe-show-database
Login to mysql and check the time now.
root@box1 [/var/lib/mysql]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 369
Server version: 5.0.81-community MySQL Community Edition (GPL)
~
Type 'help;' or '\h' [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/lamp/how-to-change-mysql-time-zone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can I tunnel a local MySQL server through SSH?</title>
		<link>http://support.serversignature.com/lamp/how-can-i-tunnel-a-local-mysql-server-through-ssh/</link>
		<comments>http://support.serversignature.com/lamp/how-can-i-tunnel-a-local-mysql-server-through-ssh/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 16:34:23 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tunnel]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=72</guid>
		<description><![CDATA[Setting up the Tunnel
The most common methods of setting up a tunnel are through putty or through command-line SSH.
To open an SSH tunnel via the command line, run:
ssh -L3307:127.0.0.1:3306 -p 22 -N -t -x user@myhost.com
Connecting with MySQL
You can connect to the MySQL server!
You want to choose 3307 for your local port so that it does [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/lamp/how-can-i-tunnel-a-local-mysql-server-through-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a mysql database and User</title>
		<link>http://support.serversignature.com/lamp/create-a-mysql-database-and-user/</link>
		<comments>http://support.serversignature.com/lamp/create-a-mysql-database-and-user/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 08:00:46 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[permission]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=15</guid>
		<description><![CDATA[Create a mysql database and User
mysql> CREATE DATABASE database1;
For creating a new user with all privileges (use only for troubleshooting), at mysql prompt type:
mysql> GRANT ALL PRIVILEGES ON *.* TO 'yourusername'@'localhost' IDENTIFIED BY 'yourpassword' WITH GRANT OPTION;
For creating a new user with fewer privileges (should work for most web applications) which can only use the [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/lamp/create-a-mysql-database-and-user/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Set mysql root password</title>
		<link>http://support.serversignature.com/lamp/set-mysql-root-password/</link>
		<comments>http://support.serversignature.com/lamp/set-mysql-root-password/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 07:57:38 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=13</guid>
		<description><![CDATA[Set mysql root password
Before accessing the database by console you need to type:
mysql -u root
At the mysql console type:
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('yourpassword');
]]></description>
		<wfw:commentRss>http://support.serversignature.com/lamp/set-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing MYSQL with PHP4</title>
		<link>http://support.serversignature.com/lamp/installing-mysql-with-php4/</link>
		<comments>http://support.serversignature.com/lamp/installing-mysql-with-php4/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 07:54:52 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=10</guid>
		<description><![CDATA[Installing MYSQL with PHP 4
apt-get install mysql-server libapache2-mod-auth-mysql php4-mysql
]]></description>
		<wfw:commentRss>http://support.serversignature.com/lamp/installing-mysql-with-php4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing MYSQL with PHP 5</title>
		<link>http://support.serversignature.com/lamp/installing-mysql-with-php5/</link>
		<comments>http://support.serversignature.com/lamp/installing-mysql-with-php5/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 07:53:37 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=8</guid>
		<description><![CDATA[Installing MYSQL with PHP 5
apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql
]]></description>
		<wfw:commentRss>http://support.serversignature.com/lamp/installing-mysql-with-php5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install LAMP stack in Ubuntu</title>
		<link>http://support.serversignature.com/lamp/install-lamp-stack-in-ubuntu/</link>
		<comments>http://support.serversignature.com/lamp/install-lamp-stack-in-ubuntu/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 03:39:17 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=1</guid>
		<description><![CDATA[Install LAMP stack in Ubuntu
As of the 7.04 release +, the Ubuntu base system includes Tasksel.
You can either install LAMP using tasksel or install the LAMP packages as detailed above.
sudo tasksel install lamp-server
To remove the LAMP stack remove the following packages:
apache2 apache2-mpm-prefork apache2-utils apache2.2-common libapache2-mod-php5 libapr1 libaprutil1 libdbd-mysql-perl libdbi-perl libmysqlclient15off libnet-daemon-perl libplrpc-perl libpq5 mysql-client-5.0 mysql-common [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/lamp/install-lamp-stack-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
