I installed OpenStack on an ec2 instance running Ubuntu 14.04 LTS via devstack. When I login into the dashboard I get an error "Error: Unable to retrieve usage information" When I installed it and logged in for the first time, everything was working fine. But after I stopped my ec2 instance and restarted, I am facing this problem. What might be causing this error? I used the stable juno version of devstack. And the AMI for my ec2 instance is Ubuntu Server 14.04 LTS (HVM), SSD Volume Type. Does restarting the instance might have caused some problem?
相关问题
- How to generate 12 digit unique number in redshift
- Use awslogs with kubernetes 'natively'
- JQ: Select when attribute value exists in a bash a
- Assume/switch role in aws toolkit for eclipse 2.0
- 'no SavedModel bundles found!' on tensorfl
相关文章
- Right way to deploy Rails + Puma + Postgres app to
- how many objects are returned by aws s3api list-ob
- AWS S3 in rails - how to set the s3_signature_vers
- Passthrough input to output in AWS Step Functions
- I cannot locate production log files on Elastic Be
- ImportError: cannot import name 'joblib' f
- Static IP for Auto Scale in AWS
- Step function exceeding the maximum number of char
In addition to [akshay1188] answer, you can re-stack your system. Sometimes,
rejoin-stack
does not work as expected. In that case, you canunstack (unstack.sh)
it andstack (stack.sh)
again. *This may take much time.Another observation of mine says this can be an issue with IP address of the system. Try to keep IP address same after reboot.
cd to devstack and execute ./rejoin-stack That solved it. I was trying to reboot nova and other services individually. But since the installation was done using devstack, you need to run the ./rejoin-stack script.