<?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>lizongbo at 618119.com &#187; mysql</title>
	<atom:link href="http://618119.com/tag/mysql/feed" rel="self" type="application/rss+xml" />
	<link>http://618119.com</link>
	<description>工作,生活,Android,前端,Linode,Ubuntu,nginx,java,apache,tomcat,Resin,mina,Hessian,XMPP,RPC</description>
	<lastBuildDate>Tue, 31 Jan 2012 14:25:11 +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>在Ubuntu10.04上通过mysql源代码进行编译安装</title>
		<link>http://618119.com/archives/2010/11/17/179.html</link>
		<comments>http://618119.com/archives/2010/11/17/179.html#comments</comments>
		<pubDate>Tue, 16 Nov 2010 16:10:53 +0000</pubDate>
		<dc:creator>lizongbo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[jdbc]]></category>
		<category><![CDATA[Resin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://618119.com/?p=179</guid>
		<description><![CDATA[在Ubuntu10.04上通过mysql源代码进行编译安装MySQL Community Server 操作系统是linode上的Ubuntu 10.04, MySQL Community Server目前最新正式版为：mysql 5.1.51 GA. 源代码下载地址为： http://www.mirrorservice.org/sites/ftp.mysql.com/Downloads/MySQL-5.1/mysql-5.1.51.tar.gz 来源：http://www.mysql.com/downloads/mirror.php?id=394595#mirrors http://www.mysql.com/downloads/ 1.先下载源代码到本地： root@618119.com:/usr/local/app# wget http://dev.mysql.com/get/Downloads/MySQL-5.1/mysql-5.1.51.tar.gz/from/http://www.mirrorservice.org/sites/ftp.mysql.com/ 2.解压mysql-5.1.51.tar.gz到/usr/local/app/mysql-5.1.51： root@618119.com:/usr/local/app# tar -zxvf mysql* 3.进入解压得到的源码目录中： root@618119.com:/usr/local/app# cd mysql* 4.运行configure进行检查： root@618119.com:/usr/local/app/mysql-5.1.51# ./configure -prefix=/usr/local/app/mysql -with-charset=utf8 -with-collation=utf8_general_ci -with-extra-charsets=latin1 提示信息：checking for termcap functions library&#8230; configure: error: No curses/termcap library found 5.安装libncurses5-dev进行解决： root@618119.com:/usr/local/app/mysql-5.1.51# sudo apt-get install libncurses5-dev 6.在编译安装nginx时候已经安装了 gcc libc6-dev build-essential [...]]]></description>
		<wfw:commentRss>http://618119.com/archives/2010/11/17/179.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>blog的myql数据库居然挂了。</title>
		<link>http://618119.com/archives/2009/01/07/120.html</link>
		<comments>http://618119.com/archives/2009/01/07/120.html#comments</comments>
		<pubDate>Wed, 07 Jan 2009 14:52:45 +0000</pubDate>
		<dc:creator>lizongbo</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://618119.com/archives/2009/01/07/120.html</guid>
		<description><![CDATA[前晚升级了博客到WordPress 2.7，当时还好好的。 结果今晚打开的时候，被转到了安装页面。 http://618119.com/wp-admin/install.php 老是去安装界面， 点安装却提示：WordPress database error: [Table './sevtiger_lzb/wp_options' is marked as crashed and should be repaired] 在网上找到说mysql的索引坏了，要执行myisamchk -c -r *.MYI。 于是下载了gtalk，登录上去生活点滴的cosβ请教了， 然后到phpmyadmin的管理界面，选中所有的表，然后选修复表， 就修复好了。 但是相关文章页面还是打不开。 html方式访问不了， http://618119.com/archives/2008/12/29/110.html The requested URL /archives/2008/12/29/110.html does not exist. 经提示到后台管理的设置中，重新保存了永久链接设置， 总算都恢复了。 Tags: mysql, Wordpress]]></description>
		<wfw:commentRss>http://618119.com/archives/2009/01/07/120.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql 5.0 在插入记录的时候遇到 Incorrect string value这个错误</title>
		<link>http://618119.com/archives/2008/06/27/97.html</link>
		<comments>http://618119.com/archives/2008/06/27/97.html#comments</comments>
		<pubDate>Fri, 27 Jun 2008 12:24:29 +0000</pubDate>
		<dc:creator>lizongbo</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[数据库]]></category>

		<guid isPermaLink="false">http://618119.com/archives/2008/06/27/97.html</guid>
		<description><![CDATA[修改 C:\Program Files\mysql\mysql Server 5.0\my.ini mysql 和 mysqld的 default-character-set为gbk, my.ini节选如下： [mysql] default-character-set=gbk [mysqld] port=3306 basedir=&#8221;C:/Program Files/mysql/mysql Server 5.0/&#8221; #Path to the database root datadir=&#8221;C:/Program Files/mysql/mysql Server 5.0/Data/&#8221; default-character-set=gbk default-storage-engine=MyISAM 然后重启数据库，重新创建数据库即可。 创建的数据库步骤如下： 在heidisql里，先运行  set names &#8216;gbk&#8217;， 然后运行建表sql。 然后就可以看到表的字段和内容，均为中文显示了。 其它关于mysql 的笔记： 1.在命令行下， 用 mysql -uroot连接到mysql服务器 2.SHOW DATABASES; 查看当前服务器已经有的数据库名字。 3.use test 表示连接到名叫&#8221;test&#8221;的数据库 4.show table; 查看该数据库中的表名。 5.查询记录 select * [...]]]></description>
		<wfw:commentRss>http://618119.com/archives/2008/06/27/97.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Navicat 8.0 for MySQL 8.0.20与 Navicat 8.0 for PostgreSQL 8.0.20</title>
		<link>http://618119.com/archives/2007/11/07/23.html</link>
		<comments>http://618119.com/archives/2007/11/07/23.html#comments</comments>
		<pubDate>Wed, 07 Nov 2007 04:27:51 +0000</pubDate>
		<dc:creator>lizongbo</dc:creator>
				<category><![CDATA[DbVisualizer]]></category>
		<category><![CDATA[数据库]]></category>
		<category><![CDATA[heidisql]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Navicat]]></category>
		<category><![CDATA[pgAdmin]]></category>
		<category><![CDATA[PostgreSQL]]></category>

		<guid isPermaLink="false">http://618119.com/archives/2007/11/07/23.html</guid>
		<description><![CDATA[Navicat 8.0 for MySQL 与 Navicat 8.0 for PostgreSQL的目前版本均为 v8.0.20。 Navicat 8.0 for MySQL提供简体中文版，下载地址为： http://www.navicat.com/download/navicat8_mysql_cs.exe Navicat 8.0 for PostgreSQL只有英文版，下载地址为: http://www.navicat.com/download/navicat8_pgsql_en.exe 相关的其它文件在： http://www.4x4y.com/110284_CrackDown_Navicat.for.PostgreSQL.v8.0.20-iNViSiBLE_crack.html http://www.4x4y.com/111201_CrackDown_Navicat.for.MySQL.v8.0.20-iNViSiBLE_crack.html 两个工具的界面基本一样，主菜单都是“文件”，“查看”，“工具”，“窗口”，“帮助”。 toolbar工具栏也基本一样：“连接”，“管理用户”，“表”，“视图”，“存储过程”，“查询”，“报表”，“备份”，“计划任务”，“全部”。 不同的地方是Navicat 8.0 for MySQL 有“事件”，Navicat 8.0 for PostgreSQL 有“Others”。 Navicat 8.0 for MySQL 8.0.20的中文版把“计划任务”，写成了 “计画任务”，其它还有些地方翻译的内容让人看得迷糊。 由于navicat只提供30天的免费试用，因此可以用免费的工具来替代navicat进行长期使用， mysql的管理工具可以使用heidisql，来源 ：  http://www.heidisql.com/ ，(heidisql没有中文版)。 postgresql的管理工具可以使用pgAdmin III ，来源：http://www.pgadmin.org/ pgAdmin支持多种操作系统：fedora,freebsd,opensuse,osx,rhel,slackware,solaris,win32 下载地址在：http://www.postgresql.org/ftp/pgadmin3/release/v1.8.0/ 另外还有功能强大的基于jdbc的数据库管理工具：DbVisualizer-6.0.6 参考：http://618119.com/archives/2007/10/19/9.html Tags: DbVisualizer, heidisql, [...]]]></description>
		<wfw:commentRss>http://618119.com/archives/2007/11/07/23.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在Apache Tomcat上安装WordPress 2.3</title>
		<link>http://618119.com/archives/2007/10/22/11.html</link>
		<comments>http://618119.com/archives/2007/10/22/11.html#comments</comments>
		<pubDate>Mon, 22 Oct 2007 01:10:11 +0000</pubDate>
		<dc:creator>lizongbo</dc:creator>
				<category><![CDATA[Tomcat]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[quercus]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://618119.com/archives/2007/10/22/11.html</guid>
		<description><![CDATA[在Apache Tomcat上安装Wordpress 2.3 借助quercus这个纯Java PHP引擎，我们可以在Tomcat上安装Wordpress. 1.首先下载 JDK: jdk-6u3-windows-i586-p.exe http://www.mnidc.net/software/java_se/jdk-6u3-windows-i586-p.exe mysql 5.0.45: http://ftp.ntu.edu.tw/pub/MySQL/Downloads/MySQL-5.0/mysql-noinstall-5.0.45-win32.zip Tomcat 6.0.14: http://www.apache.org/dist/tomcat/tomcat-6/v6.0.14/bin/apache-tomcat-6.0.14.zip quercus 3.1.3: http://quercus.caucho.com/download/quercus-3.1.3.war WordPress 2.3: http://wordpress.org/latest.zip WordPress 2.3 简体中文语言包 第二版: http://wpcn.googlecode.com/files/wordpress-2-3-zh_CN-po-mo.zip mysql jdbc: http://ftp.ntu.edu.tw/pub/MySQL/Downloads/Connector-J/mysql-connector-java-5.1.0.zip javamail 2.安装： 运行jdk-6u3-windows-i586-p.exe安装 JDK 到D:\Java\jdk1.6.0_03 配置环境变量JAVA_HOME=D:\Java\jdk1.6.0_03 环境变量Path中加入D:\Java\jdk1.6.0_03\bin; 解压mysql-noinstall-5.0.45-win32.zip为：E:\mysql-5.0.45-win32 解压pache-tomcat-6.0.14.zip到为：D:\Java\apache-tomcat-6.0.14 解压quercus-3.1.3.war为：D:\Java\apache-tomcat-6.0.14\webapps\quercus 解压latest.zip为D:\Java\apache-tomcat-6.0.14\webapps\quercus\wordpress 解压wordpress-2-3-zh_CN-po-mo.zip到 D:\Java\apache-tomcat-6.0.14\webapps\quercus\wordpress\wp-content\language 解压mysql-connector-java-5.1.0.zip得到mysql-connector-java-5.1.0.jar，将其复制到D:\Java\apache-tomcat-6.0.14\webapps\quercus\WEB-INF\lib 将activation.jar和mail.jar复制到D:\Java\apache-tomcat-6.0.14\webapps\quercus\WEB-INF\lib。 4.配置： 将 D:\Java\apache-tomcat-6.0.14\webapps\quercus\wordpress\下的wp-config-sample.php重命名为wp-config.php 编辑后的wp-config.php的内容如下： &#60;?php // ** MySQL settings ** // [...]]]></description>
		<wfw:commentRss>http://618119.com/archives/2007/10/22/11.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

