openstack team mailing list archive
-
openstack team
-
Mailing list archive
-
Message #03810
Re: nova-vncproxy configuration issue
Hmm, the _ is installed when nova is imported. I'm nots sure what would make it get missed. Is it possible you have an old version of nova installed in your path somewhere that doesn't have an __init__.py that does gettext.install?
from nova import flags and similar lines should be installing it.
As a workaround, you could do:
import gettext
gettext.install('nova',unicode=1)
but it would be good to figure out why that isn't being done at import.
Vish
On Aug 30, 2011, at 5:17 AM, Rasika Karunathilaka wrote:
> Hi Team,
> I tried configuring nova-vncproxy, but at
>
> /usr/bin/nova-vncproxy --vncproxy_wwwroot /home/localadmin/src/noVNC --flagfile=/etc/nova/nova.conf
>
> I am getting following error at /var/log/nova/nova-vncproxy.log
>
>
> 2011-08-30 17:39:10,698 CRITICAL nova [-] name '_' is not defined
> (nova): TRACE: Traceback (most recent call last):
> (nova): TRACE: File "/usr/bin/nova-vncproxy", line 84, in <module>
> (nova): TRACE: LOG.audit(_("Starting nova-vncproxy node (version %s)"),
> (nova): TRACE: NameError: name '_' is not defined
> (nova): TRACE:
>
> I included following entries on nova.conf, highly appreciate if you could help me to resolve this.
>
> --vnc_console_proxy_url=http://192.168.104.1:6080
> --vnc_enabled=True
> --vncproxy_host=192.168.104.1
> --vncproxy_url=http://192.168.104.1:6080
>
>
> Cheers!
> Rasika K.
> _______________________________________________
> Mailing list: https://launchpad.net/~openstack
> Post to : openstack@xxxxxxxxxxxxxxxxxxx
> Unsubscribe : https://launchpad.net/~openstack
> More help : https://help.launchpad.net/ListHelp
References