开发者

How to check whether system has x86 or x64 MySQL

I开发者_如何学Go want to check that which type of MySQL my system has (as in x86 or x64 [32 or 64 bit]).

Any way to check that this in MySQL?


The way to find is using mysql to find it

MYSQL on 32 Bit System

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

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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜