博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql脚本
阅读量:5827 次
发布时间:2019-06-18

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

由于工作中需要安装配置相关数据,结合下面相关shell操作数据库,实现删除多余的用户,创建相关数据库并导入数据,实现相关数据库授权,插入相关数据测试
#!/bin/sh
  echo "please  input  Resserveraddress: "
  read  Resserver  
  echo "please  input  Gameserveraddress: "
  read  GameServer
  path=`pwd`
  mysql   -u   root   <<QUERY_SQL   
  DROP     DATABASE    IF         EXISTS     test;
  DROP     DATABASE    IF         EXISTS     testLog;
  DROP    DATABASE    IF   EXISTS     test;
  CREATE   DATABASE   test;
  CREATE   DATABASE   gameLog; 
  DELETE   FROM       mysql.user  WHERE      host='localhost.localdomain';
  DELETE   FROM       mysql.user  WHERE      host='127.0.0.1';
  DELETE   FROM       mysql.user  WHERE      user='';  
  USE   test; 
  source $path/test.sql; 
  USE   gameLog;
  source $path/testLog.sql; 
  grant all on test.* to  " identified by "password";
  grant all on testLog.* to  ";
  grant all on test.tbl_sch_account to  " identified by "password";
  grant all on testLog.* to  " identified by "password";
  grant all on testLog.* to  " identified by "password";
  insert into test.tbl_sch_account(email,password) values('test1',md5('111111'));
  insert into test.tbl_sch_account(email,password) values('test2',md5('111111'));
  insert into test.tbl_sch_account(email,password) values('test3',md5('111111'));
  insert into test.tbl_sch_account(email,password) values('test4',md5('111111'));
  insert into test.tbl_sch_account(email,password) values('test5',md5('111111')); 
  select * from test.tbl_sch_account;
  show grants;
  show grants for " ";
  show grants for " ";
  UPDATE mysql.user SET Password=PASSWORD ('password') WHERE User='root';
  QUIT   
  QUERY_SQL
本文转自 qwjhq 51CTO博客,原文链接:http://blog.51cto.com/bingdian/170711

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

你可能感兴趣的文章
ios11文件夹
查看>>
【HLOJ 559】好朋友的题
查看>>
Electric Fence(皮克定理)
查看>>
nvl 在mysql中如何处理
查看>>
MyEclipse 快捷键
查看>>
快速傅里叶变换FFT
查看>>
大数据常用基本算法
查看>>
JavaScript学习笔记(十三)——生成器(generator)
查看>>
hibernate保存失败
查看>>
MySQL增量订阅&消费组件Canal POC
查看>>
Sqlite多线程
查看>>
数据结构-时间复杂度
查看>>
对象与字符串相互转换
查看>>
[NOIp2017提高组]小凯的疑惑
查看>>
《C程序设计语言》练习1-5
查看>>
$\frac{dy}{dx}$ 是什么意思?
查看>>
Go开发之路(目录)
查看>>
RHEL6.5安装成功ORACLE11GR2之后,编写PROC程序出错解决方法
查看>>
(50)与magento集成
查看>>
Ubuntu设置python3为默认版本
查看>>