个人比较喜欢 MYSQL 的轻量,今天花了一点时间把阿里云上的 MYSQL5.7 换成了 Percona-Server 。Percona 是一个开源的 MySQL 衍生版,TokuDB 的数据库引擎使得 Percona 服务器非常有吸引力,如果你需要的高性能,高可靠性和高性价比的解决方案,它将是一个很好的选择。

Percona Server 5.7 comes with the TokuDB storage engine. You can find more information on how to install and enable the TokuDB storage in the TokuDB Installation guide.

Installing Percona Server

  1. #测试环境关闭防火墙
  2. systemctl stop firewalld.service
  3. systemctl disable firewalld.service
  4. yum install http://www.percona.com/downloads/percona-release/redhat/0.1-6/percona-release-0.1-6.noarch.rpm
  5. yum list | grep percona
  6. yum install Percona-Server-server-
  7. #查看 mysql 服务
  8. systemctl restart mysqld.service
  9. systemctl enable mysqld.service
  10. systemctl status mysqld.service
  11. #默认目录
  12. /etc/my.cnf
  13. /var/lib/mysql
  14. /var/log/mysqld.log
  15. #查看mysql初始密码
  16. grep 'temporary password' /var/log/mysqld.log
  17. mysql -uroot -p
  18. ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';
  19. #开启远程连接
  20. use mysql;
  21. mysql>update user set host = '%' where user = 'root';
  22. mysql>select host, user from user;

安全配置(非必须 mysql 官方文档只在 mysql 6.x 版本)

  1. [root@iZ11fek1j6cZ lib]# mysql_secure_installation
  2.  
  3. Securing the MySQL server deployment.
  4.  
  5. Enter password for user root:
  6. The 'validate_password' plugin is installed on the server.
  7. The subsequent steps will run with the existing configuration
  8. of the plugin.
  9. Using existing password for root.
  10.  
  11. Estimated strength of the password:
  12. Change the password for root ? ((Press y|Y for Yes, any other key for No) : n
  13.  
  14. ... skipping.
  15. By default, a MySQL installation has an anonymous user,
  16. allowing anyone to log into MySQL without having to have
  17. a user account created for them. This is intended only for
  18. testing, and to make the installation go a bit smoother.
  19. You should remove them before moving into a production
  20. environment.
  21.  
  22. Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
  23. Success.
  24.  
  25. Normally, root should only be allowed to connect from
  26. 'localhost'. This ensures that someone cannot guess at
  27. the root password from the network.
  28.  
  29. Disallow root login remotely? (Press y|Y for Yes, any other key for No) : n
  30.  
  31. ... skipping.
  32. By default, MySQL comes with a database named 'test' that
  33. anyone can access. This is also intended only for testing,
  34. and should be removed before moving into a production
  35. environment.
  36.  
  37. Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
  38. - Dropping test database...
  39. Success.
  40.  
  41. - Removing privileges on test database...
  42. Success.
  43.  
  44. Reloading the privilege tables will ensure that all changes
  45. made so far will take effect immediately.
  46.  
  47. Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
  48. Success.
  49.  
  50. All done!

修改编码(非必须,mysql 8.0 默认 utf8mb4 编码

  1. vi /etc/my.cnf
  2.  
  3. [client]
  4. default-character-set = utf8
  5.  
  6. [mysqld]
  7. default-storage-engine = INNODB
  8. character-set-server = utf8
  9. collation-server = utf8_general_ci
  10.  
  11. #检查编码
  12. [root@iZ11fek1j6cZ etc]# service mysqld restart
  13. Redirecting to /bin/systemctl restart mysqld.service
  14. [root@iZ11fek1j6cZ etc]# mysql -u root -p
  15. Enter password:
  16. Welcome to the MySQL monitor. Commands end with ; or \g.
  17. Your MySQL connection id is
  18. Server version: 5.7.- Percona Server (GPL), Release , Revision 9f0fd0a
  19.  
  20. Copyright (c) - Percona LLC and/or its affiliates
  21. Copyright (c) , , Oracle and/or its affiliates. All rights reserved.
  22.  
  23. Oracle is a registered trademark of Oracle Corporation and/or its
  24. affiliates. Other names may be trademarks of their respective
  25. owners.
  26.  
  27. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  28.  
  29. mysql> show variables like '%char%';
  30. +--------------------------------------+-------------------------------------+
  31. | Variable_name | Value |
  32. +--------------------------------------+-------------------------------------+
  33. | character_set_client | utf8 |
  34. | character_set_connection | utf8 |
  35. | character_set_database | utf8 |
  36. | character_set_filesystem | binary |
  37. | character_set_results | utf8 |
  38. | character_set_server | utf8 |
  39. | character_set_system | utf8 |
  40. | character_sets_dir | /usr/share/percona-server/charsets/ |
  41. | validate_password_special_char_count | |
  42. +--------------------------------------+-------------------------------------+
  43. rows in set (0.00 sec)
  1. [mysqld]
  2. ...
  3. character_set_server=utf8mb4
  4. collation_server=utf8mb4_0900_ai_ci
  5. skip-character-set-client-handshake
  6. sort_buffer_size=512K

docker 容器运行
https://hub.docker.com/u/percona/
https://www.percona.com/doc/percona-server/LATEST/installation/docker.html

  1. # docker
  2. curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
  3. sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-selinux docker-engine-selinux docker-engine
  4. sudo yum install -y yum-utils device-mapper-persistent-data lvm2
  5. #yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
  6. yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
  7. sudo yum install docker-ce
  8. sudo systemctl enable docker && systemctl start docker
  9. sudo docker run hello-world
  10. sudo systemctl status docker
  11.  
  12. # portainer
  13. docker pull portainer/portainer
  14. docker images
  15. docker run -d -p : -v /var/run/docker.sock:/var/run/docker.sock portainer/portainer
  16.  
  17. docker run -d \
  18. --name percona-Server-server- \
  19. -e MYSQL_ROOT_PASSWORD=JUST_PWD \
  20. percona/percona-server:5.7 \
  21. --character-set-server=utf8 \
  22. --collation-server=utf8_general_ci

其他问题

如果下载慢,更换国内源

  1. #国内源
  2. https://mirrors.tuna.tsinghua.edu.cn/percona/release/7/RPMS/x86_64/repodata/
  3. http://mirrors.ustc.edu.cn/percona/release/7/RPMS/x86_64/repodata/
  4.  
  5. ########################################
  6. # Percona releases and sources, stable #
  7. ########################################
  8. [percona-release-$basearch]
  9. name = Percona-Release YUM repository - $basearch
  10. #baseurl = http://repo.percona.com/release/$releasever/RPMS/$basearch
  11. baseurl = https://mirrors.tuna.tsinghua.edu.cn/percona/release/$releasever/RPMS/$basearch
  12. enabled =
  13. gpgcheck =
  14. gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Percona

apt

  1.  
  1. sudo apt update && sudo apt upgrade
  1. update
  2. update 是同步 /etc/apt/sources.list /etc/apt/sources.list.d 中列出的源的索引,这样才能获取到最新的软件包。
  3. upgrade
  4. upgrade 是升级已安装的所有软件包,升级之后的版本就是本地索引里的,因此,在执行 upgrade 之前一定要执行 update, 这样才能是最新的。
  5. An update should always be performed before an upgrade or dist-upgrade.
  6. upgrade is used to install the newest versions of all packages currently installed on the system from the sources enumerated in /etc/apt/sources.list. Packages currently installed with new versions available are retrieved and upgraded.

REFER:
https://www.percona.com/doc/percona-server/LATEST/installation.html
https://www.percona.com/doc/percona-server/LATEST/performance/threadpool.html
https://dev.mysql.com/doc/refman/8.0/en/innodb-buffer-pool-resize.html
https://dev.mysql.com/doc/mysql-yum-repo-quick-guide/en/
https://www.percona.com/doc/percona-server/5.7/installation/yum_repo.html
https://www.percona.com/doc/percona-server/5.7/installation/apt_repo.html
为什么我不再看好MariaDB
http://www.innomysql.com/article/25821.html
MySQL、Postgres 开启远程访问权限(ubuntu)

  1. http://wenzhixin.net.cn/2012/05/15/mysql_open_the_remote_access_ubuntu

CentOS 7.5 安装与配置 Percona Server 5.7的更多相关文章

  1. openvpn-在Linux中安装和配置OpenVPN Server的最简便方法!(转)

    在Linux中安装和配置OpenVPN Server 出于本文的需要,我将使用两个运行CentOS 7 64位版本的系统.一个充当OpenVPN服务器,另一个充当OpenVPN客户机.下面是测试系统的 ...

  2. 在Linux中安装和配置OpenVPN Server的最简便方法!

    本文介绍了如何在基于RPM和DEB的系统中安装和配置OpenVPN服务器.我们在本文中将使用一个名为openvpn-install的脚本,它使整个OpenVPN服务器的安装和配置过程实现了自动化.该脚 ...

  3. CentOS 7中安装和配置Promethues

    Prometheus 是什么? Prometheus是一套开源的监控&报警&时间序列数据库的组合,起始是由SoundCloud公司开发的.随着发展,越来越多公司和组织接受采用Prome ...

  4. CentOS 下 redis 安装与配置

    CentOS 下 redis 安装与配置   1.到官网上找到合适版本下载解压安装 [root@java src]# wget -c http://redis.googlecode.com/files ...

  5. 环境搭建系列-系统安装之centos 6.5安装与配置

    按照国际惯例,系列目录先奉上: 系列一:系统安装之centos 6.5安装与配置 系列二:准备工作之Java环境安装 系列三:数据为先之MySQL读写集群搭建 系列四:谈分布式之RabbitMQ集群搭 ...

  6. 在CentOS 7中安装与配置Tomcat-8方法

    安装前提 在CentOS 7中安装与配置JDK8 安装tomcat  apache-tomcat-8.0.14.tar.gz文件上传到/usr/local中执行以下操作: [root@localhos ...

  7. 如何在 CentOS 7 中安装、配置和安全加固 FTP 服务

    步骤 1:安装 FTP 服务器 1. 安装 vsftpd 服务器很直接,只要在终端运行下面的命令. # yum install vsftpd 2. 安装完成后,服务先是被禁用的,因此我们需要手动启动, ...

  8. MongoDB 3.2 在CentOS 上的安装和配置

    MongoDB 3.2 在CentOS 上的安装和配置   2016-01-06 14:41:41 发布 您的评价:       0.0   收藏     0收藏 一.安装 编辑/etc/yum.re ...

  9. 在 CentOS 7上安装并配置 Python 3.6 环境

    前言 按照此方法安装保证以下报错什么的统统都没有! 基础环境 系统:centos7.4 软件:python3 Retrying (Retry(total=0, connect=None, read=N ...

随机推荐

  1. ArcGIS API for Silverlight部署本地地图服务

    这一节我们来讲新建立的ArcGIS API for Silverlight应用程序如何加载自己的地图服务的问题,网上的资料讲的都有点含糊不清,这次我们详细的讲一下配置的步骤: 首先介绍下我们的开发和部 ...

  2. 用Dagger2在Android中实现依赖注入

    依赖注入这个模式(模式已经用烂了,这里再烂一次)是用来给应用的各部分解耦的.使应用开发更加可扩展,更容易维护.通过本文你会学到如何使用Dagger2来处理依赖. 简介 如果以对象需要另外的一个对象才能 ...

  3. 20171126--handlerThread

    1.首先看下handlerThread和普通的线程Thread的使用区别: HandlerThread本质上就是一个普通Thread,只不过内部建立了Looper. 为线程创建Looper的方法如下: ...

  4. MVC框架-.net-摘

    MVC模式(三层架构模式)(Model-View-Controller)是软件工程中的一种软件架构模式,把软件系统分为三个基本部分:模型(Model).视图(View)和控制器(Controller) ...

  5. HDU 2476 区间DP-刷字符问题-思维考察

    区间DP-刷字符问题-思维考察 翻译了一下这个题,一看还是有点难以入手,标明了是区间DP问题,但是如何DP呢 来捋一捋思路吧 dp[i][j]肯定是从i刷到j所要的次数但是它的i和j是s1串还是s2串 ...

  6. SRM484

    又Orz了一发rng_58.. 250pt: 题意:给定一种兔子数:当S(x*x) = S(x)*S(x)时,x为兔子数,其中S(x)表示各个数位之和. 思路:本来想了一个复杂度很高的想法..然后想看 ...

  7. 异步多线程 ASP.NET 同步调用异步 使用Result产生死锁

    一个方法调用了async方法,要将这个方法本身设计为async. public class BlogController : Controller { public async Task<Act ...

  8. 第一天:html+JavaScript函数

    testjstry1.html   知识点1:求多组数据的和 function demo(a,b){ var sum=a+b; return sum;}var v1=demo(20,10);var v ...

  9. [Phalcon-framework]2016-04-13_安装使用 Phalcon 框架

    1. 获取你的 PHP Version,操作系统是 x86 还是 64bit的,以及 Compiler 是什么 VC, 你可以直接同时 phpinfo() 函数获取到,如下截图: 2.  下载对应的 ...

  10. OmniThreadLibrary学习笔记

    http://blog.sina.com.cn/s/articlelist_1157240623_6_1.html 非常好的控件,仔细看