You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

210 lines
7.2 KiB

  1. #!/bin/bash
  2. # Licensed under the Apache License, Version 2.0 (the "License"); you may
  3. # not use this file except in compliance with the License. You may obtain
  4. # a copy of the License at
  5. #
  6. # http://www.apache.org/licenses/LICENSE-2.0
  7. #
  8. # Unless required by applicable law or agreed to in writing, software
  9. # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  10. # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  11. # License for the specific language governing permissions and limitations
  12. # under the License.
  13. if [[ -e /etc/os-release ]]; then
  14. # NOTE(berendt): support for CentOS/RHEL/openSUSE/SLES will be added in the future
  15. source /etc/os-release
  16. INSTALL_DATABASE=0
  17. INSTALL_FAAFO=0
  18. INSTALL_MESSAGING=0
  19. RUN_API=0
  20. RUN_DEMO=0
  21. RUN_WORKER=0
  22. URL_DATABASE='sqlite:////tmp/sqlite.db'
  23. URL_ENDPOINT='http://127.0.0.1'
  24. URL_MESSAGING='amqp://guest:guest@localhost:5672/'
  25. while getopts e:m:d:i:r: FLAG; do
  26. case $FLAG in
  27. i)
  28. case $OPTARG in
  29. messaging)
  30. INSTALL_MESSAGING=1
  31. ;;
  32. database)
  33. INSTALL_DATABASE=1
  34. ;;
  35. faafo)
  36. INSTALL_FAAFO=1
  37. ;;
  38. esac
  39. ;;
  40. r)
  41. case $OPTARG in
  42. demo)
  43. RUN_DEMO=1
  44. ;;
  45. api)
  46. RUN_API=1
  47. ;;
  48. worker)
  49. RUN_WORKER=1
  50. ;;
  51. esac
  52. ;;
  53. e)
  54. URL_ENDPOINT=$OPTARG
  55. ;;
  56. m)
  57. URL_MESSAGING=$OPTARG
  58. ;;
  59. d)
  60. URL_DATABASE=$OPTARG
  61. ;;
  62. *)
  63. echo "error: unknown option $FLAG"
  64. exit 1
  65. ;;
  66. esac
  67. done
  68. if [[ $ID = 'ubuntu' || $ID = 'debian' ]]; then
  69. sudo apt-get update
  70. elif [[ $ID = 'fedora' ]]; then
  71. # fedora currently not tested nor supported
  72. sudo dnf update -y
  73. fi
  74. if [[ $INSTALL_DATABASE -eq 1 ]]; then
  75. if [[ $ID = 'ubuntu' || $ID = 'debian' ]]; then
  76. sudo DEBIAN_FRONTEND=noninteractive apt-get install -y mysql-server python3-mysqldb
  77. # HSFD changes for Ubuntu 18.04
  78. sudo sed -i -e "/bind-address/d" /etc/mysql/mysql.conf.d/mysqld.cnf
  79. #sudo sed -i -e "/bind-address/d" /etc/mysql/my.cnf
  80. sudo service mysql restart
  81. elif [[ $ID = 'fedora' ]]; then
  82. # fedora currently not tested nor supported
  83. sudo dnf install -y mariadb-server python3-mysql
  84. printf "[mysqld]\nbind-address = 127.0.0.1\n" | sudo tee /etc/my.cnf.d/faafo.conf
  85. sudo systemctl enable mariadb
  86. sudo systemctl start mariadb
  87. else
  88. echo "error: distribution $ID not supported"
  89. exit 1
  90. fi
  91. sudo mysqladmin password password
  92. sudo mysql -uroot -ppassword mysql -e "CREATE DATABASE IF NOT EXISTS faafo; GRANT ALL PRIVILEGES ON faafo.* TO 'faafo'@'%' IDENTIFIED BY 'password';"
  93. URL_DATABASE='mysql://root:password@localhost/faafo'
  94. fi
  95. if [[ $INSTALL_MESSAGING -eq 1 ]]; then
  96. if [[ $ID = 'ubuntu' || $ID = 'debian' ]]; then
  97. sudo apt-get install -y rabbitmq-server
  98. elif [[ $ID = 'fedora' ]]; then
  99. # fedora currently not tested nor supported
  100. sudo dnf install -y rabbitmq-server
  101. sudo systemctl enable rabbitmq-server
  102. sudo systemctl start rabbitmq-server
  103. else
  104. echo "error: distribution $ID not supported"
  105. exit 1
  106. fi
  107. fi
  108. if [[ $INSTALL_FAAFO -eq 1 ]]; then
  109. if [[ $ID = 'ubuntu' || $ID = 'debian' ]]; then
  110. sudo apt-get install -y python3-dev python3-pip supervisor git zlib1g-dev libmysqlclient-dev python3-mysqldb python-is-python3
  111. # Following is needed because of
  112. # https://bugs.launchpad.net/ubuntu/+source/supervisor/+bug/1594740
  113. if [ $(lsb_release --short --codename) = xenial ]; then
  114. # Make sure the daemon is enabled.
  115. if ! systemctl --quiet is-enabled supervisor; then
  116. systemctl enable supervisor
  117. fi
  118. # Make sure the daemon is started.
  119. if ! systemctl --quiet is-active supervisor; then
  120. systemctl start supervisor
  121. fi
  122. fi
  123. elif [[ $ID = 'fedora' ]]; then
  124. # fedora currently not tested nor supported
  125. sudo dnf install -y python3-devel python3-pip supervisor git zlib-devel mariadb-devel gcc which python3-mysql
  126. sudo systemctl enable supervisord
  127. sudo systemctl start supervisord
  128. #elif [[ $ID = 'opensuse' || $ID = 'sles' ]]; then
  129. # sudo zypper install -y python-devel python-pip
  130. else
  131. echo "error: distribution $ID not supported"
  132. exit 1
  133. fi
  134. # HSFD changed to local repo
  135. #git clone https://gogs.informatik.hs-fulda.de/srieger/cloud-computing-msc-ai-examples
  136. git clone --branch dev_faafo https://gogs.informatik.hs-fulda.de/srieger/cloud-computing-msc-ai-examples
  137. cd cloud-computing-msc-ai-examples/faafo
  138. # following line required by bug 1636150
  139. sudo pip install --upgrade pbr
  140. sudo pip install -r requirements.txt
  141. sudo python3 setup.py install
  142. sudo sed -i -e "s#transport_url = .*#transport_url = $URL_MESSAGING#" /etc/faafo/faafo.conf
  143. sudo sed -i -e "s#database_url = .*#database_url = $URL_DATABASE#" /etc/faafo/faafo.conf
  144. sudo sed -i -e "s#endpoint_url = .*#endpoint_url = $URL_ENDPOINT#" /etc/faafo/faafo.conf
  145. fi
  146. if [[ $RUN_API -eq 1 ]]; then
  147. faafo_api="
  148. [program:faafo_api]
  149. command=$(which faafo-api)
  150. priority=10
  151. startretries=0"
  152. if [[ $ID = 'ubuntu' || $ID = 'debian' ]]; then
  153. echo "$faafo_api" | sudo tee -a /etc/supervisor/conf.d/faafo.conf
  154. elif [[ $ID = 'fedora' ]]; then
  155. # fedora currently not tested nor supported
  156. echo "$faafo_api" | sudo tee -a /etc/supervisord.d/faafo.ini
  157. else
  158. echo "error: distribution $ID not supported"
  159. exit 1
  160. fi
  161. fi
  162. if [[ $RUN_WORKER -eq 1 ]]; then
  163. faafo_worker="
  164. [program:faafo_worker]
  165. command=$(which faafo-worker)
  166. priority=20
  167. startretries=0"
  168. if [[ $ID = 'ubuntu' || $ID = 'debian' ]]; then
  169. echo "$faafo_worker" | sudo tee -a /etc/supervisor/conf.d/faafo.conf
  170. elif [[ $ID = 'fedora' ]]; then
  171. # fedora currently not tested nor supported
  172. echo "$faafo_worker" | sudo tee -a /etc/supervisord.d/faafo.ini
  173. else
  174. echo "error: distribution $ID not supported"
  175. exit 1
  176. fi
  177. fi
  178. if [[ $RUN_WORKER -eq 1 || $RUN_API -eq 1 ]]; then
  179. sudo supervisorctl reload
  180. sleep 5
  181. fi
  182. if [[ $RUN_DEMO -eq 1 && $RUN_API -eq 1 ]]; then
  183. faafo --endpoint-url $URL_ENDPOINT --debug create
  184. fi
  185. else
  186. exit 1
  187. fi