在 CentOS 7 CPanel 伺服器上安裝 MariaDB 10
MariaDB 是一個增強版的、開源的 MySQL 替代品。它主要由 MariaDB 社群在維護,採用 GPL v2 授權許可。軟體的安全性是 MariaDB 開發者的主要焦點。他們保持為 MariaDB 的每個版本釋出安全補丁。當有任何安全問題被發現時,開發者會盡快修復並推出 MariaDB 的新版本。
MariaDB 的優勢
- 完全開源
- 快速且透明的安全版本
- 與 MySQL 高度相容
- 效能更好
- 比 MySQL 的儲存引擎多
在這篇文章中,我將談論關於如何在 CentOS7 CPanel 伺服器上升級 MySQL5.5 到最新的 MariaDB 。在安裝前先完成以下步驟。
先決條件:
1. 停止當前 MySQL 服務
root@server1 [/var/]# mysql Welcome to the MySQL monitor. Commands end with ; or /g. Your MySQL connection id is 5859 Server version: 5.5.47-cll MySQL Community Server (GPL) Copyright (c) 2000, 2015, 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. root@server1 [~]# systemctl stop mysql root@server1 [~]# systemctl status mysql ● mysql.service - LSB: start and stop MySQL Loaded: loaded (/etc/rc.d/init.d/mysql) Active: failed (Result: exit-code) since Sun 2016-01-31 10:00:02 UTC; 1min 31s ago Docs: man:systemd-sysv-generator(8) Main PID: 23430 (code=exited, status=203/EXEC) Jan 31 10:00:02 server1.centos7-test.com systemd[1]: Started MySQL Server. Jan 31 10:00:02 server1.centos7-test.com systemd[1]: Starting MySQL Server... Jan 31 10:00:02 server1.centos7-test.com systemd[1]: mysql.service: main process exited, code=exited, status=203/EXEC Jan 31 10:00:02 server1.centos7-test.com systemd[1]: Unit mysql.service entered failed state. Jan 31 10:00:02 server1.centos7-test.com systemd[1]: mysql.service failed.
2. 在升級之前將所有配置檔案和資料庫轉移
轉移資料庫的儲存路徑和 MySQL 的配置檔案
root@server1 [~]# cp -Rf /var/lib/mysql /var/lib/mysql-old root@server1 [/var/lib/mysql]# cat /etc/my.cnf [mysqld] default-storage-engine=MyISAM innodb_file_per_table=1 max_allowed_packet=268435456 open_files_limit=10000 root@server1 [~]#mv /etc/my.cnf /etc/my.cnf-old
3. 從伺服器上刪除和解除安裝 MySQL 所有的 RPM 包
執行以下命令來禁用 MySQL RPM 的目標(target)。通過執行此命令,cPanel 將不再處理 MySQL 的更新,並在系統上將這些 RPM 版本標記為已解除安裝。
/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 /scripts/update_local_rpm_versions --edit target_settings.MySQL56 uninstalled
現在執行以下命令:
/scripts/checkcpanelrpms --fix --targets=MySQL50,MySQL51,MySQL55,MySQL56
移除伺服器上所有已有的 MySQL RPM 來為 MariaDB 的安裝清理環境。請看下面的輸出:
root@server1 [/var/lib/mysql]# /scripts/check_cpanel_rpms --fix --targets=MySQL50,MySQL51,MySQL55,MySQL56 [2016-01-31 09:53:59 +0000] [2016-01-31 09:53:59 +0000] Problems were detected with cPanel-provided files which are RPM controlled. [2016-01-31 09:53:59 +0000] If you did not make these changes intentionally, you can correct them by running: [2016-01-31 09:53:59 +0000] [2016-01-31 09:53:59 +0000] > /usr/local/cpanel/scripts/check_cpanel_rpms --fix [2016-01-31 09:53:59 +0000] [2016-01-31 09:53:59 +0000] The following RPMs are unneeded on your system and should be uninstalled: [2016-01-31 09:53:59 +0000] MySQL55-client-5.5.47-1.cp1148 [2016-01-31 09:53:59 +0000] MySQL55-devel-5.5.47-1.cp1148 [2016-01-31 09:53:59 +0000] MySQL55-server-5.5.47-1.cp1148 [2016-01-31 09:53:59 +0000] MySQL55-shared-5.5.47-1.cp1148 [2016-01-31 09:53:59 +0000] MySQL55-test-5.5.47-1.cp1148 [2016-01-31 09:53:59 +0000] compat-MySQL50-shared-5.0.96-4.cp1136 [2016-01-31 09:53:59 +0000] compat-MySQL51-shared-5.1.73-1.cp1150 [2016-01-31 09:53:59 +0000] Removing 0 broken rpms: [2016-01-31 09:53:59 +0000] rpm: no packages given for erase [2016-01-31 09:53:59 +0000] No new RPMS needed for install [2016-01-31 09:53:59 +0000] Disabling service monitoring. [2016-01-31 09:54:01 +0000] Uninstalling unneeded rpms: MySQL55-test MySQL55-server MySQL55-client compat-MySQL51-shared compat-MySQL50-shared MySQL55-shared MySQL55-devel [2016-01-31 09:54:04 +0000] Removed symlink /etc/systemd/system/multi-user.target.wants/mysql.service. [2016-01-31 09:54:04 +0000] Restoring service monitoring.
通過這些步驟,我們已經解除安裝了現有的 MySQL RPM,並做了標記來防止 MySQL的更新,伺服器的環境已經清理,然後準備安裝 MariaDB。
開始安裝吧,我們需要根據 CentOS 和 MariaDB 的版本為 MariaDB 建立一個 yum 軟體庫。下面是我的做法!
安裝步驟:
第1步:建立 YUM 軟體庫。
root@server1 [~]# vim /etc/yum.repos.d/MariaDB.repo [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.0/centos7-amd64/ gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1 root@server1 [/etc/yum.repos.d]# cat /etc/yum.repos.d/MariaDB.repo [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.0/centos7-amd64/ gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1
第2步:開啟 /etc/yum.conf 並修改如下行:
刪除這一行:
exclude=courier* dovecot* exim* filesystem httpd* mod_ssl* mydns* mysql* nsd* php* proftpd* pure-ftpd* spamassassin* squirrelmail*
替換為:
exclude=courier* dovecot* exim* filesystem httpd* mod_ssl* mydns* nsd* proftpd* pure-ftpd* spamassassin* squirrelmail*
重要
需要確保我們已經從 exclude 列表中移除了 MySQL 和 PHP。
第3步:執行以下命令來安裝 MariaDB 和相關的包。
root@server1 [~]#yum install MariaDB-server MariaDB-client MariaDB-devel php-mysql Dependencies Resolved =============================================================================================================================================== Package Arch Version Repository Size =============================================================================================================================================== Installing: MariaDB-client x86_64 10.0.23-1.el7.centos mariadb 10 M MariaDB-devel x86_64 10.0.23-1.el7.centos mariadb 6.3 M MariaDB-server x86_64 10.0.23-1.el7.centos mariadb 55 M php-mysql x86_64 5.4.16-36.el7_1 base 99 k Installing for dependencies: MariaDB-common x86_64 10.0.23-1.el7.centos mariadb 43 k MariaDB-shared x86_64 10.0.23-1.el7.centos mariadb 1.2 M libzip x86_64 0.10.1-8.el7 base 48 k php-common x86_64 5.4.16-36.el7_1 base 563 k php-pdo x86_64 5.4.16-36.el7_1 base 97 k Transaction Summary =============================================================================================================================================== Install 4 Packages (+5 Dependent package)
第4步:重新啟動,並確保 MySQL 服務已啟動。
root@server1 [~]# systemctl start mysql root@server1 [~]# root@server1 [~]# root@server1 [~]# systemctl status mysql ● mysql.service - LSB: start and stop MySQL Loaded: loaded (/etc/rc.d/init.d/mysql) Active: active (exited) since Sun 2016-01-31 10:01:46 UTC; 3s ago Docs: man:systemd-sysv-generator(8) Process: 23717 ExecStart=/etc/rc.d/init.d/mysql start (code=exited, status=0/SUCCESS) Main PID: 23430 (code=exited, status=203/EXEC) Jan 31 10:01:46 server1.centos7-test.com systemd[1]: Starting LSB: start and stop MySQL... Jan 31 10:01:46 server1.centos7-test.com mysql[23717]: Starting MySQL SUCCESS! Jan 31 10:01:46 server1.centos7-test.com systemd[1]: Started LSB: start and stop MySQL.
第5步:執行 mysql_upgrade 命令。
它將檢查所有資料庫中的所有表與當前安裝的版本是否相容,並在必要時會更新系統表,以賦予當前版本新增加的許可權或能力。
root@server1 [~]# mysql_upgrade MySQL upgrade detected Phase 1/6: Checking and upgrading mysql database Processing databases mysql mysql.columns_priv OK mysql.db OK mysql.event OK mysql.func OK mysql.help_category OK mysql.help_keyword OK mysql.help_relation OK mysql.help_topic OK mysql.host OK mysql.ndb_binlog_index OK mysql.plugin OK mysql.proc OK mysql.procs_priv OK mysql.proxies_priv OK mysql.servers OK mysql.tables_priv OK mysql.time_zone OK mysql.time_zone_leap_second OK mysql.time_zone_name OK mysql.time_zone_transition OK mysql.time_zone_transition_type OK mysql.user OK Phase 2/6: Fixing views from mysql Phase 3/6: Running 'mysql_fix_privilege_tables' Phase 4/6: Fixing table and database names Phase 5/6: Checking and upgrading tables Processing databases cphulkd cphulkd.auths OK cphulkd.blacklist OK cphulkd.brutes OK cphulkd.good_logins OK cphulkd.ip_lists OK cphulkd.known_netblocks OK cphulkd.login_track OK cphulkd.logins OK cphulkd.report OK cphulkd.whitelist OK eximstats eximstats.defers OK eximstats.failures OK eximstats.sends OK eximstats.smtp OK information_schema leechprotect leechprotect.hits OK modsec modsec.hits OK performance_schema roundcube roundcube.cache OK roundcube.cache_index OK roundcube.cache_messages OK roundcube.cache_shared OK roundcube.cache_thread OK roundcube.contactgroupmembers OK roundcube.contactgroups OK roundcube.contacts OK roundcube.cp_schema_version OK roundcube.dictionary OK roundcube.identities OK roundcube.searches OK roundcube.session OK roundcube.system OK roundcube.users OK saheetha_test saheetha_test.authors OK whmxfer whmxfer.sessions OK Phase 6/6: Running 'FLUSH PRIVILEGES' OK
第6步:再次重新啟動 MySQL 的服務,以確保一切都執行完好。
root@server1 [~]# systemctl restart mysql root@server1 [~]# root@server1 [~]# systemctl status mysql ● mysql.service - LSB: start and stop MySQL Loaded: loaded (/etc/rc.d/init.d/mysql) Active: active (running) since Sun 2016-01-31 10:04:11 UTC; 9s ago Docs: man:systemd-sysv-generator(8) Process: 23831 ExecStop=/etc/rc.d/init.d/mysql stop (code=exited, status=0/SUCCESS) Process: 23854 ExecStart=/etc/rc.d/init.d/mysql start (code=exited, status=0/SUCCESS) Main PID: 23430 (code=exited, status=203/EXEC) CGroup: /system.slice/mysql.service ├─23861 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --pid-file=/var/lib/mysql/server1.centos7-test.com.pid └─23933 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --log-error=/v... Jan 31 10:04:10 server1.centos7-test.com systemd[1]: Starting LSB: start and stop MySQL... Jan 31 10:04:11 server1.centos7-test.com mysql[23854]: Starting MySQL. SUCCESS! Jan 31 10:04:11 server1.centos7-test.com systemd[1]: Started LSB: start and stop MySQL.
第7步:執行 EasyApache,重建 Apache/PHP 以支援 MariaDB,並確保所有 PHP 的模組保持不變。
root@server1 [~]#/scripts/easyapache --build
重要
如果你在安裝 MariaDB 之後忘記重建 Apache/PHP,將會報如下庫錯誤:
root@server1 [/etc/my.cnf.d]# php -v php: error while loading shared libraries: libmysqlclient.so.18: cannot open shared object file: No such file or directory
第8步:現在驗證安裝的程式和資料庫。
root@server1 [/var/lib/mysql]# mysql Welcome to the MariaDB monitor. Commands end with ; or /g. Your MariaDB connection id is 15 Server version: 10.0.23-MariaDB MariaDB Server Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '/h' for help. Type '/c' to clear the current input statement. MariaDB [(none)]> show storage engines; +--------------------+---------+----------------------------------------------------------------------------+--------------+------+------------+ | Engine | Support | Comment | Transactions | XA | Savepoints | +--------------------+---------+----------------------------------------------------------------------------+--------------+------+------------+ | CSV | YES | CSV storage engine | NO | NO | NO | | MRG_MyISAM | YES | Collection of identical MyISAM tables | NO | NO | NO | | MEMORY | YES | Hash based, stored in memory, useful for temporary tables | NO | NO | NO | | BLACKHOLE | YES | /dev/null storage engine (anything you write to it disappears) | NO | NO | NO | | MyISAM | YES | MyISAM storage engine | NO | NO | NO | | InnoDB | DEFAULT | Percona-XtraDB, Supports transactions, row-level locking, and foreign keys | YES | YES | YES | | ARCHIVE | YES | Archive storage engine | NO | NO | NO | | FEDERATED | YES | FederatedX pluggable storage engine | YES | NO | YES | | PERFORMANCE_SCHEMA | YES | Performance Schema | NO | NO | NO | | Aria | YES | Crash-safe tables with MyISAM heritage | NO | NO | NO | +--------------------+---------+----------------------------------------------------------------------------+--------------+------+------------+ 10 rows in set (0.00 sec)
就這樣 :)。現在,我們該去欣賞 MariaDB 完善和高效的特點了。希望你喜歡閱讀本文。希望留下您寶貴的建議和反饋!
相關文章
- centos7 安裝MariaDB 10.6CentOS
- centos7 安裝 mariadbCentOS
- centos7 yum 安裝mariadbCentOS
- CentOS 8 安裝 mariadb 伺服器CentOS伺服器
- 在Centos7上安裝DockerCentOSDocker
- 在CentOS 7上安裝TensorflowCentOS
- 在Ubuntu上安裝MariaDBUbuntu
- 如何在 CentOS 7 上安裝 Redis 伺服器CentOSRedis伺服器
- 在Centos7上安裝Redis6CentOSRedis
- 在CentOS7上安裝Zabbix3.0CentOS
- 在centos7上安裝mysql5.7CentOSMySql
- Centos7伺服器上RabbitMQ單機安裝CentOS伺服器MQ
- 如何在 CentOS 7 上安裝 Percona伺服器CentOS伺服器
- centos7系統安裝mysql(MariaDB)的教程CentOSMySql
- PostgreSQL tar.gz在centos7上安裝SQLCentOS
- Centos下安裝mariaDB方法CentOS
- 在CentOS上安裝GitCentOSGit
- 在centos上安裝molochCentOS
- 在CentOS上安裝dockerCentOSDocker
- 在CentOS上安裝PowerShellCentOS
- 在Centos上安裝wordpressCentOS
- hive在centos上安裝HiveCentOS
- Centos7上安裝dockerCentOSDocker
- 如何在 CentOS 7 / RHEL 7 終端伺服器上安裝 KVMCentOS伺服器
- MariaDB 10.1原始碼安裝流程(CentOS 6.5)原始碼CentOS
- Centos 7 上安裝Postgresql10.5和PostGISCentOSSQL
- 在Centos7上安裝圖形化桌面工具CentOS
- Docker架構及在Centos7上安裝dockerDocker架構CentOS
- 在Centos 7上使用Devstack快速安裝Openstack薦CentOSdev
- 在 CentOS7 上安裝 zookeeper-3.4.9 服務CentOS
- 在 CentOS 7 / RHEL 7 上怎樣安裝 Eclipse Luna IDECentOSEclipseIDE
- CentOS 6.6下編譯安裝MariaDB-10.0.24CentOS編譯
- MariaDB在Linux和Windows上的安裝LinuxWindows
- 在CentOS 8.1上安裝 DockerCentOSDocker
- SonarQube在CentOS上的安裝CentOS
- 在CentOS上安裝GITLABCentOSGitlab
- 如何在 CentOS 7 上安裝 NginxCentOSNginx
- 如何在 CentOS 7 上安裝 DockerCentOSDocker