Some issue on Havana to IceHouse migration document
Hi, I'm following this document for migration from Havana to IceHouse. The first question is related to this code
cd /etc/init.d
for service in openstack-nova-*; do service $service start; done
It will start all nova service, even if before the upgrade not all of them was running (like in my case, where only some of them have been started). Could it be fixed ?
Second question is about this:
cd /etc/init.d
for service in openstack-neutron-*; do service $service stop; done
there is not any openstack-neutron* in the /etc/init.d directory in the Havana release (got from RDO repositories). There are neutron-* instead.
[root@controller-01 ~]# ls /etc/init.d/neutron-*
/etc/init.d/neutron-dhcp-agent /etc/init.d/neutron-lbaas-agent /etc/init.d/neutron-openvswitch-agent /etc/init.d/neutron-server
/etc/init.d/neutron-l3-agent /etc/init.d/neutron-metadata-agent /etc/init.d/neutron-ovs-cleanup
Third issue relates to the neutron's DB schema update:
neutron-manage db_sync
that command doesn't exist in Havana nor in IceHouse. The command neutron-db-manage exists instead, and its syntax is totally different.
Can someone clarify or fix the documentation ?
thanks a lot,
Alvise