如何在Ubuntu 12.10上安装Percona Server 5.5
Percona Server是MySQL的替代品。 与使用Linux发行版的默认MySQL服务器相比,它提供了更多的性能和可扩展性,同时它使用相同的init脚本和命令行工具,使其易于使用。 本教程介绍如何在Ubuntu 12.10上安装Percona Server 5.5。
我不会保证这将为您工作!
1初步说明
如果您的系统上已经安装了MySQL,这是没有问题的 - Percona Server将会简单地替换它,但是从/etc/mysql/my.cnf
保留数据以及MySQL 配置
。
您可以在这里找到一个Percona Server基准测试(德语): 基准:MySQL 5.5与Percona Server 5.5
因为我们将使用root权限运行本教程中的所有步骤,我们可以使用字符串sudo
来为本教程中的所有命令添加所有命令,也可以通过键入来成为root
sudo su
2配置apt
Percona为Debian和Ubuntu提供了一个适合的存储库,这使得Percona Server非常容易安装。 首先,进口Percona的关键:
gpg --keyserver hkp://keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A
gpg -a --export CD2EFD2A | apt-key add -
接下来打开/etc/apt/sources.list
...
vi /etc/apt/sources.list
...并添加以下两行:
[...] deb http://repo.percona.com/apt quantal main deb-src http://repo.percona.com/apt quantal main |
接下来,我们需要引导Percona的软件包,使其不会被Ubuntu存储库的升级所覆盖:
vi /etc/apt/preferences.d/00percona.pref
Package: * Pin: release o=Percona Development Team Pin-Priority: 1001 |
然后更新包数据库:
apt-get update
3安装Percona服务器
Percona Server现在可以安装如下:
apt-get install percona-server-server-5.5 percona-server-client-5.5
Percona Server“root”用户的新密码:
< - yourrootsqlpassword
重复Percona Server“root”用户的密码:
< - yourrootsqlpassword
已经这样了 要检查您的MySQL版本,请登录到MySQL shell:
mysql -u root -p
root @ Ubuntu-1210-quantal-64-minimal〜#mysql -u root -p
输入密码:
欢迎来到MySQL监视器。
命令以;
或\ g。
你的MySQL连接ID是38
服务器版本:5.5.28-29.2 Percona服务器(GPL),版本29.2
Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
< - 退出
再见
root @ Ubuntu-1210-quantal-64-minimal〜#
如您所见,我们现在正在使用Percona Server。
4链接
- Percona服务器: http : //www.percona.com/software/perconatserver
- MySQL:http://www.mysql.com/
- Ubuntu: http : //www.ubuntu.com/