Linux

如何在 Red Hat Linux 4 上安裝 mysql_config?

  • February 3, 2014

我的任務是在已經執行 MySQL 的 Red Hat Linux 4 機器上實施一些升級。我發現需要 mysql_config 工具,但我找不到它,因為它已經安裝在任何地方。

我使用的包管理器是 RPM

rpm -qa | grep -i mysql 
MySQL-client-enterprise-gpl-5.0.56sp1-0.rhel4
MySQL-shared-compat-enterprise-gpl-5.0.56sp1-0.rhel4
MySQL-server-enterprise-gpl-5.0.56sp1-0.rhel4

以下是有關 MySQL 安裝的一些資訊:

mysql> SHOW VARIABLES LIKE '%version%';
+-------------------------+-------------------------------+
| Variable_name           | Value                         |
+-------------------------+-------------------------------+
| protocol_version        | 10                            |
| version                 | 5.0.56sp1-enterprise-gpl-log  |
| version_comment         | MySQL Enterprise Server (GPL) |
| version_compile_machine | i686                          |
| version_compile_os      | redhat-linux-gnu              |
+-------------------------+-------------------------------+

我在網上做了一些環顧四周,但運氣不佳。

我如何在這個盒子上安裝 mysql_config?

由於mysql_config是開發人員工具,它可能會在等效devel包中。您似乎直接從 Oracle 獲得了這些軟體包,因此請 Oracle 為您提供等效的MySQL-devel-enterprise-gpl軟體包。

(哦,那大約有 40 個更新檔過時了;現在是 5.0.96。)

(而 RHEL 4 兩年前就停止了支持……)

引用自:https://serverfault.com/questions/571944