summaryrefslogtreecommitdiff
path: root/doc/source/install/verify.rst
blob: c4e0383af4a4274d46fe9e56fcee54eb082321b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
Verify operation
~~~~~~~~~~~~~~~~

Verify operation of the Compute service.

.. note::

   Perform these commands on the controller node.

#. Source the ``admin`` credentials to gain access to admin-only CLI commands:

   .. code-block:: console

      $ . admin-openrc

#. List service components to verify successful launch and registration of each
   process:

   .. code-block:: console

      $ openstack compute service list

      +----+--------------------+------------+----------+---------+-------+----------------------------+
      | Id | Binary             | Host       | Zone     | Status  | State | Updated At                 |
      +----+--------------------+------------+----------+---------+-------+----------------------------+
      |  1 | nova-scheduler     | controller | internal | enabled | up    | 2016-02-09T23:11:15.000000 |
      |  2 | nova-conductor     | controller | internal | enabled | up    | 2016-02-09T23:11:16.000000 |
      |  3 | nova-compute       | compute1   | nova     | enabled | up    | 2016-02-09T23:11:20.000000 |
      +----+--------------------+------------+----------+---------+-------+----------------------------+

   .. note::

      This output should indicate two service components enabled on the
      controller node and one service component enabled on the compute node.

#. List API endpoints in the Identity service to verify connectivity with the
   Identity service:

   .. note::

      Below endpoints list may differ depending on the installation of
      OpenStack components.

   .. code-block:: console

      $ openstack catalog list

      +-----------+-----------+-----------------------------------------+
      | Name      | Type      | Endpoints                               |
      +-----------+-----------+-----------------------------------------+
      | keystone  | identity  | RegionOne                               |
      |           |           |   public: http://controller:5000/v3/    |
      |           |           | RegionOne                               |
      |           |           |   internal: http://controller:5000/v3/  |
      |           |           | RegionOne                               |
      |           |           |   admin: http://controller:5000/v3/     |
      |           |           |                                         |
      | glance    | image     | RegionOne                               |
      |           |           |   admin: http://controller:9292         |
      |           |           | RegionOne                               |
      |           |           |   public: http://controller:9292        |
      |           |           | RegionOne                               |
      |           |           |   internal: http://controller:9292      |
      |           |           |                                         |
      | nova      | compute   | RegionOne                               |
      |           |           |   admin: http://controller:8774/v2.1    |
      |           |           | RegionOne                               |
      |           |           |   internal: http://controller:8774/v2.1 |
      |           |           | RegionOne                               |
      |           |           |   public: http://controller:8774/v2.1   |
      |           |           |                                         |
      | placement | placement | RegionOne                               |
      |           |           |   public: http://controller:8778        |
      |           |           | RegionOne                               |
      |           |           |   admin: http://controller:8778         |
      |           |           | RegionOne                               |
      |           |           |   internal: http://controller:8778      |
      |           |           |                                         |
      +-----------+-----------+-----------------------------------------+

   .. note::

      Ignore any warnings in this output.

#. List images in the Image service to verify connectivity with the Image
   service:

   .. code-block:: console

      $ openstack image list

      +--------------------------------------+-------------+-------------+
      | ID                                   | Name        | Status      |
      +--------------------------------------+-------------+-------------+
      | 9a76d9f9-9620-4f2e-8c69-6c5691fae163 | cirros      | active      |
      +--------------------------------------+-------------+-------------+

#. Check the cells and placement API are working successfully and that other
   necessary prerequisites are in place:

   .. _verify-install-nova-status:

   .. code-block:: console

      # nova-status upgrade check

      +--------------------------------------------------------------------+
      | Upgrade Check Results                                              |
      +--------------------------------------------------------------------+
      | Check: Cells v2                                                    |
      | Result: Success                                                    |
      | Details: None                                                      |
      +--------------------------------------------------------------------+
      | Check: Placement API                                               |
      | Result: Success                                                    |
      | Details: None                                                      |
      +--------------------------------------------------------------------+
      | Check: Cinder API                                                  |
      | Result: Success                                                    |
      | Details: None                                                      |
      +--------------------------------------------------------------------+
      | Check: Policy File JSON to YAML Migration                          |
      | Result: Success                                                    |
      | Details: None                                                      |
      +--------------------------------------------------------------------+
      | Check: Older than N-1 computes                                     |
      | Result: Success                                                    |
      | Details: None                                                      |
      +--------------------------------------------------------------------+