欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

CloudStack 安装及使用过程中常见问题汇总

程序员文章站 2023-11-19 13:45:16
cloudstack 安装及使用过程中常见问题汇总           ...

cloudstack 安装及使用过程中常见问题汇总

            在做工程项目中对cloudstack 安装及使用过程中常见的几个问题及如何解决做一个总结。

   1、windows xp虚拟机内部重启不能正确获取ip,windows xp iso建立vm,重启vm无法正确获取ip地址,原因是没有加入域,可以通过修改注册表来解决此问题。设置组策略 计算机配置--管理模板--网络--dns客户端里的dns后缀搜索列表,设置为已启动,后缀值为cs1group.internal

       windows 7的虚拟机,还需要设置组策略计算机配置--管理模板--网络--dns客户端里的连接特定的dns后缀,设置为已启动,后缀值为cs1group.internal

       2、不能下载模板,有几个问题需要确认:

       如果是系统模板,可能是网络不通。在cloudstack management上wget一下相应的url,看是否能够下载,不能下载的话,先解决网络问题。

       如果是iso或者以前的自制模板,则可能是server不对。需要确认:

       1),看看浏览器是否能够下载模板的url。如果不能下载,请解决下载服务器的问题(启动httpd,设置iso配置),然后重启 ssvm(secondary storage vm)。
       2),修改secstorage.allowed.internal.sites(10.127.0.1/24,根据实际环境配置), 然后重启 ssvm;

       3、如果primary和secondary放在系统硬盘,容易导致系统盘空间不足而影响系统运行。可以通过如下方法修改放到其他硬盘。

       1)、service cloud-management stop

       2)、修改primary文件夹存放硬盘:先mv primary下所有文件到另外的目录,然后mount newdisk primary,然后再将文件mv到primary。这样就不会占用系统盘的硬盘。(secondary目录同)

       3)、service cloud-management start

       4、给卷附加磁盘时出现错误

       failed to attach volume: disk3 to vm: cd0e453b-af53-4904-b7d7-54091ee83791; you attempted an operation that requires pv drivers to be installed on the vm. please install them by inserting xen-pv-drv.iso

       关闭vm之后重新附加磁盘,则没有问题.

       5、增加不了host,到csmt主机上ssh host,如果不行,解决相关问题后能够ssh后就可以增加host了
ssh连接错误,
如下:

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@  warning: remote host identification has changed!   @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
it is possible that someone is doing something nasty!
someone could be eavesdropping on you right now (man-in-the-middle attack)!
it is also possible that the rsa host key has just been changed.
the fingerprint for the rsa key sent by the remote host is
d0:5b:18:96:7c:ee:af:af:a2:6b:a2:02:0a:8c:cd:40.
please contact your system administrator.
add correct host key in /home/opzoon/.ssh/known_hosts to get rid of this message.
offending key in /home/opzoon/.ssh/known_hosts:2
rsa host key for 10.127.0.130 has changed and you have requested strict checking.
host key verification failed.

       原因:密钥发生错误

       解决:vi ~/.ssh/known_hosts,删除host对应的密钥

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!