标签:NPU 高级 oracl base reg sql ide with gpl
1创建账号授权
grant all privileges on jenkinsddbes.* to ‘jenkinsddbes‘@‘%‘ identified by ‘1iN@Da12tA&*ba33gf8‘;
2、导出
mysqldump -u root -p jenkinsddbes > 2018-06-07.jenkinsddbes.sql
3、导入
[root@host-10-1-1-163 ~]# mysql -h 10.1.1.174 -u root -pzihoa@5tgb
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2593
Server version: 5.6.39-log MySQL Community Server (GPL)
Copyright (c) 2000, 2018, 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> create database jenkinsddbes;
[root@host-10-1-1-204 ~]# mysql -u root -p jenkinsddbes < jenkinsddbes.sql
注意:导入数据库默然是把视图也给到进来了,
4、给视图授权
grant create view on jenkins.* to ‘jenkinsddbes‘@‘%‘;
grant show view on jenkins.* to jenkinsddbes@‘%‘;
GRANT ALL PRIVILEGES ON 用户名.* TO 数据库名@‘%‘ IDENTIFIED BY ‘数据库密码‘;
flush privileges;
5、更改视图的所有者
进入navicat-设计视图-高级-定义者:修改成jenkinsddbes@%
标签:NPU 高级 oracl base reg sql ide with gpl
原文地址:https://www.cnblogs.com/effortsing/p/10011274.html