Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. compute node local.conf --
  2.  
  3.  
  4. # Note that if ``localrc`` is present it will be used in favor of this section.
  5. [[local|localrc]]
  6.  
  7. # Minimal Contents
  8. # ----------------
  9.  
  10. # While ``stack.sh`` is happy to run without ``localrc``, devlife is better when
  11. # there are a few minimal variables set:
  12.  
  13. # If the ``SERVICE_TOKEN`` and ``*_PASSWORD`` variables are not set
  14. # here you will be prompted to enter values for them by ``stack.sh``
  15. # and they will be added to ``local.conf``.
  16. HOST_IP=10.0.3.23 # change this per compute node
  17. FLAT_INTERFACE=eth1
  18. FIXED_RANGE=10.4.128.0/20
  19. FIXED_NETWORK_SIZE=4096
  20. #FLOATING_RANGE=192.168.42.128/25
  21. MULTI_HOST=1
  22. DEST=/opt/stack/
  23. SCREEN_LOGDIR=/opt/stack/screen-logs
  24. ADMIN_PASSWORD=Password
  25. MYSQL_PASSWORD=Password
  26. RABBIT_PASSWORD=Password
  27. SERVICE_PASSWORD=Password
  28. SERVICE_TOKEN=Password
  29. DATABASE_TYPE=mysql
  30. SERVICE_HOST=10.0.1.8
  31. MYSQL_HOST=$SERVICE_HOST
  32. RABBIT_HOST=$SERVICE_HOST
  33. GLANCE_HOSTPORT=$SERVICE_HOST:9292
  34. ENABLED_SERVICES=n-cpu,n-net,n-api,c-sch,c-api
  35.  
  36.  
  37.  
  38.  
  39.  
  40. Controller node local.conf -
  41.  
  42. [[local|localrc]]
  43.  
  44. # Minimal Contents
  45. # ----------------
  46.  
  47. # While ``stack.sh`` is happy to run without ``localrc``, devlife is better when
  48. # there are a few minimal variables set:
  49.  
  50. # If the ``SERVICE_TOKEN`` and ``*_PASSWORD`` variables are not set
  51. # here you will be prompted to enter values for them by ``stack.sh``
  52. # and they will be added to ``local.conf``.
  53. HOST_IP=10.0.1.8
  54. FLAT_INTERFACE=eth0
  55. FIXED_RANGE=10.4.128.0/20
  56. FIXED_NETWORK_SIZE=4096
  57. #FLOATING_RANGE=192.168.42.128/25
  58. MULTI_HOST=1
  59. DEST=/opt/stack/
  60. SCREEN_LOGDIR=/opt/stack/screen-logs
  61. ADMIN_PASSWORD=Password
  62. MYSQL_PASSWORD=Password
  63. RABBIT_PASSWORD=Password
  64. SERVICE_PASSWORD=Password
  65. SERVICE_TOKEN=Password
  66. DATABASE_TYPE=mysql
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement