简体   繁体   English

如何检查系统是否具有x86或x64 MySQL

[英]How to check whether system has x86 or x64 MySQL

I want to check that which type of MySQL my system has (as in x86 or x64 [32 or 64 bit]). 我想检查我的系统具有哪种类型的MySQL(如x86或x64 [32或64位])。

Any way to check that this in MySQL? 有什么办法可以在MySQL中检查这一点吗?

The way to find is using mysql to find it 查找方法是使用mysql查找

MYSQL on 32 Bit System 32位系统上的MYSQL

mysql> SHOW GLOBAL VARIABLES LIKE 'version_compile_machine';
+-------------------------+-------+
| Variable_name | Value |
+-------------------------+-------+
| version_compile_machine | i686 |
+-------------------------+-------+
1 row in set (0.00 sec)

MYSQL on 64 Bit System 在64位系统上的MYSQL

mysql> show variables like 'version_compile_machine';
+-------------------------+--------+
| Variable_name | Value |
+-------------------------+--------+
| version_compile_machine | x86_64 |
+-------------------------+--------+

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 从mysql 5.5 x86升级到mysql 5.5 x64会出现什么问题? - What problems arise from upgrading mysql 5.5 x86 to mysql 5.5 x64? Windows 7 x64中Rails的MySQL驱动程序 - MySQL driver for Rails in Windows 7 x64 Windows7 x86中的Mysql和Ruby on Rails配置 - Mysql and Ruby on Rails configuration in windows7 x86 错误“发生 JNI 错误。请检查您的安装并在 Eclipse x86 Windows 8.1 中重试” - Error "A JNI error has occurred. Please check your installation and try again in Eclipse x86 Windows 8.1" 在Windows 7 x64上安装mysql2错误无法正常工作 - Error installing mysql2 with windows 7 x64 does not work Mysql2,RoR和Windows 8 x64的问题 - Issue with Mysql2, RoR, and Windows 8 x64 MySQL无法启动Ubuntu 16.04.2 x64 - mysql wont start Ubuntu 16.04.2 x64 找不到Qt 5.4 Windows msvc x64 mysql驱动程序 - Qt 5.4 windows msvc x64 mysql driver not found 如何在Windows x64机器上使用VS 2010构建MySQL连接器c ++? - How to build MySQL connector c++ with VS 2010 on a Windows x64 machine? 如何在x64位计算机上的Visual Studio 2012/2013 Express中连接到MySQL数据源 - How to connect to a MySQL Data Source in Visual Studio 2012/2013 express on x64 bit machine
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM