<?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>nixCraft &#187; MySQL</title> <atom:link href="http://www.cyberciti.biz/tips/category/mysql/feed" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/tips</link> <description>This is a Linux sys admin journal by Vivek about sys admin work, Linux tips &#38; tricks, hacks, news and more.</description> <lastBuildDate>Fri, 03 Feb 2012 22:45:35 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>HowTo: Migrate / Move MySQL Database And Users To New Server</title><link>http://www.cyberciti.biz/tips/move-mysql-users-privileges-grants-from-one-host-to-new-host.html</link> <comments>http://www.cyberciti.biz/tips/move-mysql-users-privileges-grants-from-one-host-to-new-host.html#comments</comments> <pubDate>Tue, 13 Jul 2010 22:06:53 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[MySQL]]></category> <category><![CDATA[mysql server]]></category> <category><![CDATA[privilege system]]></category> <category><![CDATA[privileges]]></category> <category><![CDATA[server database]]></category> <category><![CDATA[server mysql]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=7149</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/tips/category/mysql' title='See all MySQL Database Server related tips/articles'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/mysqllogo.gif' border='0' /></a></div> <span
class="drop_cap">I</span> already wrote about how to <a
href="http://www.cyberciti.biz/faq/howto-move-migrate-user-accounts-old-to-new-server/">move or migrate user accounts</a> from old Linux / UNIX server to a new server including mails and home directories. However, in reality you also need to move MySQL database which may host your blog, forum or just your data stored in MySQL database. The <a
href="http://www.cyberciti.biz/faq/tag/mysqldump-command/">mysqldump command</a> will only export the data and the table structure but it will not include a users grants and privileges. The main function of the <a
href="http://dev.mysql.com/doc/refman/5.1/en/privilege-system.html">MySQL privilege system (which is stored in mysql.user table)</a> is to authenticate a user who connects from a given host and to associate that user with privileges on a database such as SELECT, INSERT, UPDATE, and DELETE.]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/move-mysql-users-privileges-grants-from-one-host-to-new-host.html/feed</wfw:commentRss> <slash:comments>12</slash:comments> </item> <item><title>Linux HugeTLBfs: Improve MySQL Database Application Performance</title><link>http://www.cyberciti.biz/tips/linux-hugetlbfs-and-mysql-performance.html</link> <comments>http://www.cyberciti.biz/tips/linux-hugetlbfs-and-mysql-performance.html#comments</comments> <pubDate>Wed, 20 May 2009 07:59:39 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[CentOS]]></category> <category><![CDATA[Hardware]]></category> <category><![CDATA[High performance computing]]></category> <category><![CDATA[Howto]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[RedHat/Fedora Linux]]></category> <category><![CDATA[/etc/security/limits.conf]]></category> <category><![CDATA[/etc/sysctl.conf]]></category> <category><![CDATA[/proc/meminfo]]></category> <category><![CDATA[database application]]></category> <category><![CDATA[gbs]]></category> <category><![CDATA[kernel.shmall]]></category> <category><![CDATA[management feature]]></category> <category><![CDATA[memory accesses]]></category> <category><![CDATA[memory applications]]></category> <category><![CDATA[memory management]]></category> <category><![CDATA[memory pages]]></category> <category><![CDATA[memory system]]></category> <category><![CDATA[pae]]></category> <category><![CDATA[performance improvements]]></category> <category><![CDATA[physical mapping]]></category> <category><![CDATA[shared memory]]></category> <category><![CDATA[stock kernel]]></category> <category><![CDATA[sysctl command]]></category> <category><![CDATA[system call]]></category> <category><![CDATA[tlb]]></category> <category><![CDATA[virtual address space]]></category> <category><![CDATA[vm.hugetlb_shm_group]]></category> <category><![CDATA[vm.nr_hugepages]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=4773</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/tips/category/mysql' title='See all MySQL Database Server related tips/articles'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/mysqllogo.gif' border='0' /></a></div> <span
class="drop_cap">A</span>pplications that perform a lot of memory accesses (several GBs) may obtain performance improvements by using large pages due to reduced Translation Lookaside Buffer (TLB) misses.  HugeTLBfs is memory management feature offered in Linux kernel, which is valuable for applications that use a large virtual address space. It is especially useful for database applications such as MySQL, Oracle and others. Other server software(s) that uses the prefork or similar (e.g. Apache web server) model will also benefit.<br
/><br
/> The CPU's Translation Lookaside Buffer (TLB) is a small cache used for storing virtual-to-physical mapping information. By using the TLB, a translation can be performed without referencing the in-memory page table entry that maps the virtual address. However, to keep translations as fast as possible, the TLB is usually small. It is not uncommon for large memory applications to exceed the mapping capacity of the TLB. Users can use the huge page support in Linux kernel by either using the mmap system call or standard SYSv shared memory system calls (shmget, shmat). ]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/linux-hugetlbfs-and-mysql-performance.html/feed</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Oracle To Purchase Sun Microsystems for $7.4b</title><link>http://www.cyberciti.biz/tips/oracle-to-purchase-sun-microsystems-for-74b.html</link> <comments>http://www.cyberciti.biz/tips/oracle-to-purchase-sun-microsystems-for-74b.html#comments</comments> <pubDate>Tue, 21 Apr 2009 10:10:39 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[MySQL]]></category> <category><![CDATA[News]]></category> <category><![CDATA[OpenOffice.Org]]></category> <category><![CDATA[Solaris]]></category> <category><![CDATA[Storage]]></category> <category><![CDATA[UNIX]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=4622</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/tips/category/solaris' title='See all Sun Solaris UNIX related tips/articles'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/sun-solaris.gif' border='0' /></a></div> Look like combined company will give a tough time to both IBM and HP.
Sun Microsystems and Oracle Corporation announced yesterday that  they have entered into a definitive agreement under which Oracle will acquire Sun common stock for a total of $7.4 billion or $5.6 billion net of Sun's cash and debt.]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/oracle-to-purchase-sun-microsystems-for-74b.html/feed</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>trillr1: Build a Twitter-like Microblogging Website</title><link>http://www.cyberciti.biz/tips/howto-build-twitter-like-microblogging-website.html</link> <comments>http://www.cyberciti.biz/tips/howto-build-twitter-like-microblogging-website.html#comments</comments> <pubDate>Thu, 18 Dec 2008 15:20:02 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Download of the day]]></category> <category><![CDATA[GNU/Open source]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[News]]></category> <category><![CDATA[programming]]></category> <category><![CDATA[python]]></category> <category><![CDATA[django]]></category> <category><![CDATA[jan brauer]]></category> <category><![CDATA[mysql database]]></category> <category><![CDATA[programming language python]]></category> <category><![CDATA[social networking]]></category> <category><![CDATA[standalone web]]></category> <category><![CDATA[tweets]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[web application]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=4031</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/tips/category/download-of-the-day' title='See all previously featured / recommended downloads'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/download_of_the.day.png' border='0' /></a></div> <a
href="http://twitter.com/nixcraft">Twitter</a> is a free social networking and micro-blogging service, that allows its users to send and read other users' updates (also known as tweets).  Now, you can build your own Twitter like service using trillr1.]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/howto-build-twitter-like-microblogging-website.html/feed</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>MySQL vs PostgreSQL</title><link>http://www.cyberciti.biz/tips/mysql-vs-postgresql.html</link> <comments>http://www.cyberciti.biz/tips/mysql-vs-postgresql.html#comments</comments> <pubDate>Thu, 09 Oct 2008 13:02:16 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[Postgresql]]></category> <category><![CDATA[programming]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows server]]></category> <category><![CDATA[database software]]></category> <category><![CDATA[database system]]></category> <category><![CDATA[oracle]]></category> <category><![CDATA[relational databases]]></category> <category><![CDATA[software projects]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=3073</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/tips/category/mysql' title='See all MySQL Database Server related tips/articles'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/mysqllogo.gif' border='0' /></a></div> Useful comparison of MySQL and PostgreSQL open source database software.
MySQL vs PostgreSQL is a decision many must make when approaching open-source relational databases management systems. Both are time-proven solutions that compete strongly with propriety database software.]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/mysql-vs-postgresql.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Download of The Day: WordPress 2.6</title><link>http://www.cyberciti.biz/tips/download-wordpress-26.html</link> <comments>http://www.cyberciti.biz/tips/download-wordpress-26.html#comments</comments> <pubDate>Tue, 15 Jul 2008 09:48:36 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Download of the day]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[Open source coding]]></category> <category><![CDATA[php]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[Windows server]]></category> <category><![CDATA[developers]]></category> <category><![CDATA[gears]]></category> <category><![CDATA[google]]></category> <category><![CDATA[open-source]]></category> <category><![CDATA[source browser]]></category> <category><![CDATA[theme previews]]></category> <category><![CDATA[turbo speed]]></category> <category><![CDATA[unix shell]]></category> <category><![CDATA[wiki]]></category> <category><![CDATA[wordpress]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=2461</guid> <description><![CDATA[Wordpress 2.6 has been released and available for download almost a month ahead schedule.]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/download-wordpress-26.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>FireFox 3 Sets A New Guinness World Record For The Largest Number Of Software Download In 24 Hours</title><link>http://www.cyberciti.biz/tips/firefox-new-guinness-world-record.html</link> <comments>http://www.cyberciti.biz/tips/firefox-new-guinness-world-record.html#comments</comments> <pubDate>Thu, 03 Jul 2008 06:28:05 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Download of the day]]></category> <category><![CDATA[GNU/Open source]]></category> <category><![CDATA[Howto]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Linux desktop]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[News]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[confirmation]]></category> <category><![CDATA[firefox]]></category> <category><![CDATA[firefox 3]]></category> <category><![CDATA[guinness world record]]></category> <category><![CDATA[guinness world records]]></category> <category><![CDATA[Mozilla]]></category> <category><![CDATA[mozilla community]]></category> <category><![CDATA[software downloaded]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=2432</guid> <description><![CDATA[The new record show off the popularity of Firefox web browser software. It is offical Mozilla set a Guinness World Record for the most software downloaded in 24 hours.]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/firefox-new-guinness-world-record.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Firefox 3 Was Download 8 Million Times In 24 Hour Period</title><link>http://www.cyberciti.biz/tips/firefox-3-was-download-8-million-times.html</link> <comments>http://www.cyberciti.biz/tips/firefox-3-was-download-8-million-times.html#comments</comments> <pubDate>Wed, 18 Jun 2008 20:47:18 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[MySQL]]></category> <category><![CDATA[download firefox 3]]></category> <category><![CDATA[firefox 3]]></category> <category><![CDATA[firefox download]]></category> <category><![CDATA[firfox]]></category> <category><![CDATA[firfox download]]></category> <category><![CDATA[firfox portable]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=2382</guid> <description><![CDATA[FireFox 3 exceeded 8 million downloads in 24 hour period.  You need to be patient as judges and Guinness World Records validate record attempt. ]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/firefox-3-was-download-8-million-times.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Sun To Release New MySQL Version With Partitioning and Replication Features</title><link>http://www.cyberciti.biz/tips/mysql-51.html</link> <comments>http://www.cyberciti.biz/tips/mysql-51.html#comments</comments> <pubDate>Sat, 19 Apr 2008 10:29:25 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[MySQL]]></category> <category><![CDATA[Solaris]]></category> <category><![CDATA[database design tool]]></category> <category><![CDATA[mysql version]]></category> <category><![CDATA[new release]]></category> <category><![CDATA[open-source]]></category> <category><![CDATA[replication features]]></category> <category><![CDATA[second quarter]]></category> <category><![CDATA[sun microsystems]]></category> <category><![CDATA[workbench]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=2216</guid> <description><![CDATA[The next release of the MySQL open source database is scheduled for release by the end of the second quarter and will include new partitioning, replication, and event scheduling features.]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/mysql-51.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How To Setup Disk Quotas For MySQL Database</title><link>http://www.cyberciti.biz/tips/linux-unix-setting-up-mysql-database-quotas.html</link> <comments>http://www.cyberciti.biz/tips/linux-unix-setting-up-mysql-database-quotas.html#comments</comments> <pubDate>Mon, 28 Jan 2008 06:44:32 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Howto]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[database size]]></category> <category><![CDATA[databases]]></category> <category><![CDATA[disk quota]]></category> <category><![CDATA[linux disk]]></category> <category><![CDATA[mysql database quote]]></category> <category><![CDATA[mysql disk quote]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/linux-unix-setting-up-mysql-database-quotas.html</guid> <description><![CDATA[This is a user contributed article. MySQL server has no support for preventing disk from getting filled up. You need to depend upon external configurations. Let us see how to use standard Linux disk quota to limit user database size. Suppose you have a user foo on the system as well as on MySQL. Now [...]]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/linux-unix-setting-up-mysql-database-quotas.html/feed</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Sun Microsystems to Acquire MySQL Database Server</title><link>http://www.cyberciti.biz/tips/sun-to-acquire-mysql-open-source-database.html</link> <comments>http://www.cyberciti.biz/tips/sun-to-acquire-mysql-open-source-database.html#comments</comments> <pubDate>Wed, 16 Jan 2008 13:49:23 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[News]]></category> <category><![CDATA[Solaris]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[community members]]></category> <category><![CDATA[contributor]]></category> <category><![CDATA[database market]]></category> <category><![CDATA[database software]]></category> <category><![CDATA[definitive agreement]]></category> <category><![CDATA[disbelief]]></category> <category><![CDATA[industry speculation]]></category> <category><![CDATA[ipo]]></category> <category><![CDATA[open source database]]></category> <category><![CDATA[open source databases]]></category> <category><![CDATA[open source software]]></category> <category><![CDATA[sleepless nights]]></category> <category><![CDATA[source icon]]></category> <category><![CDATA[stakeholders]]></category> <category><![CDATA[sun microsystems]]></category> <category><![CDATA[sun microsystems inc]]></category> <category><![CDATA[users community]]></category> <category><![CDATA[viewpoints]]></category> <category><![CDATA[web economy]]></category> <category><![CDATA[what this means]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/sun-to-acquire-mysql-open-source-database.html</guid> <description><![CDATA[This is yet another successful story for open source software. Sun has no database software to sell in a $15 billion market that Oracle leads, according to IDC study. Congratulations, Monty, David and the crew. Now, Sun Microsystems, Inc. today announced it has entered into a definitive agreement to acquire MySQL AB, an open source [...]]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/sun-to-acquire-mysql-open-source-database.html/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>How to Create Linux Powered MP3 file server using MySQL Amarok and ObsidianMusic</title><link>http://www.cyberciti.biz/tips/linux-mp3-file-server.html</link> <comments>http://www.cyberciti.biz/tips/linux-mp3-file-server.html#comments</comments> <pubDate>Fri, 21 Dec 2007 13:06:11 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[amarok]]></category> <category><![CDATA[database server]]></category> <category><![CDATA[file server]]></category> <category><![CDATA[mp3 file]]></category> <category><![CDATA[mp3 files]]></category> <category><![CDATA[music files]]></category> <category><![CDATA[playing music]]></category> <category><![CDATA[scripts]]></category> <category><![CDATA[search capabilities]]></category> <category><![CDATA[small office network]]></category> <category><![CDATA[web frontend]]></category> <category><![CDATA[web interface]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/linux-mp3-file-server.html</guid> <description><![CDATA[Razvan talk about hooking Amarok to MySQL database server and create an MP3 file server. I this is an excellent hack: When it comes to playing music in Linux, Amarok is one of the best audio players out there. It offers almost everything you need, from a clean, intuitive interface to a range of useful [...]]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/linux-mp3-file-server.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Download of the day: phpBB version 3 ( phpBB Gold )</title><link>http://www.cyberciti.biz/tips/download-phpbb-3.html</link> <comments>http://www.cyberciti.biz/tips/download-phpbb-3.html#comments</comments> <pubDate>Thu, 13 Dec 2007 19:56:21 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Download of the day]]></category> <category><![CDATA[GNU/Open source]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[php]]></category> <category><![CDATA[Postgresql]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[Windows server]]></category> <category><![CDATA[admin control panel]]></category> <category><![CDATA[database management systems]]></category> <category><![CDATA[firebird]]></category> <category><![CDATA[independent security]]></category> <category><![CDATA[internet forum]]></category> <category><![CDATA[microsoft sql server]]></category> <category><![CDATA[moderator control]]></category> <category><![CDATA[new features]]></category> <category><![CDATA[official web]]></category> <category><![CDATA[oracle]]></category> <category><![CDATA[panel moderator]]></category> <category><![CDATA[php programming language]]></category> <category><![CDATA[raft]]></category> <category><![CDATA[security audit]]></category> <category><![CDATA[social networking]]></category> <category><![CDATA[sqlite]]></category> <category><![CDATA[stable version]]></category> <category><![CDATA[team members]]></category> <category><![CDATA[top priority]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/download-phpbb-3.html</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/tips/category/download-of-the-day' title='See all previously featured / recommended downloads'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/download_of_the.day.png' border='0' /></a></div> <a
href="http://www.phpbb.com">phpBB</a> final version 3 has been released and available for download.  phpBB is a popular Internet forum package written in the PHP programming language.]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/download-phpbb-3.html/feed</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>CentOS / Redhat Enterprise Linux Setup Lighttpd in Chroot Jail</title><link>http://www.cyberciti.biz/tips/centos-rhel-lighttpd-chroot-jail-installation-howto.html</link> <comments>http://www.cyberciti.biz/tips/centos-rhel-lighttpd-chroot-jail-installation-howto.html#comments</comments> <pubDate>Fri, 02 Nov 2007 10:40:53 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[CentOS]]></category> <category><![CDATA[File system]]></category> <category><![CDATA[Howto]]></category> <category><![CDATA[lighttpd]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[php]]></category> <category><![CDATA[RedHat/Fedora Linux]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[centos linux]]></category> <category><![CDATA[chown command]]></category> <category><![CDATA[chroot lighttpd]]></category> <category><![CDATA[chroot red hat enterprise linux]]></category> <category><![CDATA[cp command]]></category> <category><![CDATA[fedora linux]]></category> <category><![CDATA[install lighttpd]]></category> <category><![CDATA[install mysql]]></category> <category><![CDATA[install php]]></category> <category><![CDATA[ldap php]]></category> <category><![CDATA[lighttpd ./configure with]]></category> <category><![CDATA[lighttpd for centos]]></category> <category><![CDATA[lighttpd jail centos]]></category> <category><![CDATA[lighttpd rhel5 rpm]]></category> <category><![CDATA[pear php]]></category> <category><![CDATA[php gd]]></category> <category><![CDATA[php ldap]]></category> <category><![CDATA[php pear]]></category> <category><![CDATA[redhat chroot]]></category> <category><![CDATA[rhel 5]]></category> <category><![CDATA[rhel lighttpd chroot]]></category> <category><![CDATA[webroot]]></category> <category><![CDATA[yum command]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/centos-rhel-lighttpd-chroot-jail-installation-howto.html</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/tips/category/lighttpd' title='See all Lighttpd related tips/articles'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/light_logo.png' border='0' /></a></div> Many people asked me to write about setting up Lighttpd under CentOS or RHEL 5 Linux using chroot() call. The instructions are almost same but you need to make little modification as compare to <a
href="http://www.cyberciti.biz/tips/howto-setup-lighttpd-php-mysql-chrooted-jail.html">Debian / Ubuntu</a> Linux instructions.]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/centos-rhel-lighttpd-chroot-jail-installation-howto.html/feed</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Back up and print WordPress blog with OpenOffice.org Base</title><link>http://www.cyberciti.biz/tips/backup-print-wordpress-blog.html</link> <comments>http://www.cyberciti.biz/tips/backup-print-wordpress-blog.html#comments</comments> <pubDate>Thu, 01 Nov 2007 15:18:07 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Download of the day]]></category> <category><![CDATA[Howto]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Linux desktop]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[backup tool]]></category> <category><![CDATA[mysql database]]></category> <category><![CDATA[openoffice]]></category> <category><![CDATA[pdf file]]></category> <category><![CDATA[web publishing system]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/backup-print-wordpress-blog.html</guid> <description><![CDATA[This sounds like a good idea to me. Never thought one can use OpenOffice to import MySQL database and do all sort of crazy things. I can even build PDF file of all top posts and provide it as download option for a small fee. From the article: If you are running a blog (or [...]]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/backup-print-wordpress-blog.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Quickly Backup / dump MySql / Postgres database to another remote server securely</title><link>http://www.cyberciti.biz/tips/backup-postgres-mysql-securely-using-ssh.html</link> <comments>http://www.cyberciti.biz/tips/backup-postgres-mysql-securely-using-ssh.html#comments</comments> <pubDate>Mon, 01 Oct 2007 04:11:53 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Backup]]></category> <category><![CDATA[FreeBSD]]></category> <category><![CDATA[Howto]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[Postgresql]]></category> <category><![CDATA[RedHat/Fedora Linux]]></category> <category><![CDATA[Sys admin]]></category> <category><![CDATA[Tips]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[dd command]]></category> <category><![CDATA[mysql database backup]]></category> <category><![CDATA[mysqldump command]]></category> <category><![CDATA[pg dump command]]></category> <category><![CDATA[postgres database backup]]></category> <category><![CDATA[ssh protocol]]></category> <category><![CDATA[unix pipe]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/backup-postgres-mysql-securely-using-ssh.html</guid> <description><![CDATA[Using UNIX pipe concept one can dump database to another server securely using ssh protocol. All you need remote execution rights for the 'dd' command, over SSH. This allows you to run database dumps across an encrypted channel. Dump Postgres Database using ssh Use pg_dump command command: pg_dump -U USERNAME YOUR-DATABASE-NAME &#124; ssh user@remote.server.com "dd [...]]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/backup-postgres-mysql-securely-using-ssh.html/feed</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Howto: Make consistent MySQL database backups using Solaris ZFS snapshots</title><link>http://www.cyberciti.biz/tips/zfs-snapshot-based-mysql-database-backup.html</link> <comments>http://www.cyberciti.biz/tips/zfs-snapshot-based-mysql-database-backup.html#comments</comments> <pubDate>Mon, 20 Aug 2007 20:49:54 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Howto]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[Solaris]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[backups]]></category> <category><![CDATA[logical volume manager]]></category> <category><![CDATA[mysql backup]]></category> <category><![CDATA[snapshot]]></category> <category><![CDATA[snapshots]]></category> <category><![CDATA[solaris unix]]></category> <category><![CDATA[zfs]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/zfs-snapshot-based-mysql-database-backup.html</guid> <description><![CDATA[I’ve already written about MySQL backup using a shell script and consistent backup with Linux Logical Volume Manager (LVM) snapshots: A snapshot volume is a special type of volume that presents all the data that was in the volume at the time the snapshot was created. This means you can back up that volume without [...]]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/zfs-snapshot-based-mysql-database-backup.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>MySQL Proxy Load balancing and Failover Tutorial</title><link>http://www.cyberciti.biz/tips/mysql-proxy-howto.html</link> <comments>http://www.cyberciti.biz/tips/mysql-proxy-howto.html#comments</comments> <pubDate>Fri, 10 Aug 2007 15:25:21 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[CentOS]]></category> <category><![CDATA[Debian Linux]]></category> <category><![CDATA[Download of the day]]></category> <category><![CDATA[High performance computing]]></category> <category><![CDATA[Howto]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Monitoring]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[RedHat/Fedora Linux]]></category> <category><![CDATA[Suse Linux]]></category> <category><![CDATA[Tuning]]></category> <category><![CDATA[Ubuntu Linux]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[caching]]></category> <category><![CDATA[database server]]></category> <category><![CDATA[failover]]></category> <category><![CDATA[ha]]></category> <category><![CDATA[load balancing]]></category> <category><![CDATA[lua]]></category> <category><![CDATA[mysql server]]></category> <category><![CDATA[proxy application]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/mysql-proxy-howto.html</guid> <description><![CDATA[MySQL Proxy is a simple and new program that sits between your client and MySQL server(s) that can monitor, analyze or transform their communication. Its flexibility allows for a wide variety of use cases, including: a) Load balancing b) Failover c) Query analysis d) Query filtering and modification e) and many more... MySQL Proxy tutorial [...]]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/mysql-proxy-howto.html/feed</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Install and configure MySQL on Windows XP or Vista or 2003 server</title><link>http://www.cyberciti.biz/tips/mysql-on-windows.html</link> <comments>http://www.cyberciti.biz/tips/mysql-on-windows.html#comments</comments> <pubDate>Mon, 25 Jun 2007 18:25:14 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[GNU/Open source]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows server]]></category> <category><![CDATA[microsoft]]></category> <category><![CDATA[reliability]]></category> <category><![CDATA[sql server]]></category> <category><![CDATA[web applications]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/mysql-on-windows.html</guid> <description><![CDATA[There is a nice small article about using MySQL on Windows 2003 or Vista desktop system. I honestly have to say that, now after years of using MySQL on Windows, I find it to be my favorite database/platform combination of choice. In my opinion, it's easier to use than Microsoft's own database on their platform, [...]]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/mysql-on-windows.html/feed</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>PHP, Perl, MySQL web programming tutorials, howtos for beginners and novice users</title><link>http://www.cyberciti.biz/tips/php-perl-mysql-webprogramming-tutorials.html</link> <comments>http://www.cyberciti.biz/tips/php-perl-mysql-webprogramming-tutorials.html#comments</comments> <pubDate>Wed, 06 Jun 2007 07:46:27 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Apache]]></category> <category><![CDATA[FAQ]]></category> <category><![CDATA[Howto]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[UNIX]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/php-perl-mysql-webprogramming-tutorials.html</guid> <description><![CDATA[The motto of this site is learn with pictures, not words: In Pictures tutorials began as part of a research study we conducted for the U.S. Department of Education. The goal: to make it easier for people with learning disabilities to learn computer subjects. As part of the study, we created simple, illustration-based tutorials. Everyone [...]]]></description> <wfw:commentRss>http://www.cyberciti.biz/tips/php-perl-mysql-webprogramming-tutorials.html/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
