Ubuntu安装percona-server(Mysql)
安装过程转自http://www.percona.com/doc/percona-server/5.6/installation/apt_repo.html
本次安装是基于阿里云的Ubuntu12.04(64bit)
Debian and Ubuntu packages from Percona are signed with a key. Before using the repository, you should add the key to apt. To do that, run the following commands as root(以下命令都要求要有root权限):
$ apt-key adv --keyserver keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A
Add this to /etc/apt/sources.list, replacing VERSION with the name of your distribution:
deb http://repo.percona.com/apt VERSION main deb-src http://repo.percona.com/apt VERSION main
如何查看序列号 可以使用 cat /etc/lsb-release
DISTRIB_ID=Ubuntu DISTRIB_RELEASE=12.04 DISTRIB_CODENAME=precise DISTRIB_DESCRIPTION="Ubuntu 12.04.5 LTS"
其中DISTRIB_CODENAME就是VERSION.
Remember to update the local cache:
$ apt-get update
After that you can install the server and client packages
$apt-get install percona-server-server-5.5 percona-server-client-5.5
本次采用5.5版本,没有使用安装文档的5.6(安装不成功,暂时也没找到方法解决)。
安装过程会要求设置好root密码。
安装完成后设置远程连接:
登录Mysql:
mysql -u root -p
授权远程可以访问
GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘密码‘ WITH GRANT OPTION;
all PRIVILEGES 表示赋予所有的权限给指定用户,这里也可以替换为赋予某一具体的权限,例如:select,insert,update,delete,create,drop 等,具体权限间用“,”半角逗号分隔。
对于全部数据库的全部表授权为“*.*”,对于某一数据库的全部表授权为“数据库名.*”,对于某一数据库的某一表授权为“数据库名.表名”。
root 表示你要给哪个用户授权,这个用户可以是存在的用户,也可以是不存在的用户。
设置为“%”表示不限制链接,如果要限制则需要指明IP。
执行下面的语句,让授权生效。
flush privileges;
查看Mysql占用的端口
mysql> show variables like ‘port‘; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | port | 3306 | +---------------+-------+ 1 row in set (0.01 sec)
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。