diff --git a/doc/high-availability-guide/ap-keystone.txt b/doc/high-availability-guide/ap-keystone.txt index ef4ca63f9f..447949b067 100644 --- a/doc/high-availability-guide/ap-keystone.txt +++ b/doc/high-availability-guide/ap-keystone.txt @@ -50,7 +50,7 @@ You need to edit your OpenStack Identity configuration file (+keystone.conf+) an bind_host = 192.168.42.103 ---- -To be sure all datas will be high available, you should to be sure that you store everything in the MySQL database (which is also high available) : +To be sure all data will be high available, you should be sure that you store everything in the MySQL database (which is also high available) : ---- [catalog] driver = keystone.catalog.backends.sql.Catalog @@ -78,7 +78,7 @@ auth_host = 192.168.42.103 You need also to create the OpenStack Identity Endpoint with this IP. -NOTE : If you are using both private and public IP, you should create two Virtual IP and define your endpoint like this : +NOTE : If you are using both private and public IP addresses, you should create two Virtual IP addresses and define your endpoint like this : ---- keystone endpoint-create --region $KEYSTONE_REGION --service-id $service-id --publicurl 'http://PUBLIC_VIP:5000/v2.0' --adminurl 'http://192.168.42.103:35357/v2.0' --internalurl 'http://192.168.42.103:5000/v2.0' ----