Book Image

Troubleshooting Ubuntu Server

By : Skanda Bhargav
Book Image

Troubleshooting Ubuntu Server

By: Skanda Bhargav

Overview of this book

Table of Contents (16 chapters)
Troubleshooting Ubuntu Server
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

OpenStack networking


Networking in OpenStack lets users create and attach devices that are managed by other services to networks. Also, users can implement plugins in order to get different types of networking equipment. OpenStack networking is responsible for managing the virtual network infrastructure (VNI) and access layers of physical network infrastructure (PNI). Tenants in OpenStack Networking can create various topologies, such as firewalls, load balancers, and VPNs in the virtual network.

Installing and configuring the controller node

In this section, we will discuss installing and configuring the Compute service on the controller node.

Configuring the prerequisites

We need to create database, credentials, and API endpoints so that we can install and configure the OpenStack Networking service. The steps are as follows:

  1. Here are the steps to create a database.

    1. Connect to the database server as root user using the following command:

      mysql -u root –p
      
    2. Create a new database named neutron using...