Changes between Version 31 and Version 32 of Tutorials/Cloud/OSM
- Timestamp:
- Oct 18, 2019, 1:24:43 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/Cloud/OSM
v31 v32 84 84 85 85 Commands will run for a while (minutes). If successful, it will output the credentials and address to login via the webui, and will look like the following: 86 {{{ 87 ========================= 88 DevStack Component Timing 89 (times are in seconds) 90 ========================= 91 run_process 25 92 test_with_retry 2 93 apt-get-update 2 94 osc 140 95 wait_for_service 11 96 dbsync 24 97 pip_install 100 98 apt-get 15 99 ------------------------- 100 Unaccounted time 336 101 ========================= 102 Total runtime 655 86 103 104 105 106 This is your host IP address: 10.10.21.21 107 This is your host IPv6 address: ::1 108 Horizon is now available at http://10.10.21.21/dashboard 109 Keystone is serving at http://10.10.21.21/identity/ 110 The default users are: admin and demo 111 The password: nomoresecret 112 113 }}} 87 114 88 115 … … 116 143 117 144 145 * Change IP without running stack.sh: 146 * Run unstack.sh 147 * In keystone database "update endpoint set url = REPLACE(url, '[old IP address]', '[new IP address]')"; 148 * Update all Ips in /etc folder "grep -rl '[old IP address]' /etc | xargs sed -i 's/[old IP address]/[new IP address]/g'" 149 * Update all Ips in /opt/stack folder "grep -rl '[old IP address]' /opt/stack | xargs sed -i 's/[old IP address]/[new IP address]/g'" 150 * Restart apache2 server 151 * Run rejoin-stack.sh 152 * Restart Keystone "keystone-all" 153 154 118 155 [[CollapsibleEnd]] 119 156