Zhi-Wei Lu wrote: > /usr/bin/nova-rootwrap: Unauthorized command: > CONFIG_FILE=[/usr/share/nova/nova-dist.conf, /etc/nova/nova.conf] > NETWORK_ID=3 dnsmasq --strict-order --bind-interfaces --conf-file= > --pid-file=/var/lib/nova/networks/nova-br100.pid > --listen-address=192.168.165.1 --except-interface=lo > --dhcp-range=set:demo-net,192.168.165.2,static,255.255.255.0,120s > --dhcp-lease-max=256 > --dhcp-hostsfile=/var/lib/nova/networks/nova-br100.conf > --dhcp-script=/usr/bin/nova-dhcpbridge --leasefile-ro --domain=novalocal > exec (no filter matched)
I think the error comes from the CONFIG_FILE value (should just be the name of a file ?) That said, it's probably simpler to just run that command under sudo: sudo CONFIG_FILE=/etc/nova/nova.conf NETWORK_ID=3 dnsmasq --strict-order ... rather than use "su" to run as "nova" a command that would let you escalate back to root :) Hope this helps, -- Thierry Carrez (ttx) _______________________________________________ Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack Post to : [email protected] Unsubscribe : http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack
