<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[张宴的博客]]></title> 
<link>http://zyan.cc/index.php</link> 
<description><![CDATA[Web系统架构与底层研发]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[张宴的博客]]></copyright>
<item>
<link>http://zyan.cc/post/279/</link>
<title><![CDATA[命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>张宴 &lt;net@s135.com&gt;</author>
<category><![CDATA[数据库技术]]></category>
<pubDate>Mon, 06 Aug 2007 08:53:42 +0000</pubDate> 
<guid>http://zyan.cc/post/279/</guid> 
<description>
<![CDATA[ 
	　　[文章作者：张宴 本文版本：v1.0 最后修改：2007.08.06 转载请注明出处：<a href="http://blog.zyan.cc" target="_blank">http://blog.zyan.cc</a>]<br/><br/>　　我一直习惯用phpMyAdmin对MySQL数据库进行管理，曾修改了一个《<a href="read.php/260.htm" target="_blank">可管理多台远程MySQL服务器的phpMyAdmin 2.10.2</a>》。但有些机器上因为安全等因素，只设置了允许从本机访问自身的MySQL端口，而且没有安装Apache和PHP，因而不能使用phpMyAdmin。于是，我只好使用命令行方式来对MySQL数据库进行管理。为了方便以后从命令行操作数据库可以更方便（拷贝、粘贴），我写下了这篇文章。<br/><br/>一、从命令行登录MySQL数据库服务器<br/>1、登录使用默认3306端口的MySQL<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">/usr/local/mysql/bin/mysql -u root -p</div><br/>2、通过TCP连接管理不同端口的多个MySQL（注意：MySQL4.1以上版本才有此项功能）<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">/usr/local/mysql/bin/mysql -u root -p --protocol=tcp --host=localhost --port=3307</div><br/>3、通过socket套接字管理不同端口的多个MySQL<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">/usr/local/mysql/bin/mysql -u root -p --socket=/tmp/mysql3307.sock</div><br/>4、通过端口和IP管理不同端口的多个MySQL<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">/usr/local/mysql/bin/mysql -u root -p -P 3306 -h 127.0.0.1</div><br/><hr/><br/>二、数据库操作SQL语句<br/>1、显示服务器上当前存在什么数据库<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">SHOW DATABASES;</div><br/>2、创建名称为rewin的数据库<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">CREATE DATABASE rewin;</div><br/>3、删除名称为rewin的数据库<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">DROP DATABASE rewin;</div><br/>............<br/><br/>Tags - <a href="http://zyan.cc/tags/linux/" rel="tag">linux</a> , <a href="http://zyan.cc/tags/php/" rel="tag">php</a> , <a href="http://zyan.cc/tags/mysql/" rel="tag">mysql</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment223</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>tianqingbo &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 06 Aug 2007 13:55:36 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment223</guid> 
<description>
<![CDATA[ 
	上面的一些SQL语句我以前在你用你apmserv5.2.0的时候操纵过，其实都很简单但是很实用，你能把他归类很好，这样可以帮助大家学习，我推荐一本mysql的书《mysql 4 从入门到精通》，目前可能有mysql5的书出来了，这本书是翻译过来的，还行！<br/> &nbsp; 张宴我还是有个问题要问你，装centos系统可不可以从硬盘直接安装啊，我从来没有用过Linux系统，那要是装了Linux系统装硬件设备驱动还是像windows一样吗？有说错的地方还请见谅啊！
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment236</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>tianqingbo &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 10 Aug 2007 05:05:48 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment236</guid> 
<description>
<![CDATA[ 
	张宴 回复于 2007-8-7 10:24<br/>可以用grub for dos（<a href="http://download.gna.org/grub4dos/" target="_blank">http://download.gna.org/grub4dos/</a>）从硬盘的CentOS Linux ISO文件安装。<br/>没用过也可以用VMware虚拟机安装Linux。<br/>能否把步骤说的清楚点啊！<br/>我不是很懂<br/>是不是先下载CentOS Linux ISO<br/>然后在下载grub for dos<br/>最后在提取硬盘里面的CentOS Linux ISO<br/>进行安装吗？<br/>还有你说到<a href="http://download.gna.org/grub4dos/" target="_blank">http://download.gna.org/grub4dos/</a>下载<br/>我不晓得下那一个文件，太多了
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment239</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>tianqingbo &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sun, 12 Aug 2007 13:32:45 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment239</guid> 
<description>
<![CDATA[ 
	用VMware安装了Linux系统，正在学习当中，我装了两个Linux系统，一个是CentOS英文版本的另外一个是Red Hat Linux 9.0中文版本的，谢谢张晏啊
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment532</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>vv &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 24 Dec 2007 05:59:15 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment532</guid> 
<description>
<![CDATA[ 
	我就喜欢命令行，看那个phpmyadmin就不顺眼，有打开网页的功夫，命令都敲完了。
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment3434</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>leosion &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 08 Jun 2009 16:05:49 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment3434</guid> 
<description>
<![CDATA[ 
	楼上的你让我很无语。
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment5730</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>zhi &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 22 Apr 2010 15:20:53 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment5730</guid> 
<description>
<![CDATA[ 
	很好的文章！谢谢！
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment6195</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>abcc &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sun, 20 Jun 2010 04:00:46 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment6195</guid> 
<description>
<![CDATA[ 
	我始终喜欢命令行方式，更直接准确。
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment14170</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>louis vuitton uk &lt;fsf@fdg.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 23 Nov 2011 00:49:59 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment14170</guid> 
<description>
<![CDATA[ 
	This <a href="http://www.louisvuittonoutlets.org.uk" target="_blank">louis vuitton uk</a> for sale belongs to the sounding just what are termed as Louis Vuitton vintage best sellers, many other products and services for the reason that range appearing companies.You will easily notice the unfold zippers of this <a href="http://www.coachoutletstoreonlinefree.com" target="_blank">coach outlet store online</a>. That is the decoration. There are some inside pockets for you as well. They are easy to match your clothes and to carry.Let us inspire your inner beauty with fine <a href="http://www.christian-louboutinsale.org.uk" target="_blank">christian louboutin sale</a>. Purse the elegance in bridal wedding. Enjoy the fashion.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment17330</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>chanel uk &lt;xiang1234xiangxiang@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 13 Apr 2012 09:16:08 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment17330</guid> 
<description>
<![CDATA[ 
	<a href="http://www.chanelukoutlets.org.uk" target="_blank">chanel uk</a><br/><a href="http://www.burberryukoutletuk.org" target="_blank">burberry uk</a><br/><a href="http://www.poloralphlaurenuks.org" target="_blank">ralph lauren uk</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment17350</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>chanel uk &lt;xiang1234xiangxiang@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 13 Apr 2012 09:21:46 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment17350</guid> 
<description>
<![CDATA[ 
	<a href="http://www.christianlouboutinukuk.org" target="_blank">christian louboutin</a><br/><a href="http://www.tiffanyuksuk.org" target="_blank">tiffanys</a><br/><a href="http://www.gucciukbeltuk.org" target="_blank">gucci uk</a><br/><a href="http://www.frsaclouisvuittonsac.com" target="_blank">louis vuitton sac</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment18726</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>coach factory outlet &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 02:57:18 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment18726</guid> 
<description>
<![CDATA[ 
	Today, following half a century, mentor leather-bases <a href="http://www.coachfactoryoutletao.net" target="_blank">coach factory outlet</a> continues to be the delicate craft of leather-based master is accountable for,Would you like to meet more friends, or go with the times? If yes, <a href="http://www.coachfactoryoutletao.net" target="_blank">coach factory online</a> is opening welcome doors to you.in the market you definitely can find various colorways that are designed in as well as the high quality that applied in. For most of you would like to come. So just come to our <a href="http://www.coachfactoryoutletao.net" target="_blank">coach factory outlet online</a> store to choose one.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment18727</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>louis vuitton sale &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 02:57:26 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment18727</guid> 
<description>
<![CDATA[ 
	Louis Vuitton belt at <a href="http://www.louisvuittonoutletsalea.com" target="_blank">louis vuitton sale</a> is one kind of fashion accessory with high cost performance among the Louis Vuitton accessories.Offering quality LV products with favorable prices, <a href="http://www.louisvuittonoutletsalea.com" target="_blank">louis vuitton outlet</a> store is at your service. Hurry up, or you can not seize the chance.in fact, <a href="http://www.louisvuittonoutletsalea.com" target="_blank">louis vuitton</a> is one of the most famous fashion design master.he opened the fist suitcase shop called after his name.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment18728</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>coach outlet online &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 02:57:39 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment18728</guid> 
<description>
<![CDATA[ 
	I heard of <a href="http://www.coachoutletonlineao.net" target="_blank">coach outlet online</a> through the advertisement when I was shopping. And now I often brow the webpage and buy Coach bags online.It is a symbol regarding position not to mention nature.Here I would like to launch a excellent bags pertaining to business men.Which may be <a href="http://www.coachoutletonlineao.net" target="_blank">coach outlet store</a>.<a href="http://www.coachoutletonlineao.net" target="_blank">coach outlet</a> has always been simple,durable style features to win consumers.The products are more flexible,with easy bleaching,wear characteristics,and simply use a damp cloth.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment18729</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>coach outlet, &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 02:57:47 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment18729</guid> 
<description>
<![CDATA[ 
	Remember the <a href="http://www.coachoutletin.org" target="_blank">coach outlet</a> provide coach bags which won&#039;t be deteriorated into its overall styles by any means. It will maintain its looks, colors, and uniqueness for long time.<a href="http://www.coachoutletin.org" target="_blank">coach outlet store online</a> has been voted by Hour Detroit magazine readers as the Best of Detroit in their 12th annual readers&#039;poll.Lots of women like which usually amount normally include a <a href="http://www.coachoutletin.org" target="_blank">coach outlet online</a> ,it provides coziness to many girls that don&#039;t even think it is a great bushel of great interest directly to them.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/279/#blogcomment19878</link>
<title><![CDATA[[评论] 命令行方式管理MySQL数据库实例[原创]]]></title> 
<author>xujie777 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 18 May 2012 07:54:28 +0000</pubDate> 
<guid>http://zyan.cc/post/279/#blogcomment19878</guid> 
<description>
<![CDATA[ 
	We aim to make all our customers satisfy with our products. You will find a variety of Men&#039;s fashion <a href="http://www.louisvuittonukd.org.uk" target="_blank">louis vuitton uk</a>, fashion Women&#039;s cheap Louis Vuitton bags in our store at affordable price.Thinking of interesting ways to cost a milestone birthday? <a href="http://www.louisvuittonukd.org.uk" target="_blank">louis vuitton online shop</a> had one of the most distinctive distinctive celebrations.bakery along with living room operated by means of about three moment <a href="http://www.louisvuittonukd.org.uk" target="_blank">louis vuitton online</a> Most effective Pastry Chef’s of the year Rammy Nominee Chef’s.
]]>
</description>
</item>
</channel>
</rss>