解决 Warning: failed to parse error message from AWS: :1:0: syntax error 问题
2011年12月6日 | 标签: openstack nova | 作者:vpsee
Warning: failed to parse error message from AWS:
# nova-manage service list Binary Host Zone Status State Updated_At nova-scheduler vpsee nova enabled :-) 2011-12-05 13:26:51 nova-volume vpsee nova enabled :-) 2011-12-05 13:26:49 nova-network vpsee nova enabled :-) 2011-12-05 13:26:51 nova-compute vpsee nova enabled :-) 2011-12-05 13:26:52 # euca-describe-availability-zones verbose Warning: failed to parse error message from AWS::1:0: syntax error None: None
修改 nova.conf 文件,在末尾明确加上 –use_deprecated_auth=true 这行(这个设置本来是默认的,以前版本的 OpenStack Nova 是不需要的),然后重启 nova 服务并重新生成 novacreds.zip,记得一定要 source novarc 哟:
# vi /etc/nova/nova.conf ... --use_deprecated_auth=true # restart libvirt-bin; restart nova-network; restart nova-compute; restart nova-api; restart nova-objectstore; restart nova-scheduler; restart nova-volume; restart glance-api; restart glance-registry # nova-manage project zipfile mycloud vpsee /home/vpsee/creds/novacreds.zip # cd /home/vpsee/creds # unzip novacreds.zip # chown -R vpsee:vpsee /home/vpsee/creds/ # source /home/vpsee/creds/novarc # euca-describe-availability-zones verbose AVAILABILITYZONE nova available AVAILABILITYZONE |- vpsee AVAILABILITYZONE | |- nova-scheduler enabled :-) 2011-12-05 13:32:44 AVAILABILITYZONE | |- nova-volume enabled :-) 2011-12-05 13:32:43 AVAILABILITYZONE | |- nova-network enabled :-) 2011-12-05 13:32:44 AVAILABILITYZONE | |- nova-compute enabled :-) 2011-12-05 13:32:47
再附带一句,OpenStack 正在飞速发展中,这样或那样的问题也许在新版本里就不存在了,以前没有的问题也可能第一次出现在新版本中。
目前来看,新版本后使用keystone是个大趋势
现在都需要通过keystone认证了,如果安装了keystone之后的话euca2ools就不能用了。
现在也比较少用euca工具了,估计以后euca工具可能会被Openstack自带的命令行取代。
python-novaclient也是个不错的命令行工具
我现在用的就是novaclient,正因为novaclient底层调用的是OpenStack API。
不过无论novaclient还是euca在使用了keystone的情况下都是需要设置环境变量。
而且novaclient设置的环境变量比euca的还要多。
如果想继续用euca工具可以直接设置下面3个环境变量就够了:
EC2_SECRET_KEY=<>
EC2_URL=<>
EC2_ACCESS_KEY=<>
你好:
照著這篇來改,在Diablo下似乎還是沒有解決。可否再提示一下可能有哪邊的環節出錯呢