通过常规步骤完成CloudStack4.2的安装,数据库初始化,模板初始化之后,通过cloudstack-setup-management 启动cloudstack-management服务。
等待片刻之后,打开管理节点的URL输入用户名:admin 密码:password,一直报错:用户名或密码错误
查看日志:
wKiom1LilF6xXncPAAcI5NmFOGE056.jpg
wKioL1LilDuzPnWQAAZSuSJzC9o451.jpg
尝试过重新安装cloudstack以及重新初始化databases以及进行cloudstack-setup-management初始化操作,都无效果。
登录cloud库,查找user表,发现无admin用户,说明之前的异常已经影响了整个软件包的正常工作,那么我们看看日志到底说了啥?
根据以上异常,发现报了个心跳的错误,跟multicast有关。
由于前期从来未发生这样的问题,于是考虑是不是跟网络配置有关,这次的环境是把所有主机节点在一个交换机上面直接配置操作的,于是也就没有配置网关。
1
2
3
4
5
6
7
8
9
10
11
12
[root@CloudManager ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE="eth0"
BOOTPROTO="none"
ONBOOT="yes"
TYPE="Ethernet"
IPADDR=10.0.0.150
NETMASK=255.255.255.0
[root@CloudManager ~]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.0.0.0 * 255.255.255.0 U 0 0 0 eth0
link-local * 255.255.0.0 U 1002 0 0 eth0
那就给GATEWAY设置一个IP地址吧
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[root@CloudManager ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE="eth0"
BOOTPROTO="none"
ONBOOT="yes"
TYPE="Ethernet"
IPADDR=10.0.0.150
NETMASK=255.255.255.0
GATEWAY=10.0.0.254
[root@CloudManager ~]# nohup /etc/init.d/network restart
nohup: ignoring input and appending output to `nohup.out'
[root@CloudManager ~]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.0.0.0 * 255.255.255.0 U 0 0 0 eth0
link-local * 255.255.0.0 U 1002 0 0 eth0
default 10.0.0.254 0.0.0.0 UG 0 0 0 eth0
最终再进行cloudstack的初始化操作:
1
2
3
4
5
6
[root@CloudManager ~]# cloudstack-setup-management
Starting to configure CloudStack Management Server:
Configure sudoers ... [OK]
Configure Firewall ... [OK]
Configure CloudStack Management Server ...[OK]
CloudStack Management Server setup is Done!
然后,问题解决!!
阅读(2087) | 评论(0) | 转发(0) |