获取存储库中当前 MySQL 构建的版本号

发布于 2024-12-16 00:54:53 字数 177 浏览 0 评论 0原文

我正在使用 Ubuntu Natty。

在完成惯用的 apt-get 更新和升级之后,我需要什么 shell 命令或脚本来获取软件存储库中当前活动 MySQL 版本的版本号?

现在我知道是5.1。但我希望能够查询它以了解它何时更改,因为我有一些依赖于此版本号的 shell 脚本。

提前致谢。

I'm using Ubuntu Natty.

What shell command or script would I need to get the version number of the currently active MySQL build in the software repository i.e. after I've done the customary apt-get update and upgrade?!

Right now I know it's 5.1. but I want to be able to query this to know when it changes as I have some shell scripts that rely on this version number.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

指尖微凉心微凉 2024-12-23 00:54:53

您想知道安装了什么,或者当前正在运行哪个版本的 mysqld?如果是后者:

$ mysqladmin version

请记住,您可能有多个 mysqld 实例在不同的端口上运行和侦听,因此您可能想知道在您感兴趣的特定端口上运行的守护程序的运行时版本。(换句话说,查询apt-get 获取有关已安装内容的信息可能不是您想要的。)

Do you want to know what is installed, or which version of mysqld is currently running? If the latter:

$ mysqladmin version

Keep in mind that you may have multiple instances of mysqld running and listening on different ports, so you probably want to know the runtime version of the daemon running on the particular port you are interested in. (In other words, querying apt-get for info about what is installed is probably not what you want.)

愁以何悠 2024-12-23 00:54:53
$ apt-cache show mysql-server
Package: mysql-server
Priority: optional
Section: database
Installed-Size: 96
Maintainer: Ubuntu Developers <[email protected]>
Original-Maintainer: Debian MySQL Maintainers <[email protected]>
Architecture: all
Source: mysql-5.1
Version: 5.1.58-1ubuntu1
Depends: mysql-server-5.1
$ apt-cache show mysql-server
Package: mysql-server
Priority: optional
Section: database
Installed-Size: 96
Maintainer: Ubuntu Developers <[email protected]>
Original-Maintainer: Debian MySQL Maintainers <[email protected]>
Architecture: all
Source: mysql-5.1
Version: 5.1.58-1ubuntu1
Depends: mysql-server-5.1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文