Hello,
I chose the openstack method to setup the faceswap cloudlet. The openstack installation was successful since I was able to access the dashboard and everything. However, when it came to the part where I had to launch the instance from the faceswap server image given on the website, I encountered the "no valid host was found" error. Looking around the internet, I was able to make sure that there is no problem with the hardware (by running the virt-host-validate command). I also made sure that all of the required services were running correctly. The image format was correct too. Since this is my first instance, enough resources were available too. I am not sure where exactly the problem might be and for some reason, there were no log files in the folders either which could give me some hints as to what part of openstack is having problems while launching my instance. I was wondering if anyone has faced a similar issue or if anyone has any ideas that could guide me towards solving this problem?
On a side note, this is how I installed openstack:
* sudo useradd -s /bin/bash -d /opt/stack -m stack
* echo "stack ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/stack
* sudo su - stack
* sudo apt-get update
* sudo apt-get install -y git
* git clone http://github.com/openstack-dev/devstack
* cd devstack
* git checkout stable/pike
* sudo nano local.conf
[[local|localrc]]
ADMINPASSWORD=secret_
DATABASEPASSWORD=secret_
RABBITPASSWORD=secret_
SERVICEPASSWORD=secret_
HOSTIP=x.x.x.x (my IP address entered)_
RECLONE=yes
- Ran the ./stack.sh command for the installing to begin