/usr/bin/nova-rootwrap:Unauthorized command (no filtermatched)
rootwarp添加系统命令service openstack-nova-network restart报错,解决办法 a)报错问题: a)/usr/bin/nova-rootwrap:Unauthorized command: service openstack-nova-network restart (no filtermatched) b)解决办法: i.Vim nova/openstack/common/rootwrap/filters.py 1.classRsNetFilter(CommandFilter): 2. 3. def match(self, userargs): 4. # Compute manager restart network s 5. if userargs[0] == 'service': 6. if userargs[1] =='openstack-nova-network': 7. return (userargs[2] in('restart', 'start', 'stop')) 8. else...