-
Latest Posts
- Install newest gcc on CentOS 7
- How to disable IPv6 on CentOS 7
- How to connect a Windows Machine with Ansible via Winrm
- How to Stop/Start Tomcat with Ansible
- Installing Docker and Docker-Compose on CentOS with Ansible
- SSH Login Without Password
- Configure Tomcat as a System Service in CentOS
- How to install Tomcat 11 in CentOS 7/8
- Installing ansible with pip
- Installing python3.9 and pip on CentOS 7
- How to install Oracle Database 23c Developer Edition on Docker
- Welcome!
-
Tag Cloud
ansible centos CentOS 7 credentials disk usage ansible docker docker-compose gcc install IPv6 linux oarcle 23c oracle 23c developer edition oracle database pip pip3.9 playbook python python3.9 ssh ssh-keygen stop start service system service tomcat tomcat11 urllib3 windows management with ansible windows winrm winrm without password
Archives
Category Archives: Ansible
How to connect a Windows Machine with Ansible via Winrm
I assume that you have already installed ansible. If not, please check my blog. We have a couple of things to do onĀ both the ansible server site and the remote Windows machine. Let’s start with Windows machine. With most version of Windows, Winrm ships in the box but not turned on by default. There Read More
Posted in Ansible
Tagged ansible, credentials, disk usage ansible, urllib3, windows management with ansible, windows winrm, winrm
Leave a comment
How to Stop/Start Tomcat with Ansible
, I assume that you have already installed Tomcat, Tomcat System Service, and Ansible. If you have not, please check my blog for instructions. First we need a inventory file. Let’s create /etc/ansible/hosts file copying foloowing lines. You need to use your tomcat sever ip and user information. [tomcat] 192.168.1.160 ansible_connection=ssh ansible_ssh_user=tomcat ansible_ssh_pass=tomcat Now we Read More
Installing ansible with pip
First, we need to ensure that python3.9 and pip are available. if not available, please read my install pyhon3.9 post below. if so, pip is available proceed installation step but please note that do not install ansible on root user. pip3.9 install ansible Verifying ansible installation. ansible –version As you can see, the Read More