仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 455|回复: 7
打印 上一主题 下一主题

[CentOS(社区)] 给大家带来centos6.5下装置mysql

[复制链接]
不帅 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-14 20:25:07 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

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

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



  • [root@bogon~]#yum-yinstallmysql-server

2.设置开机启动
[html]viewplaincopy

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



  • [root@bogon~]#chkconfigmysqldon

3.启动MySQL办事
[html]viewplaincopy

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



  • [root@bogon~]#servicemysqldstart

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

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



  • [root@bogon~]#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
[html]viewplaincopy

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



  • mysql>setpasswordforroot@localhost=password(root);
  • mysql>exit

5.用新暗码上岸
[html]viewplaincopy

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



  • [root@bogon~]#mysql-uroot-p
  • Enterpassword:

6.创立mysql新用户test_user
[html]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,%暗示内部任何地点都能会见。

[html]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,这个引擎是不撑持事件的。

[html]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)

也能够以上面的体例检察
[html]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

[html]viewplaincopy

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



  • mysql>exit;
  • [root@bogon~]#servicemysqldstop

9.2修正/etc/my.cnf
[mysqld]后到场

[html]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;">[html]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;">[root@bogonetc]#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;">[mysqld]<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等等。
第二个灵魂 该用户已被删除
5#
发表于 2015-2-9 03:31:28 | 只看该作者
得到到草率的回答或者根本得不到任何Linux答案。越表现出在寻求帮助前为解决问题付出的努力,你越能得到实质性的帮助。
兰色精灵 该用户已被删除
6#
发表于 2015-2-26 22:03:49 | 只看该作者
这种补充有助于他人在邮件列表/新闻组/论坛中搜索对你有过帮助的完整解决方案,这可能对他们也很有用。
乐观 该用户已被删除
7#
发表于 2015-3-16 20:52:39 | 只看该作者
把这个问题放在其他Linux社区请求帮助也是一种选择。如果Linux得不到答案,请不要以为我们觉得无法帮助你。有时只是看到你问题的人不知道答案罢了。这时换一个社区是不错的选择。
愤怒的大鸟 该用户已被删除
8#
发表于 2015-3-23 09:08:11 | 只看该作者
上课传授的不仅仅是知识,更重要的是一些道理,包括一些做人的道理,讲课时也抓住重点,循序渐进,让同学理解很快;更可贵的是不以你过去的成绩看问题.
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-12-23 19:04

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表