-list storage(pool)
virsh pool-list
-list volume
virsh vol-list __poolName__
-list vm
# virsh list --all
good one: https://serverfault.com/questions/434064/correct-way-to-move-kvm-vm/434070#434070
-list storage(pool)
virsh pool-list
-list volume
virsh vol-list __poolName__
-list vm
# virsh list --all
good one: https://serverfault.com/questions/434064/correct-way-to-move-kvm-vm/434070#434070
1- to list available package:
pip install thepackage==randomwords
(attemp to install unexist package, will return error, and pip will display available package)
2- install certain version of package
pip install libvirt-python==5.10.0
Laravel has capability to send task/job to worker. Means when the request coming from client/browser, certain task/code can be pass to be process later by worker. This will enable laravel to complete the http response faster, without need to wait for that certain code to finish process.
In laravel, this can be done by creating a class that implements ShoudQueue.
class ProcessPodcast implements ShouldQueuephp artisan queue:retry all$ curl -H "host: www.google.com.au" www.google.co.uk
You have installed your custom CA in your client machine. Using curl, everthing is fine(refer here).
But since your python script use virtenv, your script cannot see the custom CA.
This is because python virtualenv looking the certifcates in different place than the normal python
$ python -c "import requests; print ( requests.certs.where() )"
/etc/ssl/certs/ca-certificates.crt
$ (.venv) python -c "import requests; print (requests.certs.where())"
.../.venv/lib/python3.6/site-packages/certifi-2020.6.20-py3.6.egg/certifi/cacert.pemSolution, is to import the custom CA to the virtual Environtment.
openssl x509 -in $specific_ca.crt -text >> $virtualenv/lib/python3.6/site-packages/certifi-2020.6.20-py3.6.egg/certifi/cacert.pemref:
openssl x509 -outform der -in CERTIFICATE.pem -out CERTIFICATE.crt