码迷,mamicode.com
首页 >  
搜索关键字:drop user    ( 43512个结果
git--使用
1.删除文件:先删除本地缓存,重新加到缓存区,重新提交 git rm -r --cached . git add . git commit -m ‘update .gitignore’ 2.初始化提交项目 Git 全局设置 git config --global user.name "" git c ...
分类:其他好文   时间:2020-09-17 18:06:14    阅读次数:29
Oracle重命名sys或system操作记录
oracle等保中有条要求:应重命名或删除默认账户,修改默认账户的默认口令。给的建议是修改sys,system默认账户名称,避免使用常见用户名称;以下记录了两种方法来实现上面的要求:Oracle重命名sys操作记录方法一:通过用户的信息是存储在user$实体表中的id来修改1.1、首先获取用户的idselectusername,user_idfromdba_userswhereusername=&
分类:数据库   时间:2020-09-17 18:01:05    阅读次数:70
解决Navicat 出错:1130-host . is not allowed to connect to this MySql server,MySQL
具体报错: 1130-host . is not allowed to connect to this MySql server 报错原因: 是mysql未开启mysql远程访问权限导致。 解决办法: 解决办法有两种,1.改为所有可远程(连接)的,2.授权: 1.打开mysql自带的user表,找到 ...
分类:数据库   时间:2020-09-17 17:28:49    阅读次数:46
ansible的内置变量
内置变量ansible_version获取到ansible的版本号ansibletest70-mdebug-a"msg={{ansible_version}}"内置变量hostvars操作当前主机时获取到其他主机中的信息name:"play1:Gatherfactsoftest71"hosts:test71remote_user:rootname:"
分类:其他好文   时间:2020-09-17 17:20:47    阅读次数:79
ansible进阶循环
通过item和with_items对重复操作进行循环执行示例:hosts:jack6_1remote_user:rootgather_facts:notasks:name:touchfilefile:path:"{{item}}"state:touchwith_items:"a""b""c"在jack6_1主机上创建三
分类:其他好文   时间:2020-09-17 17:20:16    阅读次数:39
ansible的循环二
with_items遍历列表中每个元素,包括嵌套列表with_list将嵌套列表作为整体元素遍历with_together将多个列表中的子列表元素,一起输出,不成对则null补位示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_items:[1,2,3][a,b]debug
分类:其他好文   时间:2020-09-17 17:19:57    阅读次数:31
ansible循环四
with_indexed_items示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_indexed_items:[t1,t2][t3,[t4,t5]][t6]输出结果如下:[root@jack7-1work]#ansible-playbook--syntax-checki
分类:其他好文   时间:2020-09-17 17:19:41    阅读次数:32
ansible循环四
with_indexed_items示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_indexed_items:[t1,t2][t3,[t4,t5]][t6]输出结果如下:[root@jack7-1work]#ansible-playbook--syntax-checki
分类:其他好文   时间:2020-09-17 17:19:20    阅读次数:33
ansible循环三
with_nested采用笛卡尔乘积方式,将多个嵌套列表中的元素交叉组合示例:创建多个目录及子目录mkdir-p/testdir/{a,b,c}/{1,2}ansible剧本如下:hosts:jack6_1remote_user:rootgather_facts:notasks:file:path:"/testdir"state:directoryfile:path:"
分类:其他好文   时间:2020-09-17 16:54:16    阅读次数:24
浅谈js面向对象的写法
浅谈js面向对象 /** * 浅谈js面向对象 * author: Mr Lee (James Lee) */ /* 一、创建一个类 创建一个类(具有相同属性和行为的对象的集合 */ const User = function (id, name, age) { this.id = id this. ...
分类:Web程序   时间:2020-09-17 16:37:06    阅读次数:30
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!