There are two options that you can add to the [defaults] section of the ansible.cfg file that will control whether or not .retry files are created and where they are created. [defaults] ... retry_files_enabled = True # Create them - the default retry…
Creating file-per-table tablespaces outside the data directory 一. Data Directory 1.应对情况 当数据库所在空间不足的时候,通过新增一块磁盘,如何将新建的表放到新建磁盘,就可以用到MySQL的Data Directory 2.使用Data Directory条件 1)InnoDB引擎 2)开启innodb_file_per_table或者在建表时加上此参数 二.操作测试 1.查看数据库版本与表空间目录 2.操作系统新…
翻译qmake文档 目录   原英文文档:http://qt-project.org/doc/qt-5/qmake-project-files.html   创建项目文件 项目文件包含qmake构建你的应用程序,库文件,或插件需要的所有信息.通常,你会在项目文件里使用一系列的声明指定资源,但是对简单程序构造的支持,允许你为不同的平台或环境描述不同的构建过程. 项目文件元素      qmake使用的项目文件格式可以支持简单和复杂的构建系统使用.简的项目文件使用简单的声明样式,定义标准的变量,用于…
XlsxWriter 是用来写Excel2007版本以上的xlsx文件的Python模块. XlsxWriter 在供选择的可以写Excel的Python模块中有自己的优缺点. #--------------------------------------------------------------------------------------- 优点: 1. 它支持相比其他模块而言更多的Excel 特征: 2. 它生成的Excel文件有很高的保真度,大多数情况下生成的文件和Excel生成…
以下所有内容翻译至: https://xlsxwriter.readthedocs.io/ #------------------------------------------------------------------------------------------------------------------------------- XlsxWriter 是一个用来创建Excel XLSX 文件的Python 模块. demo: demo 代码: #################…
目录 ansible 配置文件设置 一.ansible configuration settings 二.ansible 配置文件查找顺序(从上到下,依次查找) 三.附录ansible配置参数 ansible 配置文件设置 一.ansible configuration settings ansible支持多种形式,对它进行配置,其中包括命令行配置.配置文件配置(ansible.cfg).直接修改linux环境变量.以及playbook中使用变量去修改ansible配置.总共4种表现形式. 二.…
Total Commander 8.52 Beta 1http://www.ghisler.com/852_b1.php 10.08.15 Release Total Commander 8.52 beta 1 (32/64) 05.08.15 Fixed: Windows 10: Loading drive buttonbar hanging on some devices (e.g. Surface Pro 3) when SD-Card was in internal card reade…
https://developer.apple.com/library/mac/documentation/OpenSource/Conceptual/ShellScripting/shell_scripts/shell_scripts.html Writing a shell script is like riding a bike. You fall off and scrape your knees a lot at first. With a bit more experience, y…
ansbile安装: # ansible在CentOS7中需要安装epel仓库 yum install -y epel-release yum install -y ansible 安装有好几种方法,yum安装是最简单的,安装ansible不是重点. 我的版本如下: [root@szwpldb1081 mysqltools]# ansible --version ansible config file = /etc/ansible/ansible.cfg configured module se…
一.模块列表 1.setup 2.ping 3.file 4.copy 5.command 6.shell 7.script 8.cron 9.yum 10.service 11.group 12.user 13.stat 14.mount 15.fetch 16.synchronize 17.get_url 18.hostname 19.wait_for 二.模块示例 1.setup 功能:搜集系统信息 #通过命令获取所有的系统信息,搜集主机的所有系统信息 # ansible -i /etc/…