search
HomeComputer TutorialsComputer KnowledgeHow to solve the problem of slow execution speed of ansible

Received feedback from the project that the customer encountered difficulties when deploying the product using the tools we provided, and encountered problems in the host addition step, which caused the implementation team to be unable to continue the work, so they asked us for help.

Environmental information: kylin10

Architecture: arm

How to solve the problem of slow execution speed of ansible

First signs

During the system deployment process, we used ansible scripts for batch operations on hosts. Recently, I encountered a problem with the execution process being stuck. It was initially suspected that ansible was blocked during execution. To verify this, I have sent a command to the field for testing.

localhost$ date
2024年02月19日星期 17:30:41 CST 
localhost$ ansible all -i "192.168.2.84, -m shell -a 'date' --l become --become-method=sudo --become-user=root -u test
192.168.2.84 CHANGED rc=0 >> 
2024年02月19日星期 17:33:34 CST 

Sure enough, a simple ansible command took more than 2 minutes to execute on the environment before returning the result. The cause of the problem lies here, and we have a general direction.

Ansible still relies on SSH remote connection during actual execution. We have encountered slow SSH connection speed before. Preliminary speculation may be that the execution return speed is slow due to the slow SSH connection speed.

Check ssh parameters, check /etc/ssh/sshd_config configuration

GSSAPIAuthentication no #关闭SERVER上的GSS认证  

In Linux, reverse DNS resolution of SSH is enabled by default. This consumes a lot of time, so it needs to be turned off. In the configuration file, although UseDNS yes is commented, the default switch is yes

UseDNS=no  #关闭SERVER上DNS反向解析 

It was found that the two ssh parameter configurations on the project were consistent with the above, and the ssh login to the peer host was manually tested, and the speed was very fast

problem analysis

I have no clue, I can only use the Linux strace command to trace the system call

How to solve the problem of slow execution speed of ansible

Check the strace log and find that there are a large number of select waits, which should be blocked for a long time when performing an operation.

Debugging using ansible

ansible all -i "192.168.2.84, -m shell -a 'date' --l become --become-method=sudo --become-user=root -u test -vvv

Add -vvv after the command to see the detailed execution process

How to solve the problem of slow execution speed of ansible

Solve the problem

From the debug information, we can see the error "mux_client_read_packet: read header failed: Broken pipe". When executing the script, we can see that python-related commands are being executed. Ansible depends on python. Is it related to the python version?

Checking the information on the Internet said that there are compatibility issues between ansible and python.

How to solve the problem of slow execution speed of ansible

So check the python version. You can see that the default version of python is python2, but there is also python3 on the system. Try to modify the soft link to python3.7 for verification

How to solve the problem of slow execution speed of ansible

Execute the ansible command again

How to solve the problem of slow execution speed of ansible

The execution time is 1.3s. It seems that the compatibility of ansible and python versions caused this problem.

The above is the detailed content of How to solve the problem of slow execution speed of ansible. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:每日运维. If there is any infringement, please contact admin@php.cn delete
Ansible工作原理详解Ansible工作原理详解Feb 18, 2024 pm 05:40 PM

Ansible工作原理从上面的图上可以了解到:管理端支持local、ssh、zeromq三种方式连接被管理端,默认使用基于ssh的连接,这部分对应上面架构图中的连接模块;可以按应用类型等方式进行HostInventory(主机清单)分类,管理节点通过各类模块实现相应的操作,单个模块,单条命令的批量执行,我们可以称之为ad-hoc;管理节点可以通过playbooks实现多个task的集合实现一类功能,如web服务的安装部署、数据库服务器的批量备份等。playbooks我们可以简单的理解为,系统通过

ansible执行速度慢怎么解决ansible执行速度慢怎么解决Mar 05, 2024 pm 05:34 PM

收到项目反馈,客户在使用我们提供的工具部署产品时遇到了困难,在主机添加步骤上遇到了问题,导致实施团队无法继续推进工作,因此向我们寻求帮助。环境信息:kylin10架构:arm初见端倪在系统部署过程中,针对主机的批量操作,我们开发时采用了ansible剧本。最近遇到了执行过程卡顿的问题,初步怀疑是ansible执行时出现了阻塞。为了验证这一点,我已经发送了一条命令给现场进行测试。localhost$date2024年02月19日星期17:30:41CSTlocalhost$ansibleall-i

Ansible playbook变量(变量基本用法)Ansible playbook变量(变量基本用法)Feb 18, 2024 pm 04:45 PM

Ansible是一种开源的自动化配置管理和部署工具,可以帮助管理员在多台服务器上自动执行任务。在Ansible中,Playbook是用于描述自动化任务的YAML文件。使用变量(variables)是Playbook功能的一个重要部分,它可以让你的Playbook更灵活、可重用和易于维护。以下是AnsiblePlaybook中变量的一些基本用法:定义变量:可以在Playbook、inventory文件、vars文件或者使用-e参数在命令行中定义变量。例子:在Playbook中定义变量:----na

探秘Linux远程管理神器:五款实用工具推荐探秘Linux远程管理神器:五款实用工具推荐Feb 23, 2024 pm 01:00 PM

Linux作为一种强大的操作系统,其远程管理工具被广泛应用于服务器管理、网络监控等方面。在日常工作中,我们经常需要使用一些专门的工具来远程管理Linux服务器。本文将介绍五款实用的Linux远程管理工具,并提供具体的代码示例来演示它们的用法。1.SSHSSH(SecureShell)是一种加密网络协议,用于安全地远程登录和执行命令。通过SSH,用户可以在

Ansible Ad-Hoc(点对点模式)Ansible Ad-Hoc(点对点模式)Feb 18, 2024 pm 04:48 PM

官方文档:https://docs.ansible.com/ansible/latest/command_guide/intro_adhoc.html简介Ad-hoc命令是一种临时输入并执行的命令,通常用于测试和调试。它们不需要永久保存,简单来说,ad-hoc就是“即时命令”。常用模块1、command模块(默认模块)默认模块,没有shell强大,基本上shell模块都可以支持command模块的功能。【1】帮助ansible-doccommand#推荐使用下面这个ansible-doccomm

Linux远程管理利器:推荐五款精选工具Linux远程管理利器:推荐五款精选工具Feb 24, 2024 pm 11:18 PM

你所不知道的Linux远程管理工具:精选五款推荐在现代的信息技术领域中,Linux操作系统已经成为了许多企业和个人使用的首选操作系统之一。对于Linux系统管理员来说,远程管理工具是非常重要的,可以帮助他们迅速、高效地监控和管理远程服务器。本文将介绍五款你可能不知道的Linux远程管理工具,并提供具体的代码示例,希望对你在Linux远程管理中有所帮助。tmu

Java 如何与 Ansible 自动运维平台对接?Java 如何与 Ansible 自动运维平台对接?Apr 20, 2023 pm 04:40 PM

Java对接ansible自动运维化平台实现文件采集分发此次对接主要为以下两个功能:文件采集(对文件进行批量操作,包括批量从多台主机中采集共性文件如日志文件)文件分发(对文件进行批量操作,包括批量从多台主机中分发共性文件如日志文件)场景说明及ansibleyum安装因ansible没有Windows的安装包,所以为了方便测试,搭建了一套Linux环境进行后续工作。此次采用yum方式安装,在采用yum方式安装Ansible,首先安装EPEL源。yuminstall-yhttp://dl.fedor

如何在Linux上配置自动化部署工具(如Ansible)如何在Linux上配置自动化部署工具(如Ansible)Jul 07, 2023 pm 05:37 PM

如何在Linux上配置自动化部署工具(如Ansible)引言:在软件开发和运维过程中,经常会遇到需要将应用程序部署到多台服务器上的情况。手动部署无疑效率低下且容易出错,因此配置一个自动化部署工具是必不可少的。本文将介绍如何在Linux上配置一个常用的自动化部署工具——Ansible,以实现快速、可靠的应用程序部署。一、安装Ansible打开终端,使用以下命令

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft