For those of you wanting to install Ansible on your Mac, here is a step by step quick install:
My little Information Technology blog
For those of you wanting to install Ansible on your Mac, here is a step by step quick install:
There are a couple items that can be easily missed in the Documentation for upgrading the VCSA in version 6. The documentation is located HERE.
Here is a quick step by step to help summarize:
For those that do not know how to string multiple commands together, here is a quick reference for you:
[user@server foobar]$ command1 ; command2
The command is executed in the order it was written, but command 2 is executed even if there was an error in command 1.
[user@server foobar]$ command1 && command2
The command command2 is executed only if command1 was successful, no errors.
Assuming you already have an ETH0 configured and working, log in at the console and configure it just like a normal RHEL/CentOS nic configuration:
Run:
nano -w /etc/proftpd.conf
<Global>
PassivePorts 30000 30030
</Global>
Run:
service proftpd restart
nano -w /etc/sysconfig/iptables-config
IPTABLES_MODULES="nf_conntrack_ftp"
Run:
service iptables restart
SPECIAL THANKS TO: cPanel Forums