New: ansibleAll contenthive-129948hive-196917krsteemhive-183959zzanhive-180932photographyhive-166405hive-188619hive-185836uncommonlabhive-150122bitcoinhive-183397hive-144064hive-101145hive-124908hive-139150hive-145157lifehive-103599hive-109690krsuccesshive-181136TrendingNewHotLikersbeco132 (61)in dlike • 5 years agoreddit: the front page of the internetFinally somebody did it - running sensible on windows. Not quite native but still usefull Source of shared Linkzohaib336 (66)in steemhunt • 6 years agoAnsible - automates cloud provisioning, configurationAnsible automates cloud provisioning, configuration Screenshots View Image Hunter's comment Ansible is a radically simple IT automation engine that automates cloud…run.vince.run (62)in ansible • 6 years agoOur Top 5 Ansible Books For 2019This week has told us that Ansible has taken over as the most used configuration management tool, especially in the cloud. So with the year into full swing if you're looking to upgrade your…beco132 (61)in dlike • 6 years agoDeep Dive on cli_command for Network AutomationAnsible is a great automation tool and with these new agnostic modules it is getting even more powerful. The great benefit is that now sysadmins can manage different network devices without having…run.vince.run (62)in ansible • 6 years agoNew Years, New Book, Ansible AnswersImage courtesy of leanpub.com This has almost been 12 months in the making, but on the 20th of December 2018, I released my third book, Ansible Answers . As Ansible becomes one of the most…run.vince.run (62)in running • 6 years agoMy 2018 Year In ReviewHeaps of cool images in this post, even if you can't be bothered reading everything With 2018 almost over, its time for me to reflect on the year I've had and see how far I've come. It feels…juanmanavella (25)in ansible • 6 years ago[TIP] Como quitar en Debian el warning de Ansible: [WARNING]: Optional dependency 'cryptography' raised an exception, falling back to 'Crypto'.Otro títlulo sugerido: Para la posteridad y para el SEO. Acá como hice para sacar el mensaje de advertencia de Ansible que ya me tenía las bolas por el piso: [WARNING]: Optional dependency…zooraw (25)in ubuntu • 6 years agoAnsible user add for RHEL and UbuntuThis is a quick ansible script to add a user to either RHEL or Ubuntu and even hide said user from the gui login if you want. A customer needed this to limit the users posted on the login page when…mattboston (25)in busy • 6 years agoAnsible vs Puppet vs Chef (and SaltStack)I'm redoing my home config management setup to control my home network, currently I'm using Puppet. Came across this discussion: Ansible vs Puppet vs Chef (and SaltStack). I've used Salt and Ansible…brian7196 (25)in ansible • 6 years ago#2. Ansible 의 이해 (Ansible 이란?)Ansible 소개 Ansible 이란 python 으로 구현된 오픈소스 IT 자동화 도구 서버 설정, SW 배포, 복수의 호스트의 자동화 구성관리 도구 .yaml (발음 상 '얌') 스크립트 파일을 만들어 사용 Ansible 특징 Agent-less 클라이언트 프로그램을 호스트에 설치할 필요가 없음…countelmsley (25)in linux • 6 years agoInstalling Fail2ban with an Ansible Role on Ubuntu 18.04 (Bionic Beaver)Preamble The Ansible role in question comes from Ansible Galaxy. It's linked here below, where you can read about it more if needs be: Here's my method for making use of the role, which is…countelmsley (25)in linux • 6 years agoInstalling Fail2ban with Ansible on Ubuntu 18.04 (Bionic Beaver)Preamble This is a very short post covering a rudimentary Ansible playbook (if you can even call it one) that contains tasks for installing Fail2ban in a straightforward manner. It's intended as a…jpory (25)in ansible • 6 years ago获取 Ansible 帮助信息ansible-doc 查找对应的模块帮助 ansible-doc-l 查看系统支持的模块 ansible-doc -s 模块名称 查看模块的描述和使用示例jpory (25)in ansible • 6 years agoansible 批量添加/删除用户user 模块添加用户 ansible 192.168.5.212 -m user -a "name=www shell=/bin/bash createhome=yes" command模块删除用户及家目录 ansible 192.168.5.212 -m command -a "userdel www -r"blockmatrix (45)in eos • 7 years agoAutomate an EOS producer node deployment with AnsibleIntro In my previous post, we covered setting up a fresh EOS node step by step, and hooking it into a testnet. It's a great way to learn what's involved by setting up a server from scratch, but…haaku (31)in raspberrypi • 7 years agoAnsible auf und für den Raspberry Pi einrichten! TutorialHallo Welt! Da ich selbst lange nach einem Tutorial gesucht habe, wie man Ansible auf und für Raspberry Pis aufsetzt und ich nichts gefunden habe, hier ein kurzes und knackiges Tutorial. Getestet…dharmanard (25)in devops • 7 years agoDevOps TrainingThis blog is here as a resource for aspiring DevOps Developers, Engineers & Architects to learn this most interesting & lucrative set of skills and methodology.dickturpin (59)in raspberrypi • 7 years agoAnsible update clusterWell, it works but I'm sure the playbook.yml could be better?dillagr (57)in free • 7 years ago[FREE!] Ansible Automation Quick Start GuideIn my opinion ansible is a tool every system administrator should learn. It doesn't replace (and will not replace) the administration concepts but it will make an administrator's life easier. It is…ningbufan (25)in ansible • 7 years ago使用ansible批量格式化并挂载磁盘初始化安装elasticsearch这类集群系统的时候,往往需要批量操作大量的磁盘。可以通过ansible快速完成这类工作。 假设每台设备有10块盘(sdxxx),要挂载到/dataxxx,elasticsearch数据目录为/dataxxx/es,首先将变量写入vars/main.yaml, ---