不帅 发表于 2015-1-14 20:25:07

给大家带来centos6.5下装置mysql

如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们!1.利用yum下令装置mysql
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]#yum-yinstallmysql-server

2.设置开机启动
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]#chkconfigmysqldon

3.启动MySQL办事
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]#servicemysqldstart

4.设置MySQL的root用户设置暗码
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]#mysql-uroot
[*]mysql>selectuser,host,passwordfrommysql.user;
[*]+------+-----------+----------+
[*]|user|host|password|
[*]+------+-----------+----------+
[*]|root|localhost||
[*]|root|bogon||
[*]|root|127.0.0.1||
[*]||localhost||
[*]||bogon||
[*]+------+-----------+----------+
[*]5rowsinset(0.01sec)

查询用户的暗码,都为空,用上面的下令设置root的暗码为root
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]mysql>setpasswordforroot@localhost=password(root);
[*]mysql>exit

5.用新暗码上岸
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]#mysql-uroot-p
[*]Enterpassword:

6.创立mysql新用户test_user
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]mysql>createusertest_user@%identifiedbytest_user;
[*]QueryOK,0rowsaffected(0.00sec)

7.给新用户test_user受权,让他能够从内部上岸和当地上岸
注重:@右边是用户名,右侧是域名、IP和%,暗示能够会见mysql的域名和IP,%暗示内部任何地点都能会见。
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]mysql>grantallprivilegeson*.*totest_user@localhostidentifiedbytest_user;
[*]QueryOK,0rowsaffected(0.00sec)
[*]mysql>grantallprivilegeson*.*totest_user@%identifiedbytest_user;
[*]QueryOK,0rowsaffected(0.00sec)
[*]mysql>selectuser,host,passwordfrommysql.user;
[*]+----------+-----------+-------------------------------------------+
[*]|user|host|password|
[*]+----------+-----------+-------------------------------------------+
[*]|root|localhost|*81F5E21E35407D884A6CD4A731AEBFB6AF209E1B|
[*]|root|bogon||
[*]|root|127.0.0.1||
[*]||localhost||
[*]||bogon||
[*]|test_user|%|*3046CF87132BBD4FDDF06F321C6859074843B7D3|
[*]|test_user|localhost|*3046CF87132BBD4FDDF06F321C6859074843B7D3|
[*]+----------+-----------+-------------------------------------------+
[*]7rowsinset(0.00sec)
[*]mysql>flushprivileges;
[*]QueryOK,0rowsaffected(0.01sec)

8.检察mysql5.1的默许存储引擎
从上面的实行了局能够看出,mysql的默许引擎是MyISAM,这个引擎是不撑持事件的。
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]mysql>showengines;
[*]+------------+---------+------------------------------------------------------------+--------------+------+------------+
[*]|Engine|Support|Comment|Transactions|XA|Savepoints|
[*]+------------+---------+------------------------------------------------------------+--------------+------+------------+
[*]|MRG_MYISAM|YES|CollectionofidenticalMyISAMtables|NO|NO|NO|
[*]|CSV|YES|CSVstorageengine|NO|NO|NO|
[*]|MyISAM|DEFAULT|DefaultengineasofMySQL3.23withgreatperformance|NO|NO|NO|
[*]|InnoDB|YES|Supportstransactions,row-levellocking,andforeignkeys|YES|YES|YES|
[*]|MEMORY|YES|Hashbased,storedinmemory,usefulfortemporarytables|NO|NO|NO|
[*]+------------+---------+------------------------------------------------------------+--------------+------+------------+
[*]5rowsinset(0.00sec)

也能够以上面的体例检察
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]mysql>showvariableslikestorage_engine;
[*]+----------------+--------+
[*]|Variable_name|Value|
[*]+----------------+--------+
[*]|storage_engine|MyISAM|
[*]+----------------+--------+
[*]1rowinset(0.00sec)

9.修正mysql的默许引擎为InnoDB
9.1中断mysql
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]mysql>exit;
[*]#servicemysqldstop

9.2修正/etc/my.cnf
后到场
viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf



[*]default-storage-engine=InnoDB

到场后my.cnf的内容为:
<divclass="dp-highlighterbg_html"style="font-family:Consolas,CourierNew,Courier,mono,serif;background-color:rgb(231,229,220);width:700.9166870117188px;overflow:auto;padding-top:1px;margin:18px0px!important;color:rgb(51,51,51);line-height:26px;">viewplaincopy

http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf


<olclass="dp-xml"start="1"style="margin:0px0px1px45px!important;padding-right:0px;padding-left:0px;border:none;list-style-position:initial;list-style-image:initial;background-color:rgb(255,255,255);color:rgb(92,92,92);"><liclass="alt"style="margin:0px!important;padding:0px3px0px10px!important;border-style:nonenonenonesolid;border-left-width:3px;border-left-color:rgb(108,226,108);list-style:decimal-leading-zerooutside;color:inherit;line-height:18px;">#moremy.cnf<listyle="margin:0px!important;padding:0px3px0px10px!important;border-style:nonenonenonesolid;border-left-width:3px;border-left-color:rgb(108,226,108);list-style:decimal-leading-zerooutside;background-color:rgb(248,248,248);line-height:18px;"><liclass="alt"style="margin:0px!important;padding:0px3px0px10px!important;border-style:nonenonenonesolid;border-left-width:3px;border-left-color:rgb(108,226,108);list-style:decimal-leading-zerooutside;color:inherit;line-height:18px;">datadir=/var/lib/mysql<listyle="margin:0px!important;padding:0px3px0px10px!important;border-style:nonenonenonesolid;border-left-width:3px;border-left-color:rgb(108,226,108);list-style:decimal-leading-zerooutside;background-color:rgb(248,248,248);line-height:18px;">socket=/var/lib/mysql/mysql.sock<liclass="alt"style="margin:0px!important;padding:0px3px0px10px!important;border-style:nonenonenonesolid;border-left-width:3px;border-left-color:rgb(108,226,108);list-style:decimal-leading-zerooutside;color:inherit;line-height:18px;">user=mysql

冷月葬花魂 发表于 2015-1-16 17:48:43

给大家带来centos6.5下装置mysql

这也正是有别的OS得以存在的原因,每个系统都有其自身的优点。?

蒙在股里 发表于 2015-1-25 17:08:52

你需要提供精确有效的信息。Linux这并不是要求你简单的把成吨的出错代码或者数据完全转储摘录到你的提问中。

透明 发表于 2015-2-3 12:38:07

清楚了解网络的基础知识,特别是在Linux下应用知识,如接入internet等等。

第二个灵魂 发表于 2015-2-9 03:31:28

得到到草率的回答或者根本得不到任何Linux答案。越表现出在寻求帮助前为解决问题付出的努力,你越能得到实质性的帮助。

兰色精灵 发表于 2015-2-26 22:03:49

这种补充有助于他人在邮件列表/新闻组/论坛中搜索对你有过帮助的完整解决方案,这可能对他们也很有用。

乐观 发表于 2015-3-16 20:52:39

把这个问题放在其他Linux社区请求帮助也是一种选择。如果Linux得不到答案,请不要以为我们觉得无法帮助你。有时只是看到你问题的人不知道答案罢了。这时换一个社区是不错的选择。

愤怒的大鸟 发表于 2015-3-23 09:08:11

上课传授的不仅仅是知识,更重要的是一些道理,包括一些做人的道理,讲课时也抓住重点,循序渐进,让同学理解很快;更可贵的是不以你过去的成绩看问题.
页: [1]
查看完整版本: 给大家带来centos6.5下装置mysql