摘要: ansibleplaybook文件: 使用将主机IP和主机名对应关系写入vars/main.yml,或者通过hosts文件引入 roles/all_ssh_key/├── tasks│ └── main.yml└── vars └── main.yml tasks/main.yml 1 - name 阅读全文
posted @ 2021-03-17 16:01 JonyQ 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 使用键盘快捷方式创建 PowerPoint 演示文稿 许多用户发现,将外部键盘与键盘快捷方式配合使用, PowerPoint 可帮助他们更高效地工作。 对于行动不便或者有视力障碍的用户而言,键盘快捷方式比触摸屏更方便,是鼠标的重要替代方式。 注意: 本主题中的这些快捷方式指的是美式键盘布局。 其他键 阅读全文
posted @ 2020-12-11 14:50 JonyQ 阅读(1266) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- # @Date : 2019-12-13 16:35:33 # @Author : Zhongyi Qiao # @Link : ${link} # @Version : $Id$ import sys,os 阅读全文
posted @ 2020-06-08 08:27 JonyQ 阅读(1617) 评论(0) 推荐(0) 编辑
摘要: 因为调用ssh需要免密,使用脚本加配置文件自动批量免密。脚本如下 hostip=$1 name=$2 PASSWORD=$3需要脚本添加上面三个参数或者通过循环一个host文件实现批量即可。 #!/bin/bash #yum安装expect #yum -y install expect #PWD_1 阅读全文
posted @ 2020-06-08 08:23 JonyQ 阅读(998) 评论(0) 推荐(0) 编辑
摘要: The script supports remote command execution, file upload and file download; the host can be a target or multiple hosts; the single host uses the - H 阅读全文
posted @ 2019-12-19 16:54 JonyQ 阅读(791) 评论(0) 推荐(0) 编辑
摘要: 通过yum安装mysql# yum install mariadb-server -y # systemctl start mariadb.service # systemctl enable mariadb.service # mysql 如何设置mysql root密码 # mysql_secure_installation #停止mysql并查看运行状态systemctl st... 阅读全文
posted @ 2017-06-10 16:06 JonyQ 阅读(953) 评论(0) 推荐(0) 编辑
摘要: shell 调整系统参数 阅读全文
posted @ 2017-06-09 09:50 JonyQ 阅读(602) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://www.calcprofit.com/blog/index.php/2010/10/11/jdbc%E8%BF%9E%E6%8E%A5%E6%8A%A5ora-12505%EF%BC%8Csid%E6%97%A0%E6%B3%95%E6%89%BE%E5%88%B0/ 用JDB 阅读全文
posted @ 2017-05-12 12:51 JonyQ 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 1.可以先查看一下含python-devel的包 yum search python | grep python-devel 2.64位安装python-devel.x86_64,32位安装python-devel.i686,我这里安装: sudo yum install python-devel. 阅读全文
posted @ 2017-05-03 19:10 JonyQ 阅读(1578) 评论(0) 推荐(0) 编辑
摘要: shell ping 阅读全文
posted @ 2017-04-20 11:53 JonyQ 阅读(983) 评论(0) 推荐(0) 编辑