安裝配置好openstack環境的虛擬機器,需要修改ip時,在資料庫中同步修改ip的方法,安裝配置openstack

來源:互聯網
上載者:User

安裝配置好openstack環境的虛擬機器,需要修改ip時,在資料庫中同步修改ip的方法,安裝配置openstack

由於配置openstack 環境的時候,建立了很多表,都配置了原生ip

所以當本機需要修改ip的 時候  就需要同步資料庫中所有與環境有關的ip

方法:

1.進入資料庫

[root@node Desktop]# mysql -uroot -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 5.5.40-MariaDB-wsrep MariaDB Server, wsrep_25.11.r4026

Copyright (c) 2000, 2014, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]>

2.顯示所有資料    show database;

MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| glance             |
| keystone           |
| mysql              |
| nova               |
| performance_schema |
| test               |
+--------------------+
7 rows in set (0.12 sec)

MariaDB [(none)]>

3.進入keystone 資料庫

MariaDB [(none)]> use keystone;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [keystone]>

4.查看 所有資料表

MariaDB [keystone]> show tables;
+-----------------------+
| Tables_in_keystone    |
+-----------------------+
| assignment            |
| credential            |
| domain                |
| endpoint              |
| group                 |
| migrate_version       |
| policy                |
| project               |
| region                |
| role                  |
| service               |
| token                 |
| trust                 |
| trust_role            |
| user                  |
| user_group_membership |
+-----------------------+
16 rows in set (0.00 sec)

MariaDB [keystone]>

5.查看 endpoint 資料表所有內容

MariaDB [keystone]> SELECT * FROM endpoint;
+----------------------------------+----------------------------------+-----------+-----------+----------------------------------+-------------------------------------------+-------+---------+
| id                               | legacy_endpoint_id               | interface | region    | service_id                       | url                                       | extra | enabled |
+----------------------------------+----------------------------------+-----------+-----------+----------------------------------+-------------------------------------------+-------+---------+
| 2c1bfecbc0354ce8998675ae511139b6 | f73717cab6d4464cb65171d31535efe3 | public    | regionOne | da28568989314cbcb6562a069a8c4c4e | http://192.168.0.22:5000/v2.0             | {}    |       1 |
| 458b7c2cf4614f2fade90836671795ea | e1d8e224bc434587941d00f42b1b3d88 | admin     | regionOne | 507666ec257f4090850853ce5fa06881 | http://192.168.0.22:9292                  | {}    |       1 |
| 565afe887f1244afb1bc2c75cb05b3f7 | 3f6df8dffd5745228130066c9521888a | public    | regionOne | 30162d7fd4c448f481a617a47138a087 | http://192.168.0.22:8774/v2/%(tenant_id)s | {}    |       1 |
| 849d71c20521483480a02ca7e248d2b3 | e1d8e224bc434587941d00f42b1b3d88 | internal  | regionOne | 507666ec257f4090850853ce5fa06881 | http://192.168.0.22:9292                  | {}    |       1 |
| 886f672ed16a4b4c9a1959846cdb6790 | f73717cab6d4464cb65171d31535efe3 | admin     | regionOne | da28568989314cbcb6562a069a8c4c4e | http://192.168.0.22:35357/v2.0            | {}    |       1 |
| 99b9f854f7ab409bad2902376cfa26e0 | f73717cab6d4464cb65171d31535efe3 | internal  | regionOne | da28568989314cbcb6562a069a8c4c4e | http://192.168.0.22:5000/v2.0             | {}    |       1 |
| b0ffbaf2b9854f07a9741fe7f7ee51f9 | 3f6df8dffd5745228130066c9521888a | internal  | regionOne | 30162d7fd4c448f481a617a47138a087 | http://192.168.0.22:8774/v2/%(tenant_id)s | {}    |       1 |
| cf450711e11547b3b03885e08bbdab5d | e1d8e224bc434587941d00f42b1b3d88 | public    | regionOne | 507666ec257f4090850853ce5fa06881 | http://192.168.0.22:9292                  | {}    |       1 |
| ee495ededf0b46bb9f8db1efef85da71 | 3f6df8dffd5745228130066c9521888a | admin     | regionOne | 30162d7fd4c448f481a617a47138a087 | http://192.168.0.22:8774/v2/%(tenant_id)s | {}    |       1 |
+----------------------------------+----------------------------------+-----------+-----------+----------------------------------+-------------------------------------------+-------+---------+
9 rows in set (0.00 sec)

MariaDB [keystone]>
6.用 命令修改 裡面所有ip  即可。

例如:

update endpoint set url='http://192.168.0.22:5000/v2.0' where id='2c1bfecbc0354ce8998675ae511139b6';



著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.