mysql 官方版本號碼命名 及安裝後查看資訊 、位元

來源:互聯網
上載者:User

標籤:

朋友說他那mysql5.6是32位的,讓我用源碼給裝個64的,之前就查了下mysql的相關版本及位元,小計一筆

源碼包,你在什麼位元上面編譯,就是什麼位元的安裝包了,源碼包不區分位元

一、在這個下載介面會有幾個版本的選擇。

http://blog.sina.com.cn/s/blog_62b37bfe0101he5t.html

http://blog.itpub.net/12679300/viewspace-1251661/

1. MySQL Community Server 社區版本,開源免費,但不提供官方支援人員。
2. MySQL Enterprise Edition 企業版本,需付費,可以試用30天。
3. MySQL Cluster 叢集版,開源免費。可將幾個MySQL Server封裝成一個Server。
4. MySQL Cluster CGE 進階叢集版,需付費。
5. MySQL Workbench(GUI TOOL)一款專為MySQL設計的ER/資料庫建模工具。它是著名的資料庫設計工具DBDesigner4的繼任者。MySQL Workbench又分為兩個版本,分別是社區版(MySQL Workbench OSS)、商用版(MySQL Workbench SE)。

MySQL Community Server 是開源免費的,這也是我們通常用的MySQL的版本。

GA 是指軟體的通用版本,一般指正式發布的版本。

MySQL企業版是一個已被證明和值得信賴的平台,這個平台包含了MySQL企業級資料庫軟體,、監控與諮詢服務,以及確保您的業務達到最高水平的可靠性、安全性和即時性的支援人員,畢竟是收費的嘛

一般下載redhat、linux通用、Source Code平台架構的,我用的最多是centos,這次下的是Source Code mysql-5.6.26.tar.gz 大小32M

二、查看mysql版本號碼方法

1、使用命令列模式進入mysql會看到最開始的提示符 

mysql

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 1

Server version: 5.6.22 Source distribution

2、命令列中用status查看

mysql> status;

--------------

mysql  Ver 14.14 Distrib 5.6.22, for Linux (x86_64) using  EditLine wrapper


Connection id: 1

Current database:

Current user: [email protected]

SSL: Not in use

Current pager: stdout

Using outfile: ‘‘

Using delimiter: ;

Server version: 5.6.22 Source distribution

Protocol version: 10

Connection: Localhost via UNIX socket

Server characterset: utf8

Db     characterset: utf8

Client characterset: utf8

Conn.  characterset: utf8

UNIX socket: /tmp/mysqld.sock

Uptime: 1 hour 13 min 20 sec


Threads: 1  Questions: 11  Slow queries: 0  Opens: 58  Flush tables: 1  Open tables: 53  Queries per second avg: 0.002

3、version()函數

mysql> select version();

+-----------+

| version() |

+-----------+

| 5.6.22    |

+-----------+

4、

mysql --help|grep  Distrib

mysql  Ver 14.14 Distrib 5.6.22, for Linux (x86_64) using  EditLine wrapper

5、包管理工具(如果用包管理工具安裝的)

rpm -qa|grep mysql 

三、如何查看 mysql 64位 還是 32位

1、

mysql> show variables like ‘%version_%‘;

+-------------------------+---------------------+

| Variable_name           | Value               |

+-------------------------+---------------------+

| slave_type_conversions  |                     |

| version_comment         | Source distribution |

| version_compile_machine | x86_64              |

| version_compile_os      | Linux               |

+-------------------------+---------------------+

2、mysql -V

mysql -V

mysql  Ver 14.14 Distrib 5.6.22, for Linux (x86_64) using  EditLine wrapper

3、

which mysql|xargs file

/usr/local/www/mysql/bin/mysql: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, not stripped

4、>status;

-------------

mysql  Ver 14.14 Distrib 5.6.22, for Linux (x86_64) using  EditLine wrapper

源碼包啊,你在什麼位元上面編譯,就是什麼位元的安裝包了,源碼包不區分位元

四、忘記密碼,使用mysqld_safe --skip-grant-tables

停止mysql服務,執行mysqld_safe --skip-grant-tables

mysql 直接登陸後修改密碼

use mysql;update user set password=password("12345") where user="root";flush privileges;

重啟mysql


mysql 官方版本號碼命名 及安裝後查看資訊 、位元

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.