Last active
February 28, 2022 17:56
-
-
Save cloudybdone/16c890f871ee2bea8a528e9cb69805d7 to your computer and use it in GitHub Desktop.
Install Ansible+Puppet+Vagrant on Ubuntu Box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| If you need any help related to Install Ansible+Puppet+Vagrant tools on Ubuntu Box contact with me: | |
| Telegram: https://t.me/Cloudybdone | |
| WhatsApp: https://wa.link/3j794g | |
| Skype: https://join.skype.com/invite/vLFaKHx... | |
| Email: cloudybdone@gmail.com | |
| Linkedin: https://www.linkedin.com/in/cloudybdone/ | |
| Facebook: https://www.facebook.com/cloudybdone/ | |
| About Me: https://about.me/cloudybdone | |
| YouTube PlayList: https://www.youtube.com/watch?v=qO3dBXiw11U&list=PLiveDaEySXe9193hK7qeZojatvWwLi_-j | |
| Install Ansible>> | |
| sudo apt update | |
| sudo apt install -y software... | |
| sudo apt update | |
| sudo apt install -y ansible | |
| ansible --version | |
| Install Puppet>> | |
| sudo apt-get update -y | |
| sudo nano /etc/hosts | |
| wget https://apt.puppetlabs.com/.... | |
| sudo dpkg -i puppet6... | |
| sudo apt-get update -y | |
| sudo apt-get install.... | |
| sudo nano /etc/default/puppetserver | |
| JAVA_ARGS="-Xms1g -Xmx1g -Djruby.logger.class=com.puppetlabs.jruby_utils.jruby.Slf4jLogger" | |
| sudo systemctl start puppetserver | |
| sudo systemctl status puppetserver | |
| Install Vagrant>> | |
| sudo apt update | |
| sudo apt install virtualbox | |
| wget https://releases.hashicorp.com/vagrant/2.2.14/... | |
| sudo apt install ./vagrant_2.2.14_x86_64.deb | |
| vagrant -v |
cloudybdone
commented
Feb 28, 2022
Author

Author
Author
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


