Comment 22 for bug 1450291

Revision history for this message
Perry Merritt (perry-w-merritt) wrote :

Changing the logdir to log_dir did not fix the problem for me. I am getting a sqlite database created rather than inserting the tables into my mysql database.

My nova.conf is as follows:
[DEFAULT]
dhcpbridge_flagfile=/etc/nova/nova.conf
dhcpbridge=/usr/bin/nova-dhcpbridge
#log_dir=/var/log/nova
state_path=/var/lib/nova
lock_path=/var/lock/nova
force_dhcp_release=True
libvirt_use_virtio_for_bridges=True
ec2_private_dns_show_ip=True
api_paste_config=/etc/nova/api-paste.ini
enabled_apis=osapi_compute,metadata
connection = mysql+pymysql://nova:PASSWORD@controller/nova
auth_strategy = keystone
rpc_backend = rabbit
my_ip = 192.168.1.1
network_api_class = nova.network.neutronv2.api.API
security_group_api = neutron
linuxnet_interface_driver = nova.network.linux_net.NeutronLinuxBridgeInterfaceDriver
firewall_driver = nova.virt.firewall.NoopFirewallDriver
enabled_apis=osapi_compute,metadata
backend=mysql
connection_trace=True
connection_debug = 100

[oslo_messaging_rabbit]
rabbit_host = controller
rabbit_userid = stack
rabbit_password = PASSWORD

[keystone_authtoken]
auth_uri = http://controller:5000
auth_url = http://controller:35357
auth_plugin = password
project_domain_id = default
user_domain_id = default
project_name = service
username = nova
password = PASSWORD

[vnc]
vncserver_listen = $my_ip
vncserver_proxyclient_address = $my_ip

[glance]
host = controller

[oslo_concurrency]
lock_path = /var/lib/nova/tmp

Any help would be greatly appreciated. Thank you.