Appearance
Installation
Manager returns error
If the sudo ./manager
command returns an error, you can simply re-run the command again. If there was just a temporary problem (like a broken internet connection) the installation will succeed.
If the manager
still returns an error, analyze the ouptut for error details. All manager
output is also available in a manager.log
file in the current directory.
Ansible Error
After running the manager, the error "ModuleNotFoundError: No module named 'ansible'"
is displayed almost immediately.
This is because the required ansible
software package is not installated correctly. To fix this problem, run the follwing commands in a terminal:
bash
sudo apt remove ansible
sudo pip3 install ansible==2.9.6
After the installation is complete, close and reopen the terminal. Then check if ansible
is installed correctly:
bash
ansible --version
# ansible 2.9.6
# config file = /etc/ansible/ansible.cfg
# configured module search path = ['/home/caresuite/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
# ansible python module location = /usr/lib/python3/dist-packages/ansible
# executable location = /usr/bin/ansible
# python version = 3.8.5 (default, Jul 28 2020, 12:59:40) [GCC 9.3.0]
If this is the case, run sudo ./manager
again to re-run the CareSuite installation.