<?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/359/</link>
<title><![CDATA[快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>张宴 &lt;net@s135.com&gt;</author>
<category><![CDATA[数据库技术]]></category>
<pubDate>Thu, 24 Jul 2008 00:37:29 +0000</pubDate> 
<guid>http://zyan.cc/post/359/</guid> 
<description>
<![CDATA[ 
	　　[文章作者：张宴 本文版本：v1.0 最后修改：2008.07.24 转载请注明原文链接：<a href="http://blog.zyan.cc/post/359/" target="_blank">http://blog.zyan.cc/post/359/</a>]<br/><br/>　　写了一个shell脚本，可以在同一台Linux服务器的不同端口，运行多个MySQL服务的情况下，快捷启动、停止、重启、杀死指定端口的MySQL进程。<br/><br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">vi /usr/local/bin/mysql.sh</div><br/>　　输入以下内容（因各服务器的MySQL配置不同，可能需要修改的部分已用红色标注）：<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">#!/bin/sh<br/><br/>mysql_port=$2<br/>mysql_username="<font color="red">root</font>"<br/>mysql_password="<font color="red">123456</font>"<br/><br/>function_start_mysql()<br/>&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;printf "Starting MySQL...&#92;n"<br/>&nbsp;&nbsp;&nbsp;&nbsp;/bin/sh <font color="red">/usr/local/mysql/bin/mysqld_safe</font> --defaults-file=<font color="red">/mysql/$&#123;mysql_port&#125;/my.cnf</font> 2>&1 > /dev/null &<br/>&#125;<br/><br/>function_stop_mysql()<br/>&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;printf "Stoping MySQL...&#92;n"<br/>&nbsp;&nbsp;&nbsp;&nbsp;<font color="red">/usr/local/mysql/bin/mysqladmin</font> -u $&#123;mysql_username&#125; -p$&#123;mysql_password&#125; -h <font color="red">localhost</font> -P $&#123;mysql_port&#125; shutdown<br/>&#125;<br/><br/>function_restart_mysql()<br/>&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;printf "Restarting MySQL...&#92;n"<br/>&nbsp;&nbsp;&nbsp;&nbsp;function_stop_mysql<br/>&nbsp;&nbsp;&nbsp;&nbsp;function_start_mysql<br/>&#125;<br/><br/>function_kill_mysql()<br/>&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;kill -9 $(ps -ef &#124; grep 'bin/mysqld_safe' &#124; grep $&#123;mysql_port&#125; &#124; awk '&#123;printf $2&#125;')<br/>&nbsp;&nbsp;&nbsp;&nbsp;kill -9 $(ps -ef &#124; grep 'libexec/mysqld' &#124; grep $&#123;mysql_port&#125; &#124; awk '&#123;printf $2&#125;')<br/>&#125;<br/><br/>if [ "$1" = "start" ]; then<br/>&nbsp;&nbsp;&nbsp;&nbsp;function_start_mysql<br/>elif [ "$1" = "stop" ]; then<br/>&nbsp;&nbsp;&nbsp;&nbsp;function_stop_mysql<br/>elif [ "$1" = "restart" ]; then<br/>&nbsp;&nbsp;&nbsp;&nbsp;function_restart_mysql<br/>elif [ "$1" = "kill" ]; then<br/>&nbsp;&nbsp;&nbsp;&nbsp;function_kill_mysql<br/>else<br/>&nbsp;&nbsp;&nbsp;&nbsp;printf "Usage: mysql.sh &#123;start&#124;stop&#124;restart&#124;kill&#125;&#92;n"<br/>fi</div><br/><br/>　　赋予脚本可执行权限：<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">chmod +x /usr/local/bin/mysql.sh</div><br/><br/>　　脚本执行方法：<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">mysql.sh start 3306<br/>mysql.sh stop 3306<br/>mysql.sh restart 3306<br/>mysql.sh kill 3306</div><br/><br/>Tags - <a href="http://zyan.cc/tags/linux/" rel="tag">linux</a> , <a href="http://zyan.cc/tags/mysql/" rel="tag">mysql</a> , <a href="http://zyan.cc/tags/shell/" rel="tag">shell</a> , <a href="http://zyan.cc/tags/bash/" rel="tag">bash</a> , <a href="http://zyan.cc/tags/sh/" rel="tag">sh</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/359/#blogcomment1359</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>zxpxyz &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 24 Jul 2008 01:59:46 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment1359</guid> 
<description>
<![CDATA[ 
	case &quot;$1&quot; in<br/> &nbsp;start)<br/> &nbsp; &nbsp; &nbsp; &nbsp;function_start_mysql<br/> &nbsp; &nbsp; &nbsp; &nbsp;;;<br/> &nbsp;stop)<br/> &nbsp; &nbsp; &nbsp; &nbsp;function_stop_mysql<br/> &nbsp; &nbsp; &nbsp; &nbsp;;;<br/> &nbsp;restart)<br/> &nbsp; &nbsp; &nbsp; &nbsp;function_restart_mysql<br/> &nbsp; &nbsp; &nbsp; &nbsp;;;<br/> &nbsp;*)<br/> &nbsp; &nbsp; &nbsp; &nbsp;echo $&quot;Usage: $0 &#123;start&#124;stop&#124;restart&#125;&quot;<br/> &nbsp; &nbsp; &nbsp; &nbsp;exit 1<br/>esac<br/><br/>试试改成这样
]]>
</description>
</item><item>
<link>http://zyan.cc/post/359/#blogcomment1360</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>dd_macle &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 25 Jul 2008 06:47:32 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment1360</guid> 
<description>
<![CDATA[ 
	谢谢提供这么好的资料！
]]>
</description>
</item><item>
<link>http://zyan.cc/post/359/#blogcomment1736</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>weiwei &lt;shizhiweifly@163.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 24 Oct 2008 09:11:53 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment1736</guid> 
<description>
<![CDATA[ 
	很不错，很实用，赞了<br/><br/><a href="http://bbs.woyool.com" target="_blank">http://bbs.woyool.com</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/359/#blogcomment1999</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>aa &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 17 Nov 2008 08:27:46 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment1999</guid> 
<description>
<![CDATA[ 
	感觉kill函数部分有问题， 因为用ps -ef 根本不会显示端口的。 所以你在grep $&#123;mysql_port&#125; 什么结果都没有。谢谢
]]>
</description>
</item><item>
<link>http://zyan.cc/post/359/#blogcomment2512</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>hey &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 04 Feb 2009 14:26:26 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment2512</guid> 
<description>
<![CDATA[ 
	新年好，祝贵站新年人气更旺！也欢迎来我站逛逛！<a href="http://jeeyeelee.com" target="_blank">soittoäänet</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/359/#blogcomment14215</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>louis vuitton uk &lt;fsf@fdg.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 23 Nov 2011 01:03:34 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment14215</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/359/#blogcomment15652</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>sxcen &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 28 Dec 2011 06:58:44 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment15652</guid> 
<description>
<![CDATA[ 
	谢谢分享
]]>
</description>
</item><item>
<link>http://zyan.cc/post/359/#blogcomment15663</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>eryi8729 &lt;surestodsa22@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 29 Dec 2011 12:42:17 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment15663</guid> 
<description>
<![CDATA[ 
	If you want to buy Gucci shoes, be careful in buying because many fake shoes. You must be careful in distinguishing the real and fake shoes,<a href="http://www.chaussurestods.com" target="_blank">tod&#039;s</a>, because is sometimes difficult to distinguish it. Usually it happens on brands such as Gucci,<a href="http://www.chaussurestods.com" target="_blank">chaussures pas cher</a>, because this brand is one of the most famous labels in the business. To avoid be fooled, you have to learn how to distinguish real and fake shoes.<br/>Here are some tips to distinguish real and fake Gucci shoes:<br/>1. Real Gucci shoes have eight digit serial numbers. You can see it in the inside leather lining of the shoe. In the real Gucci shoes also have stamp &amp;#8220;Gucci Made in Italy&amp;#8220;. The stamp is located in the heel of the shoe.<br/>2. You should check the little details. Real Gucci shoe soles are made from leather, while the fake Gucci shoes made from synthetic material. If you want to make sure,<a href="http://www.chaussuresconverse.com/" target="_blank">Converse Pas cher</a>, go to the Gucci store to check out the details of real Gucci shoes.<br/>3. Should pay attention to packaging. Real Gucci shoes packaging usually use a box and a shoe bag. Gucci shoe bags are brown and have logo&amp;#8221; G &amp;#8220;, the logo is printed in the bag. Gucci shoe box are dark brown with the word &amp;#8221; GUCCI &amp;#8221; and written in silver letters. To make sure, you can look at the official website Gucci or Gucci store.<br/>4. Real Gucci shoes made from high quality leather and very soft material. While the fake Gucci made ​​with cheaper material and rough material. Real Gucci shoes must prone to scuff. Real leather material has a different smell.<br/>5. Gucci shoes are usually expensive. If you buy Gucci shoes at a cheap price so you should be careful to make sure that the shoes are real or fake.<br/> <br/>ADVERTISEMENT
]]>
</description>
</item><item>
<link>http://zyan.cc/post/359/#blogcomment17403</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>chanel uk &lt;xiang1234xiangxiang@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 13 Apr 2012 09:45:03 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment17403</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/359/#blogcomment17429</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>chanel uk &lt;xiang1234xiangxiang@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 13 Apr 2012 09:51:01 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment17429</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/359/#blogcomment17607</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>puma-online &lt;sasa@yahoo.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 19 Apr 2012 02:41:29 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment17607</guid> 
<description>
<![CDATA[ 
	Large discount puma shoes are the main products in puma online store.Just cheap puma schuhe are offered in <a href="http://www.puma-online.net" target="_blank">http://www.puma-online.net</a> site,for we intend to promote our puma outlet by wholesale or retail channel! All puma shoes for men or women are in top quality and with many different sizes.Welcome your visiting!Our puma shoes won good reputation in regular customers.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/359/#blogcomment19002</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>coach factory outlet &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 03:40:08 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment19002</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/359/#blogcomment19003</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>louis vuitton sale &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 03:40:13 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment19003</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/359/#blogcomment19004</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>coach outlet online &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 03:40:20 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment19004</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/359/#blogcomment19005</link>
<title><![CDATA[[评论] 快捷启动、停止、重启、杀死指定端口MySQL进程的脚本[原创]]]></title> 
<author>coach outlet, &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 03:40:27 +0000</pubDate> 
<guid>http://zyan.cc/post/359/#blogcomment19005</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>
</channel>
</rss>