是时候用PerconaDB替换MySQL了_MySQL
bitsCN.com
是时候用PerconaDB替换MySQL了
作者:chszs,转载需注明。博客主页:http://blog.csdn.net/chszs
Percona数据库服务器是MySQL的增强版,替代MySQL并不复杂。
一、PerconaDB的特性
1)查询速度更快,数据的一致性更好
2)服务器运行及其稳定
3)可以延迟分片,或者避免分片
4)需要支付的费用比MySQL低
5)在优化和管理方面花费的时间更少
6)更高的正常运行时间
7)不排除猜测
还有一些特性:
1)数量更多的INFORMATION_SCHEMA表
2)数量更多的全局性能参数(Global Performance)和状态计数器(Status Counters)
3)每个索引性能计数器
4)每个用户性能计数器
5)每个客户端性能计数器
6)高精度进程列表时序
7)快速校验算法
8)缓冲池预加载
9)支持闪存缓冲
10)可从不同的服务器导入表
二、用PerconaDB代替MySQL
1)确保当前的数据得到了备份
# cp -Rf /var/lib/mysql /var/lib/mysql-orig # mv /etc/my.cnf /etc/my.cnf.orig
2)禁用目标,让cPanel不处理MySQL更新
# /scripts/update_local_rpm_versions --edit target_settings.MySQL50 uninstalled # /scripts/update_local_rpm_versions --edit target_settings.MySQL51 uninstalled # /scripts/update_local_rpm_versions --edit target_settings.MySQL55 uninstalled
3)从服务器移除所有的MySQL RPM包
# /scripts/check_cpanel_rpms --fix --targets=MySQL50,MySQL51,MySQL55
上面的命令会从服务器卸载MySQL RPM安装
4)创建数据库配置文件PerconaDB.repo
# vi /etc/yum.repos.d/PerconaDB.repo
添加下面的内容:
[percona] name = CentOS $releasever - Percona baseurl=http://repo.percona.com/centos/$releasever/os/$basearch/ enabled = 1 gpgkey = http://www.percona.com/redir/downloads/percona-release/RPM-GPG-KEY-percona gpgcheck = 1
5)在/etc/yum.conf文件内的“exclude”列表中移除php
6)安装PerconaDB-server、PerconaDB-client和PerconaDB-devel
# yum install Percona-Server-client-55 Percona-Server-server-55 Percona-Server-devel-55
7)启动Percona MySQL
# /etc/init.d/mysql start
8)然后运行Percona MySQL升级
# mysql_upgrade
# /etc/init.d/mysql restart
10)把php添加回/etc/yum.conf文件内的“exclude”列表中
11)用PHP重编译Apache
# /scripts/easyapache --build /etc/init.d/mysql status SUCCESS! MySQL (Percona Server) running (9425)
OK!
bitsCN.com
Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

According to news from this website on July 23, ASUS has launched a variety of server and workstation-level products powered by AMD EPYC 4004 series processors. Note from this site: AMD launched the AM5 platform and Zen4 architecture EPYC 4004 series processors in May, offering up to 16-core 3DV-Cache specifications. ASUSProER100AB6 server ASUSProER100AB6 is a 1U rack server product equipped with EPYC Xiaolong 4004 series processor, suitable for the needs of IDC and small and medium-sized enterprises. ASUSExpertCenterProET500AB6 workstation ASUSExpertCenterProET500AB6 is a

Using the database callback function in Golang can achieve: executing custom code after the specified database operation is completed. Add custom behavior through separate functions without writing additional code. Callback functions are available for insert, update, delete, and query operations. You must use the sql.Exec, sql.QueryRow, or sql.Query function to use the callback function.

JSON data can be saved into a MySQL database by using the gjson library or the json.Unmarshal function. The gjson library provides convenience methods to parse JSON fields, and the json.Unmarshal function requires a target type pointer to unmarshal JSON data. Both methods require preparing SQL statements and performing insert operations to persist the data into the database.

Through the Go standard library database/sql package, you can connect to remote databases such as MySQL, PostgreSQL or SQLite: create a connection string containing database connection information. Use the sql.Open() function to open a database connection. Perform database operations such as SQL queries and insert operations. Use defer to close the database connection to release resources.

PHP database connection guide: MySQL: Install the MySQLi extension and create a connection (servername, username, password, dbname). PostgreSQL: Install the PgSQL extension and create a connection (host, dbname, user, password). Oracle: Install the OracleOCI8 extension and create a connection (servername, username, password). Practical case: Obtain MySQL data, PostgreSQL query, OracleOCI8 update record.
