Mysql 5.6 安裝

來源:互聯網
上載者:User

標籤:mysql5.6 linux

以前一直用5.1版本的,由於新業務需要用5.6的,就安裝並做了筆記


MySQL5.6部分新特性:

InnoDB現在可以限制大量表開啟的時候記憶體佔用過多的問題(第三方已有補丁)

InnoDB效能加強。如分拆kernel mutex;flush操作從主線程分離;多個perge線程;大記憶體最佳化等

InnoDB死結資訊可以記錄到 error 日誌,方便分析

MySQL5.6支援延時複製,可以讓slave跟master之間控制一個時間間隔,方便特殊情況下的資料恢複。

表資料分割函數增強

MySQL行級複製功能加強,可以降低磁碟、記憶體、網路等資源開銷(只記錄能確定行記錄的欄位即可)

Binlog實現 crash-safe

複製事件採用crc32校正,增強master/slave 複製資料一致性

新增 log_bin_basename (以前variables裡面沒有binlog位置資訊,對資料庫的監管很不方便)


詳見:http://dev.mysql.com/doc/refman/5.6/en/mysql-nutshell.html

[[email protected] tools]# tar xvf mysql-5.6.19.tar.gz[[email protected] tools]# cd mysql-5.6.19[[email protected] mysql-5.6.19]# groupadd mysql[[email protected] mysql-5.6.19]# useradd mysql -g mysql -M -s /sbin/nologin[[email protected] mysql-5.6.19]# cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \ #安裝路徑-DMYSQL_DATADIR=/usr/local/mysql/data \#資料檔案存放位置-DSYSCONFDIR=/etc  \#my.cnf路徑-DWITH_MYISAM_STORAGE_ENGINE=1 \#支援MyIASM引擎-DWITH_INNOBASE_STORAGE_ENGINE=1 \#支援InnoDB引擎-DWITH_MEMORY_STORAGE_ENGINE=1  \#支援Memory引擎-DWITH_READLINE=1 \#快速鍵功能-DMYSQL_TCP_PORT=3306 \#連接埠-DENABLED_LOCAL_INFILE=1 \#允許從本地匯入資料-DWITH_PARTITION_STORAGE_ENGINE=1 \#安裝支援資料庫分區-DEXTRA_CHARSETS=all \#安裝所有的字元集-DDEFAULT_CHARSET=utf8 \#預設字元-DDEFAULT_COLLATION=utf8_general_ci[[email protected] mysql-5.6.19]# make && make install[[email protected] mysql-5.6.19]# cd /usr/local/mysql/[[email protected] mysql]# chown -R mysql:mysql .[[email protected] mysql]# scripts/mysql_install_db --user=mysql[[email protected] mysql]# chown -R root:mysql . [[email protected] mysql]# chown -R mysql:mysql ./data[[email protected] mysql]# chmod -R ug+rwx  . [[email protected] mysql]# cp support-files/my-default.cnf /etc/my.cnf[[email protected] mysql]# bin/mysqld_safe --user=mysql &[[email protected] mysql]# cp support-files/mysql.server /etc/init.d/mysql[[email protected] mysql]# chmod 755 /etc/init.d/mysql [[email protected] mysql]# echo "export PATH=/usr/local/mysql/bin:$PATH" >> /etc/profile[[email protected] mysql]# source /etc/profile


Mysql 5.6 安裝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.