mysql編譯安裝
環境:os: centos 6.6x64 mini
mysql: mysql-5.6.25
2.安裝
先禁用selinux
3.安裝cmake
yum install cmake wget gcc-c++ gcc ncurses-devel -y
groupadd mysql
useradd -g mysql mysql
tar xvf mysql-5.6.25.tar.gz
cd mysql-5.6.25
4cmake
-dcmake_install_prefix=/usr/local/mysql
-dmysql_datadir=/usr/local/mysql/data
-dsysconfdir=/etc
-dwith_myisam_storage_engine=1
-dwith_innobase_storage_engine=1
-dwith_memory_storage_engine=1
-dwith_readline=1
-dmysql_unix_addr=/var/lib/mysql/mysql.sock
-dmysql_tcp_port=3306
-denabled_local_infile=1
-dwith_partition_storage_engine=1
-dextra_charsets=all
-ddefault_charset=utf8
-ddefault_collation=utf8_general_ci5
5.make 和 make install 時間比較長
make
make install
yum-y install autoconf
安裝完成了
cd /usr/local/mysql
chown -r mysql .
chgrp -r mysql .
scripts/mysql_install_db --user=mysql
chown -r root .
chown -r mysql data
啟動指令碼
cp support-files/mysql.server /etc/init.d/mysql.server
啟動資料庫
bin/mysqld_safe --user=mysql &
service mysql.server start
首先為使用者建立乙個資料庫
create database test ;
授權grant all privileges on test .* to test@localhost identified by 『1234』;
授權外部訪問許可權
grant all privileges on . to 『test』@『localhost』 identified by 『test』;
grant all privileges on . to 『test』@』%』 identified by 『test』;
flush privileges;//重新整理系統許可權表
MySQL5 6 以上版本 密碼安裝策略問題
背景介紹 首次安裝mysql server5.6以後,修改使用者密碼為 123456 結果錯誤提示 your password does not satisfy the current policy requirements 原因 密碼強度驗證外掛程式validate password,相關引數設定...
編譯mysql5 6 編譯安裝mysql5 6
mysqlwget tar zxvf mysql 5.6.33.tar.gz tar zxvf cmake 2.8.5.tar.gz cd cmake 2.8.5 安裝編譯工具.bootstrap prefix usr local cmake sudo gmake sudo gmake instal...
mysql安裝 安裝MySQL5 6
027 08 2015 下午 12 樓主 這個mysql 的安裝過程是有問題的,可能是配置引數,我在初始化的時候報 2015 08 27 12 18 24 9957 note innodb the innodb memory heap is disabled 2015 08 27 12 18 24 ...