From bf5d8455dff85bfc0b8f22d9171fa22a697cb4cf Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Fri, 20 Mar 2015 14:29:32 +0000 Subject: Enable nova serial console This enables serial console access to local nodes from the host machine by running `novaconsole $VM_NAME` after it has been installed by running pip install git+http://github.com/larsks/novaconsole.git --- openstack/etc/nova/nova.conf | 8 ++++++++ .../etc/systemd/system/openstack-nova-serialproxy.service | 11 +++++++++++ openstack/manifest | 1 + openstack/usr/share/openstack/openstack-nova-setup | 4 ++-- 4 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 openstack/etc/systemd/system/openstack-nova-serialproxy.service diff --git a/openstack/etc/nova/nova.conf b/openstack/etc/nova/nova.conf index 30f265aa..ca009273 100644 --- a/openstack/etc/nova/nova.conf +++ b/openstack/etc/nova/nova.conf @@ -634,3 +634,11 @@ allow_resize_to_same_host=True # Actual testing hardware does not support hardware acceleration # so in this step we will configure libvirt to use qemu instead of KVM virt_type=qemu + +################## +# SERIAL CONSOLE # +################## +# Enable serial console proxy for serial console access from the host only +[serial_console] +serialproxy_host=127.0.0.1 +enabled=true diff --git a/openstack/etc/systemd/system/openstack-nova-serialproxy.service b/openstack/etc/systemd/system/openstack-nova-serialproxy.service new file mode 100644 index 00000000..2557dc2b --- /dev/null +++ b/openstack/etc/systemd/system/openstack-nova-serialproxy.service @@ -0,0 +1,11 @@ +[Unit] +Description=OpenStack Nova Serial Proxy +After=syslog.target network.target + +[Service] +Type=simple +User=nova +ExecStart=/usr/bin/nova-serialproxy --config-file /etc/nova/nova.conf + +[Install] +WantedBy=multi-user.target diff --git a/openstack/manifest b/openstack/manifest index 691b2343..76e989d8 100644 --- a/openstack/manifest +++ b/openstack/manifest @@ -47,6 +47,7 @@ 0100644 0 0 /etc/systemd/system/openstack-nova-scheduler.service 0100644 0 0 /etc/systemd/system/openstack-nova-consoleauth.service 0100644 0 0 /etc/systemd/system/openstack-nova-novncproxy.service +0100644 0 0 /etc/systemd/system/openstack-nova-serialproxy.service 0100644 0 0 /etc/systemd/system/openstack-nova-cert.service 0100644 0 0 /etc/systemd/system/openstack-rabbitmq-setup.service 0100644 0 0 /etc/systemd/system/openstack-rabbitmq-server.service diff --git a/openstack/usr/share/openstack/openstack-nova-setup b/openstack/usr/share/openstack/openstack-nova-setup index 2fdd3608..86de2341 100644 --- a/openstack/usr/share/openstack/openstack-nova-setup +++ b/openstack/usr/share/openstack/openstack-nova-setup @@ -99,13 +99,13 @@ rm /etc/systemd/system/multi-user.target.wants/openstack-nova-setup.service # openstack-nova-compute or the security benefits of removing # database access from nova-compute will be negated #systemctl start openstack-nova-conductor -for service in compute api cert consoleauth scheduler novncproxy; do +for service in compute api cert consoleauth scheduler novncproxy serialproxy; do systemctl start openstack-nova-$service.service done #systemctl start openstack-nova-xvpnvncproxy # Create the links to run nova services when system start next times. -for service in compute api cert consoleauth scheduler novncproxy; do +for service in compute api cert consoleauth scheduler novncproxy serialproxy; do systemctl enable openstack-nova-$service.service done # See description of why this shouldn't run in a openstack in one node in [1] -- cgit v1.2.1