mysql数据库

Posted 白木潇潇夕

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql数据库相关的知识,希望对你有一定的参考价值。

一、概述

1、什么是数据库 ?
 答:数据的仓库,如:在ATM的示例中我们创建了一个 db 目录,称其为数据库

2、什么是 mysql、Oracle、SQLite、Access、MS SQL Server等 ?
 答:他们均是一个软件,都有两个主要的功能:

  • a. 将数据保存到文件或内存
  • b. 接收特定的命令,然后对文件进行相应的操作

    PS:如果有了以上软件,无须自己再去创建文件和文件夹,而是直接传递 命令 给上述软件,让其来进行文件操作,他们统称为数据库管理系统(DBMS,Database Management System)

3、什么是SQL ?
 答:上述提到MySQL等软件可以接受命令,并做出相应的操作,由于命令中可以包含删除文件、获取文件内容等众多操作,对于编写的命令就是是SQL语句。SQL,是结构化语言(Structured Query Language)的缩写,SQL是一种专门用来与数据库通信的语言。

 

二、下载安装

MySQL是一个关系型数据库管理系统,由瑞典MySQL AB 公司开发,目前属于 Oracle 旗下公司。MySQL 最流行的关系型数据库管理系统,在 WEB 应用方面MySQL是最好的 RDBMS (Relational Database Management System,关系数据库管理系统) 应用软件之一。

(一)、Window版本

1、下载

1 MySQL Community Server 5.7.16
2  
3 http://dev.mysql.com/downloads/mysql/

2、解压

如果想要让MySQL安装在指定目录,那么就将解压后的文件夹移动到指定目录,如:C:\\mysql-5.7.16-winx64

3、初始化

MySQL解压后的 bin 目录下有一大堆的可执行文件,执行如下命令初始化数据:

1 cd c:\\mysql-5.7.16-winx64\\bin
2  
3 mysqld --initialize-insecure

4、启动MySQL服务

执行命令从而启动MySQL服务

1 # 进入可执行文件目录
2 cd c:\\mysql-5.7.16-winx64\\bin
3  
4 # 启动MySQL服务
5 mysqld

5、启动MySQL客户端并连接MySQL服务

由于初始化时使用的【mysqld --initialize-insecure】命令,其默认未给root账户设置密码

1 # 进入可执行文件目录
2 cd c:\\mysql-5.7.16-winx64\\bin
3  
4 # 连接MySQL服务器
5 mysql -u root -p
6  
7 # 提示请输入密码,直接回车

输入回车,见下图表示安装成功:

到此为止,MySQL服务端已经安装成功并且客户端已经可以连接上,以后再操作MySQL时,只需要重复上述4、5步骤即可。但是,在4、5步骤中重复的进入可执行文件目录比较繁琐,如想日后操作简便,可以做如下操作。

a. 添加环境变量

将MySQL可执行文件添加到环境变量中,从而执行执行命令即可

【右键计算机】--》【属性】--》【高级系统设置】--》【高级】--》【环境变量】--》【在第二个内容框中找到 变量名为Path 的一行,双击】 --> 【将MySQL的bin目录路径追加到变值值中,用 ; 分割】
 
如:
C:\\Program Files (x86)\\Parallels\\Parallels Tools\\Applications;%SystemRoot%\\system32;%SystemRoot%;%SystemRoot%\\System32\\Wbem;%SYSTEMROOT%\\System32\\WindowsPowerShell\\v1.0\\;C:\\Python27;C:\\Python35;C:\\mysql-5.7.16-winx64\\bin

如此一来,以后再启动服务并连接时,仅需:

1 # 启动MySQL服务,在终端输入
2 mysqld
3  
4 # 连接MySQL服务,在终端输入:
5 mysql -u root -p

b. 将MySQL服务制作成windows服务

上一步解决了一些问题,但不够彻底,因为在执行【mysqd】启动MySQL服务器时,当前终端会被hang住,那么做一下设置即可解决此问题:

1 # 制作MySQL的Windows服务,在终端执行此命令:
2 "c:\\mysql-5.7.16-winx64\\bin\\mysqld" --install
3  
4 # 移除MySQL的Windows服务,在终端执行此命令:
5 "c:\\mysql-5.7.16-winx64\\bin\\mysqld" --remove

注册成服务之后,以后再启动和关闭MySQL服务时,仅需执行如下命令:

1 # 启动MySQL服务
2 net start mysql
3  
4 # 关闭MySQL服务
5 net stop mysql

(二)、Linux版本

1、采用二进制包安装mysql

二进制软件包名称

mysql-5.5.49-linux2.6-x8.6_64.tar.gz 

添加用户和组

groupadd mysql
useradd -s /sbin/nologin -g mysql -M mysql
tail -1 /etc/passwd
id mysql

开始安装MySQL

[root@template ]# mkdir -p /home/oldboy/tools
[root@template ]# cd /home/oldboy/tools
[root@template tools]# wget http://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.49-linux2.6-x86_64.tar.gz
[root@template tools]# tar xf mysql-5.5.49-linux2.6-x86_64.tar.gz 
[root@template tools]# mkdir -p /application/
[root@template tools]# mv mysql-5.5.49-linux2.6-x86_64 /application/mysql-5.5.49
[root@template tools]# ln -s /application/mysql-5.5.49/ /application/mysql
[root@template tools]# ls -l /application/mysql
lrwxrwxrwx 1 root root 26 10月 27 10:28 /application/mysql -> /application/mysql-5.5.49/

[root@template tools]# cd /application/mysql/
[root@template mysql]# ls -l support-files/*.cnf
-rw-r--r-- 1 7161 wheel  4691 3月   1 2016 support-files/my-huge.cnf
-rw-r--r-- 1 7161 wheel 19759 3月   1 2016 support-files/my-innodb-heavy-4G.cnf
-rw-r--r-- 1 7161 wheel  4665 3月   1 2016 support-files/my-large.cnf
-rw-r--r-- 1 7161 wheel  4676 3月   1 2016 support-files/my-medium.cnf
-rw-r--r-- 1 7161 wheel  2840 3月   1 2016 support-files/my-small.cnf

#复制my.cnf 配置文件
[root@template mysql]# /bin/cp support-files/my-small.cnf /etc/my.cnf
[root@template mysql]# mkdir -p /application/mysql/data
[root@template mysql]# chown -R mysql.mysql /application/mysql/

初始化数据库

[root@template mysql]# /application/mysql/scripts/mysql_install_db --basedir=/application/mysql --datadir=/application/mysql/data --user=mysql
Installing MySQL system tables...
161027 10:30:22 [Note] /application/mysql/bin/mysqld (mysqld 5.5.49) starting as process 1958 ...
OK
Filling help tables...
161027 10:30:23 [Note] /application/mysql/bin/mysqld (mysqld 5.5.49) starting as process 1965 ...
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/application/mysql/bin/mysqladmin -u root password \'new-password\'
/application/mysql/bin/mysqladmin -u root -h template.com password \'new-password\'

Alternatively you can run:
/application/mysql/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:
cd /application/mysql ; /application/mysql/bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl
cd /application/mysql/mysql-test ; perl mysql-test-run.pl

Please report any problems at http://bugs.mysql.com/

 

添加数据库文件

1 [root@template mysql]# cp support-files/mysql.server  /etc/init.d/mysqld
2 [root@template mysql]# chmod +x /etc/init.d/mysqld
3 [root@template mysql]# ll /etc/init.d/mysqld 
4 -rwxr-xr-x 1 root root 10880 Oct 27 10:31 /etc/init.d/mysqld

二进制默认路径为/usr/local/mysql 启动脚本里面的路径要更改

1 [root@template mysql]# sed -i \'s#/usr/local/mysql#/application/mysql#g\' /application/mysql/bin/mysqld_safe /etc/init.d/mysqld

启动mysql数据库

1 [root@template mysql]# /etc/init.d/mysqld start
2 Starting MySQL.. SUCCESS! 

检查mysql数据库是否启动

1 [root@template mysql]# netstat -lntup|grep mysql
2 tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      2224/mysqld       

设置mysql 开机自启动

1 [root@template mysql]# chkconfig --add mysqld
2 [root@template mysql]# chkconfig mysqld on
3 [root@template mysql]# chkconfig --list mysqld
4 mysqld          0:off   1:off   2:on    3:on    4:on    5:on    6:off

配置开机自启动

1 echo "#mysql start by huzhihua at 2016-10-27" >>/etc/rc.local 
2 echo "/etc/init.d/mysqld start" >>/etc/rc.local 
3 
4 [root@template mysql]# tail -2 /etc/rc.local 
5 #mysql start by huzhihua at 2016-10-27
6 /etc/init.d/mysqld start

配置mysql命令的全局使用路径

1 [root@template mysql]# echo \'export PATH=/application/mysql/bin:$PATH\' >>/etc/profile
2 [root@template mysql]# tail -1 /etc/profile
3 export PATH=/application/mysql/bin:$PATH
4 [root@template mysql]# source /etc/profile
5 [root@template mysql]# echo $PATH
6 /application/mysql/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

登录mysql

别外三种登录方法:

 1 mysql -uroot -p,
 2 mysql -uroot
 3 mysql -uroot -p \'oldboy123\'
 4 
 5 [root@template mysql]# mysql
 6 Welcome to the MySQL monitor.  Commands end with ; or \\g.
 7 Your MySQL connection id is 1
 8 Server version: 5.5.49 MySQL Community Server (GPL)
 9 
10 Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
11 
12 Oracle is a registered trademark of Oracle Corporation and/or its
13 affiliates. Other names may be trademarks of their respective
14 owners.
15 
16 Type \'help;\' or \'\\h\' for help. Type \'\\c\' to clear the current input statement.
17 
18 mysql> exit   #退出

请退出mysql,再设置密码

mysqladmin -u root password \'123456\'

2、采用yum的方式安装mysql

安装:

yum install mysql-server 

服务端启动

mysql.server start

 

三、数据库操作

1、显示数据库

1
show databases;

默认数据库:

  mysql - 用户权限相关数据
  test - 用于用户测试数据
  information_schema - MySQL本身架构相关数据

2、创建数据库

1
2
3
4
5
# utf-8
create database 数据库名称 default charset utf8 collate utf8_general_ci;
  
# gbk
create database 数据库名称 default character set gbk collate gbk_chinese_ci;

3、使用数据库

1
use db_name;

显示当前使用的数据库中所有表:show tables;

4、删除数据库

1
drop database db_name;

5、用户管理

1
2
3
4
5
6
7
8
9
10
11
12
13
创建用户
    create user \'用户名\'@\'IP地址\' identified by \'密码\';
    create user \'xyp\'@\'192.168.1.1\' identified by \'123\';    #账户名xyp,ip地址192.168.1.1,密码123可以使用该用户
    create user \'xyp\'@\'192.168.1.%\' identified by \'123\';    # %代表任意
    create user \'xyp\'@\'%\' identified by \'123\';
删除用户
    drop user \'用户名\'@\'IP地址\';
修改用户
    rename user \'用户名\'@\'IP地址\'; to \'新用户名\'@\'IP地址\';;
修改密码
    set password for \'用户名\'@\'IP地址\' = Password(\'新密码\')
   
PS:用户权限相关数据保存在mysql数据库的user表中,所以也可以直接对其进行操作(不建议)

6、授权管理

1
2
3
show grants for \'用户\'@\'IP地址\'                  -- 查看权限
grant  权限 on 数据库.表 to   \'用户\'@\'IP地址\'      -- 授权
revoke 权限 on 数据库.表 from \'用户\'@\'IP地址\'      -- 取消权限

 

all privileges  除grant外的所有权限
            select          仅查权限
            select,insert   查和插入权限
            ...
            usage                   无访问权限
            alter                   使用alter table
            alter routine           使用alter procedure和drop procedure
            create                  使用create table
            create routine          使用create procedure
            create temporary tables 使用create temporary tables
            create user             使用create user、drop user、rename user和revoke  all privileges
            create view             使用create view
            delete                  使用delete
            drop                    使用drop table
            execute                 使用call和存储过程
            file                    使用select into outfile 和 load data infile
            grant option            使用grant 和 revoke
            index                   使用index
            insert                  使用insert
            lock tables             使用lock table
            process                 使用show full processlist
            select                  使用select
            show databases          使用show databases
            show view               使用show view
            update                  使用update
            reload                  使用flush
            shutdown                使用mysqladmin shutdown(关闭MySQL)
            super                   

以上是关于mysql数据库的主要内容,如果未能解决你的问题,请参考以下文章

从mysql的片段中加载ListView

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段

使用 json rereiver php mysql 在片段中填充列表视图

关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段

硬核!管理mysql数据库的工具

修改MySQL密码报错“ERROR 1819 (HY000): Your password does not satisfy the current policy requirements“(代码片段