MySQL:检查什么版本:32 位还是 64 位?
我可以使用终端知道我正在运行的 MySQL 版本(32 位还是 64 位)吗?
Can I tell what version (32 bit or 64 bit) of MySQL I am running by using Terminal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(10)
在命令行中运行此命令:
然后您会得到类似以下内容:
然后请检查: http://www.redhat.com/archives/rhl-list/2006-October/msg03684.html
你会看到i386/i686 是 32 位,x86_64 是 64 位。
希望这有帮助。
run this command in command line:
then you get something like this:
and then please check this: http://www.redhat.com/archives/rhl-list/2006-October/msg03684.html
you'll see that i386/i686 are 32 bit, and x86_64 is 64 bit.
Hope this helps.
您可以使用
version()
:在此处查看更多信息:)
You can use
version()
:See more information here :)
运行命令行 MySQL 客户端:
OR
这是以下命令的别名:
Running the command-line MySQL client:
OR
which is an alias for:
您可以尝试以下命令:(无需登录)
You could try the command: (no login needed)
要了解您的 Mysql 位架构,请按照此步骤操作。
从 phpmyadmin 打开 Mysql 控制台
现在输入密码后输入此命令
显示全局变量,如“version_compile_machine”;
如果 version_compile_machine = x86_64 那么它是 64 位,
否则是 32 位。
To know your Mysql bit architecture please follow this step.
Open Mysql console from phpmyadmin
Now after entering password type this command
show global variables like 'version_compile_machine';
if version_compile_machine = x86_64 then it is 64 bit
else 32 bit.
我也在寻找这个(连接到 mysql 的核心转储问题),上面的答案似乎都没有正确回答问题:例如 mysql 版本信息不包括构建类型 32 或 64 位。
发现这个 capttofu:我有 32 位还是 64 位 MySQL? captoflu 在我的例子中,它使用一个简单的“文件”命令来告诉你正在运行什么版本。
I was searching for this also (core dump issues connecting to mysql) and it seemed none of the above answers properly answered the question: e.g. mysql version info doesn't include the build type 32or 64 bit.
found this capttofu: Do I have a 32-bit or 64-bit MySQL? captoflu which uses a simple "file" command to tell what build youre running, in my case.
在 Windows 中使用 --version 参数获取 mysql 版本:
在 Windows 中使用自定义查询获取 mysql 版本:
使用服务器变量在 Windows 中获取 mysql 版本:
使用
\s
标志在 Windows 中获取 mysql 版本。Get mysql version In Windows with --version parameter:
Get mysql version In Windows with custom query:
Get mysql version in Windows with server variable:
Get mysql version in Windows with
\s
flag.使用
@@version
服务器变量。这是我在我的服务器上得到的:
希望它有帮助。
这是所有服务器变量的列表。
Use
@@version
server variable.This is what I get on my server:
Hope it helps.
Here's a list of all server variables.
无需登录(OS X 10.11)。
No login is needed (OS X 10.11).