本教程的系統平臺:CentOS release 6.8 (Final) 64位。mysql5.6.15,cmake-3.1.1mysql
yum -y install gcc gcc-c++ make autoconf libtool-ltdl-devel gd-devel freetype-devel libxml2-devel libjpeg-devel libpng-devel openssl-devel curl-devel bison patch unzip libmcrypt-devel libmhash-devel ncurses-devel sudo bzip2 flex libaio-devel
一、下載地址:http://www.cmake.org/files/v3.1/cmake-3.1.1.tar.gzlinux
$ wget http://www.cmake.org/files/v3.1/cmake-3.1.1.tar.gz
二、解壓安裝包c++
$ tar zxvf cmake-3.1.1.tar.gz
3.進入安裝包目錄sql
$ cd cmake-3.1.1
四、編譯安裝 數據庫
$ ./bootstrap
$ make && make install
一、下載地址: http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.15.tar.gzbootstrap
$ wget http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.15.tar.gz
二、解壓安裝包vim
$ tar zxvf mysql-5.6.15.tar.gz
三、進入安裝包目錄curl
$ cd mysql-5.6.15
四、編譯安裝 ide
$ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql/ -DMYSQL_UNIX_ADDR=/tmp/mysql.sock -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_EXTRA_CHARSETS=all -DWITH_MYISAM_STORAGE_ENGINE=1 -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_MEMORY_STORAGE_ENGINE=1 -DWITH_READLINE=1 -DWITH_INNODB_MEMCACHED=1 -DWITH_DEBUG=OFF -DWITH_ZLIB=bundled -DENABLED_LOCAL_INFILE=1 -DENABLED_PROFILING=ON -DMYSQL_MAINTAINER_MODE=OFF -DMYSQL_DATADIR=/usr/local/mysql/data -DMYSQL_TCP_PORT=3306 $ make && make install
一、建立mysql運行使用的用戶mysql:工具
$ /usr/sbin/groupadd mysql
$ /usr/sbin/useradd -g mysql mysql
二、建立binlog存儲路徑並賦予mysql用戶權限
$ mkdir -p /usr/local/mysql/binlog $ chown mysql.mysql /usr/local/mysql/binlog/
三、受權用戶
$chown -R mysql:mysql /usr/local/mysql/
$chown -R mysql:mysql /data $chmod 1777 /tmp
4建立my.cnf配置文件
[root@bogon mysql]# cp support-files/my-default.cnf /etc/my.cnf
5.設置環境變量
[root@bogon mysql]# cp support-files/my-default.cnf /etc/my.cnf cp:是否覆蓋"/etc/my.cnf"? y [root@bogon mysql]# echo 'export PATH=/usr/local/mysql/bin:$PATH' >>/etc/profile [root@bogon mysql]# source !$ source /etc/profile
6.建立服務腳本添加開機啓動
[root@bogon mysql]# cp support-files/mysql.server [root@bogon mysql]# chmod +x /etc/init.d/mysqld [root@bogon mysql]# vim /etc/init.d/mysqld
//服務啓動腳本要修改如下兩個參數 basedir=/usr/local/mysql //MySQL安裝目錄 datadir= /data //數據存放目錄
添加開機啓動
[root@bogon mysql]# chkconfig mysqld on
7.初始化數據庫
[root@bogon mysql]# /usr/local/mysql/scripts/mysql_install_db --user=mysql
8.啓動
[root@bogon mysql]# service mysqld start Starting MySQL. SUCCESS! [root@bogon mysql]# service mysqld status SUCCESS! MySQL running (29614)
9.登錄和建立用戶
[root@bogon mysql]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.15 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show database
-> G
->
-> ;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'database
G' at line 1
mysql> show database;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'database' at line 1
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+
4 rows in set (0.01 sec)
新增用戶並受權
mysql> grant all privileges on *.* to xueqing @'%' identified by '123456mysql>grant all privileges on *.* to xueqing @'%' identified by '123456' with grant option; Query OK, 0 rows affected (0.00 sec)
語法:grant all privileges on *.* to 用戶名@'%' identified by '密碼' with grant option;
mysql> use test;
Database changed
mysql> show tables;
Empty set (0.00 sec)
mysql> create table xueqing(id int auto_increment,name char(20),primary key(id))engine=myisam default charset=utf8;
Query OK, 0 rows affected (0.01 sec)
10,用mysql圖像管理器登錄