<?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>Linux FAQ &#187; MySQL</title>
	<atom:link href="http://linuxfaq.pl/linux/category/mysql/feed" rel="self" type="application/rss+xml" />
	<link>http://linuxfaq.pl</link>
	<description>Rozwiązane i opisane przy okazji.</description>
	<lastBuildDate>Thu, 19 Jan 2012 16:48:49 +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>Mysql 5.5 instalacja ze źródeł</title>
		<link>http://linuxfaq.pl/linux/mysql-5-5-instalacja-ze-zrodel</link>
		<comments>http://linuxfaq.pl/linux/mysql-5-5-instalacja-ze-zrodel#comments</comments>
		<pubDate>Wed, 05 Oct 2011 23:46:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Instalacja]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://linuxfaq.pl/?p=307</guid>
		<description><![CDATA[Nie ma dla Debiana gotowej paczki z mysql 5.5, dlatego trzeba sobie skompilować, jak dawniej. Pobieramy ze strony http://dev.mysql.com/downloads/mysql/ aktualne źródło (Select Platform -> Source code). Do kompilacji będą potrzebne: apt-get install make cmake bison g++ Rozpakowujemy źródła: tar xzf mysql-5.5.16.tar.gz cd mysql-5.5.16 cmake . make make install (zainstaluje do /usr/local/mysql) lub make install DESTDIR=&#8221;/dowolny/katalog&#8221; [...]]]></description>
		<wfw:commentRss>http://linuxfaq.pl/linux/mysql-5-5-instalacja-ze-zrodel/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql &#8211; tworzenie bazy danych</title>
		<link>http://linuxfaq.pl/linux/mysql-tworzenie-bazy-danych</link>
		<comments>http://linuxfaq.pl/linux/mysql-tworzenie-bazy-danych#comments</comments>
		<pubDate>Tue, 09 Aug 2011 10:32:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://linuxfaq.pl/?p=252</guid>
		<description><![CDATA[CREATE DATABASE nazwa_bazy CHARACTER SET utf8 COLLATE utf8_general_ci;]]></description>
		<wfw:commentRss>http://linuxfaq.pl/linux/mysql-tworzenie-bazy-danych/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kilka instancji mysql na jednym serwerze</title>
		<link>http://linuxfaq.pl/linux/kilka-instancji-mysql-na-jednym-serwerze</link>
		<comments>http://linuxfaq.pl/linux/kilka-instancji-mysql-na-jednym-serwerze#comments</comments>
		<pubDate>Fri, 19 Nov 2010 23:55:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://linuxfaq.pl/?p=207</guid>
		<description><![CDATA[useradd mysql2 mkdir /var/run/mysqld2 chown mysql2.mysql2 /var/run/mysqld do /etc/mysql/my.cnf należy dodać sekcję: [mysqld_multi] mysqld = /usr/bin/mysqld_safe mysqladmin = /usr/bin/mysqladmin user = root password = haslo oraz sekcję [mysql] zmienić na [mysql1] oraz dodać kolejną [mysql2], itd. W każdej sekcji należy ustawić: [mysql2] user = mysql2 pid-file = /var/run/mysqld2/mysqld.pid socket = /var/run/mysqld2/mysqld.sock port = 3307 basedir [...]]]></description>
		<wfw:commentRss>http://linuxfaq.pl/linux/kilka-instancji-mysql-na-jednym-serwerze/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error 2020: Got packet bigger than &#8216;max_allowed_packet&#8217; bytes when dumping table</title>
		<link>http://linuxfaq.pl/linux/error-2020-got-packet-bigger-than-max_allowed_packet-bytes-when-dumping-table</link>
		<comments>http://linuxfaq.pl/linux/error-2020-got-packet-bigger-than-max_allowed_packet-bytes-when-dumping-table#comments</comments>
		<pubDate>Fri, 19 Nov 2010 00:45:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[max_allowed_packet]]></category>
		<category><![CDATA[mysqldump]]></category>

		<guid isPermaLink="false">http://linuxfaq.pl/?p=204</guid>
		<description><![CDATA[Podczas zrzutu bazy pojawia się error: mysqldump -u user -phaslo baza >plik mysqldump: Error 2020: Got packet bigger than &#8216;max_allowed_packet&#8217; bytes when dumping table `lex_tresci` at row: 38566 Należy ustawić max_allowed_packet na wyższą wartość. Nie pomaga ustawienie w my.cnf. Należy dodać do wywołania mysqldumpa: mysqldump &#8211;max_allowed_packet=512M -u user -phaslo baza >plik]]></description>
		<wfw:commentRss>http://linuxfaq.pl/linux/error-2020-got-packet-bigger-than-max_allowed_packet-bytes-when-dumping-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql &#8211; uprawnienia do bazy (grant)</title>
		<link>http://linuxfaq.pl/linux/mysql-grant</link>
		<comments>http://linuxfaq.pl/linux/mysql-grant#comments</comments>
		<pubDate>Wed, 22 Sep 2010 22:32:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysql grant]]></category>

		<guid isPermaLink="false">http://linuxfaq.pl/?p=164</guid>
		<description><![CDATA[Przyznanie uprawnień do bazy z poziomu administratora: Z localhosta: grant all privileges on nazwa_bazy.* to nazwa_usera@localhost identified by &#8216;haslo&#8217;; Z konkretnego IP: grant all privileges on nazwa_bazy.* to nazwa_usera@195.64.174.x identified by &#8216;haslo&#8217;; Z dowolnego IP: grant all privileges on nazwa_bazy.* to nazwa_usera@&#8217;%&#8217; identified by &#8216;haslo&#8217;;]]></description>
		<wfw:commentRss>http://linuxfaq.pl/linux/mysql-grant/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ERROR 1005 (HY000) at line 32: Can&#8217;t create table &#8216;./tabl/tabl_entry.frm&#8217; (errno: 150)</title>
		<link>http://linuxfaq.pl/linux/error-1005-hy000-at-line-32-cant-create-table-tabltabl_entry-frm-errno-150</link>
		<comments>http://linuxfaq.pl/linux/error-1005-hy000-at-line-32-cant-create-table-tabltabl_entry-frm-errno-150#comments</comments>
		<pubDate>Wed, 21 Jul 2010 11:16:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://linuxfaq.pl/?p=112</guid>
		<description><![CDATA[Przy próbie odtworzenia bazy mysql z dumpa pojawia się taki błąd: ERROR 1005 (HY000) at line 32: Can't create table './tabl/tabl_entry.frm' (errno: 150) Tabela zawiera klucz do innej tabeli, która jeszcze nie istnieje: CONSTRAINT `tabl_entry_FK_1` FOREIGN KEY (`author_id`) REFERENCES `tabl_user` (`id`), Aby mysql nie sprawdzał tego należy na początku dumpa dodać: SET FOREIGN_KEY_CHECKS = 0;]]></description>
		<wfw:commentRss>http://linuxfaq.pl/linux/error-1005-hy000-at-line-32-cant-create-table-tabltabl_entry-frm-errno-150/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL &#8211; obejście zapomnianego hasła root</title>
		<link>http://linuxfaq.pl/linux/mysql-obejscie-zapomnianego-hasla-root</link>
		<comments>http://linuxfaq.pl/linux/mysql-obejscie-zapomnianego-hasla-root#comments</comments>
		<pubDate>Wed, 02 Dec 2009 00:44:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://linuxfaq.pl/?p=30</guid>
		<description><![CDATA[1. Zatrzymanie mysqla 2. Uruchomienie serwera: mysqld &#8211;skip-grant-tables 3. Połączenie do bazy mysql jako root bez hasła 4. Ustawienie hasła update user set password=PASSWORD("NEWPASSWORD") where User='root'; 5.Restart MySQLa.]]></description>
		<wfw:commentRss>http://linuxfaq.pl/linux/mysql-obejscie-zapomnianego-hasla-root/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL: reset AutoIncrementu</title>
		<link>http://linuxfaq.pl/linux/mysql-reset-autoincrementu</link>
		<comments>http://linuxfaq.pl/linux/mysql-reset-autoincrementu#comments</comments>
		<pubDate>Wed, 02 Dec 2009 00:37:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://linuxfaq.pl/?p=27</guid>
		<description><![CDATA[ALTER TABLE tablica AUTO_INCREMENT=1111;]]></description>
		<wfw:commentRss>http://linuxfaq.pl/linux/mysql-reset-autoincrementu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Polskie literki po imporcie</title>
		<link>http://linuxfaq.pl/linux/polskie-literki-po-imporcie</link>
		<comments>http://linuxfaq.pl/linux/polskie-literki-po-imporcie#comments</comments>
		<pubDate>Wed, 02 Dec 2009 00:28:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://linuxfaq.pl/?p=21</guid>
		<description><![CDATA[w /etc/mysql/my.ini: [mysqld] collation_server=utf8_unicode_ci character_set_server=utf8 # To powoduje, że serwer wymusza kodowanie #i nie trzeba w php stosować set names utf8 po każdym połączeniu. skip-character-set-client-handshake]]></description>
		<wfw:commentRss>http://linuxfaq.pl/linux/polskie-literki-po-imporcie/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

