博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第三课unit8 mariadb
阅读量:6794 次
发布时间:2019-06-26

本文共 2947 字,大约阅读时间需要 9 分钟。

    1.yum intall mariadb-server -y  ##安装mariadb服务

    systemctl start mariadb    ##开启服务

      vim /etc/my.cnf     ##修改配置文件

wKioL1kZikyxbbQuAAAmKr1lJDc759.png

    *

*symbolic-link=0  ##跳过符号链接

      systemctl  restart  mariadb  #重启服务

  

     mysql_secure_installtion   ##mysql加密

   **Enter current password for root (enter for none):   ##数据库原始密码,直接回车

    **Change the root password? [Y/n] y  ##是否设定数据库root密码

     New password:               ##输入密码

     Re-enter new password:         ##重复密码

    **Remove anonymous users? [Y/n] y  ##是否删除匿名用户访问权限

   **Disallow root login remotely? [Y/n] y  ##是否禁止超级用户远程登录

   **Remove test database and access to it? [Y/n] y   ##是否删除测试数据

   **Reload privilege tables now? [Y/n] y     ##重新加载服务

   2.数据库的基本sql语句操作

   (1)登录

    mysql -uroot -p    ##-u代表用户  -p密码

    (2)查询

     show databases;     ##显示数据库

     use mysql;        ##进入MySQL库

     show tables;       ##显示数据库里表的名称

     select * from user;    ##查询user表中所有内容

     desc user;          ##查询user表的结构 (显示表头)

   (3)数据库的建立

     create database westos;     ##建立westos库

     create table linux(        ##建立Linux表,并且有username和password两个字段

     username varchar(15) not null,

     password varchar(15) not null

     ); 

  

     insert into linux values ('user1','123')   ##给Linux表里写入内容

   (4)数据库的更新

    update linux set password=password('456') where username='user1';  ##加密更新user1密码

    update linux set password=password('456') where (username='user2' or username='user3';  ##更新user2和user3密码

    delete from linux where where username='user1';  ##删除user1密码

    alter table linux add age varchar(4);     ##在Linux表最后添加age列

    alter table linux add year varchar(4)after age ##在age字段后添加year字段

    alter table linux drop age ;   ##删除age字段

  

   (5)删除数据库

     drop table linux    ##删除Linux表

     drop database westos   ##删除westos库

   (6)数据库的备份

     mysqldump -u root -p123 --all -database  ##备份表中所有数据

     mysqldump -u root -p123 --all -database --no-data  ##备份所有表,不备份数据

    

     mysqldump -u root -p123 westos    ##备份westos库

     mysqldump -u root -p123 westos > /mnt/westos.sql  ##备份westos库保存到westos.sql

    

     mysqldump -u root -p123 westos linux > /mnt/linux.sql  ##备份westos库中的Linux表

     mysql -u root -p123 -e "create database westoss;"  ##建立westos库

     mysql -u root -p123 westos <  /mnt/linux.sql  ##导入数据到westos库

   **测试

   (7)用户授权

     create user ws@localhost identified by 'ws';  ##创建用户ws,只能通过本机登录

     create user ws@'%' identified by 'ws';     ##创建用户ws,只能通过网络登录

   

     grant insert,update,delete,select on westos.linux to ws@localhost  ##用户授权

   

     revoke delete on westos.linux from ws@localhost   ##删除用户授权

     drop user ws@'%'   ##删除用户

    (8)修改密码

      mysqladmin -uroot -p123 password 456 

      mysqld_safe --skip-grant-table &  ##开启MySQL登录接口忽略授权表

      mysql               ##不要密码登录

      update mysql.user set Password=password('123') where User='root'  ##更新root密码

     

      ps aux | grep mysql ##过滤MySQL进程并结束

     kill -9       

      

      systemctl start maraidb   ##重启MySQL

     

    3.数据库网页管理工具

     yum install httpd php phy-mysql -y  ##安装服务

   systemctl start httpd

   systemctl enable httpd

   systemctl stop firewalld

   systemctl disable firewalld

  

   tar jxf phpMyAdmin-3.4.0-all-languages.tar.bz2 -C /var/www/html ##解压文件到指定目录

  

   mv  phpMyAdmin-3.4.0-all-languages/ mysqladim  ##重命名文件

   cd mysqladim

   cp -p config.sample.inc.php  config.inc.php  ##复制模板

   vim  config.inc.php  ##编辑配置文件

   systemctl restart httpd  

  **修改配置文件内容

  **测试

本文转自  red777    51CTO博客,原文链接:http://blog.51cto.com/12314711/1926015

转载地址:http://trrgo.baihongyu.com/

你可能感兴趣的文章
bzoj千题计划105:bzoj3503: [Cqoi2014]和谐矩阵(高斯消元法解异或方程组)
查看>>
css display table使用小例子实验
查看>>
Mybatis学习(4)输入映射、输出映射、动态sql
查看>>
java设计模式-策略模式
查看>>
iOS随笔记录
查看>>
objective-c面向对象
查看>>
Windows 7下Git SSH 创建Key【待解决?】
查看>>
阿里云服务器Linux CentOS安装配置(七)域名解析
查看>>
最长公共前缀---简单
查看>>
课程引言作业一
查看>>
like 大数据字段 查询慢
查看>>
JSON 数据格式
查看>>
Django----解决跨域
查看>>
SQL聚合函数
查看>>
Eclipse配色方案
查看>>
字符编码,文件处理
查看>>
Nginx配置文件解析
查看>>
Deep learning:二十六(Sparse coding简单理解)
查看>>
【转载】架构和框架的区别
查看>>
STL中rotate算法的理解
查看>>