1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00
iiab/roles/mongodb/tasks/install.yml

141 lines
4.8 KiB
YAML
Raw Normal View History

# 1. INSTALL MongoDB PACKAGES OR BINARIES
2019-02-03 00:41:43 +00:00
- name: "Install packages: mongodb, mongodb-server (not rpi)"
2018-07-12 00:49:03 +00:00
package:
2018-10-28 17:41:54 +00:00
name:
- mongodb-server
2019-01-31 16:07:12 +00:00
- mongodb # 2019-01-31: this package does not exist on (cannot be installed on) Debian 10, SEE #1437
2018-07-12 00:49:03 +00:00
state: present
when: internet_available and not is_rpi
#tags: download
2017-05-27 18:09:50 +00:00
# 2019-02-02: Sugarizer with Node.js 10.x requires MongoDB 2.6+ so
# https://andyfelong.com/2017/08/mongodb-3-0-14-for-raspbian-stretch/
# is being used on RPi, all I found! (Raspbian's apt pkg is MongoDB 2.4.14)
#
# mongodb_stretch_3_0_14_core.zip (20M) & mongodb_stretch_3_0_14_tools.zip (15M)
# were backed up from andyfelong.com to http://download.iiab.io/packages/
#
# CLARIF: mongodb_stretch_3_0_14_core.zip IS IN FACT 3.0.14 (core) BUT...
# mongodb_stretch_3_0_14_tools.zip IS REALLY 3.0.15 (tools)
- name: Create dir /tmp/mongodb-3.0.1x (rpi)
file:
path: /tmp/mongodb-3.0.1x
state: directory
when: internet_available and is_rpi
2019-02-02 19:47:35 +00:00
- name: Download & unzip 20MB http://download.iiab.io/packages/mongodb_stretch_3_0_14_core.zip to /tmp/mongodb-3.0.1x (rpi)
unarchive:
remote_src: yes
src: "{{ iiab_download_url }}/mongodb_stretch_3_0_14_core.zip"
dest: /tmp/mongodb-3.0.1x
when: internet_available and is_rpi
2019-02-02 18:48:50 +00:00
- name: Install (move) its 3 CORE binaries from /tmp/mongodb-3.0.1x/core to /usr/bin (rpi)
shell: mv /tmp/mongodb-3.0.1x/core/* /usr/bin
when: internet_available and is_rpi
2019-02-02 19:47:35 +00:00
- name: Download & unzip 15MB http://download.iiab.io/packages/mongodb_stretch_3_0_14_tools.zip [IN FACT THIS ONE'S 3.0.15] to /tmp/mongodb-3.0.1x (rpi)
unarchive:
remote_src: yes
src: "{{ iiab_download_url }}/mongodb_stretch_3_0_14_tools.zip"
dest: /tmp/mongodb-3.0.1x
when: internet_available and is_rpi
2019-02-02 18:48:50 +00:00
- name: Install (move) its 9 TOOLS binaries from /opt/iiab/downloads/mongodb-3.0.1x/tools to /usr/bin (rpi)
shell: mv /tmp/mongodb-3.0.1x/tools/* /usr/bin
when: internet_available and is_rpi
# OLD WAY / MUCH SLOWER: had put unnec duplicate copies in /opt/iiab/downloads/mongodb-3.0.1x
#
#- name: Create dir /opt/iiab/downloads/mongodb-3.0.1x (rpi)
# file:
# path: "{{ downloads_dir }}/mongodb-3.0.1x"
# state: directory
# when: internet_available and is_rpi
#
#- name: Download & unzip MongoDB 3.0.14's 3 core binaries to /opt/iiab/downloads/mongodb-3.0.1x (rpi)
# unarchive:
# remote_src: yes
# src: "{{ iiab_download_url }}/mongodb_stretch_3_0_14_core.zip"
# dest: "{{ downloads_dir }}/mongodb-3.0.1x"
# when: internet_available and is_rpi
#
#- name: Install (copy) 3 binaries from /opt/iiab/downloads/mongodb-3.0.1x/core to /usr/bin (rpi)
# copy:
# src: "{{ item }}"
# dest: /usr/bin
# with_fileglob:
# - "{{ downloads_dir }}/mongodb-3.0.1x/core/*"
# when: internet_available and is_rpi
#
#- name: Download & unzip MongoDB 3.0.15's 9 tools binaries to /opt/iiab/downloads/mongodb-3.0.1x (rpi)
# unarchive:
# remote_src: yes
# src: "{{ iiab_download_url }}/mongodb_stretch_3_0_14_tools.zip"
# dest: "{{ downloads_dir }}/mongodb-3.0.1x"
# when: internet_available and is_rpi
#
#- name: Install (copy) 9 binaries from /opt/iiab/downloads/mongodb-3.0.1x/tools to /usr/bin (rpi)
# copy:
# src: "{{ item }}"
# dest: /usr/bin
# with_fileglob:
# - "{{ downloads_dir }}/mongodb-3.0.1x/tools/*"
# when: internet_available and is_rpi
2019-02-02 19:38:52 +00:00
- name: Create Linux group mongodb (rpi)
group:
name: mongodb
state: present
when: is_rpi | bool
2019-02-02 19:38:52 +00:00
2019-02-02 18:48:50 +00:00
- name: Create Linux user mongodb (rpi)
user:
name: mongodb
2019-02-02 19:38:52 +00:00
group: mongodb # primary group
groups: mongodb
2019-02-02 18:48:50 +00:00
home: /var/lib/mongodb
shell: /usr/sbin/nologin
when: is_rpi | bool
2019-02-02 18:48:50 +00:00
2020-01-29 15:23:00 +00:00
# 2. CONFIGURE MongoDB FOR IIAB
2019-02-02 19:38:52 +00:00
- name: 'Create 3 dirs for MongoDB: /var/lib/mongodb, /var/log/mongodb, {{ mongodb_db_path }}'
2018-07-12 00:49:03 +00:00
file:
state: directory
2019-02-02 19:38:52 +00:00
path: "{{ item }}"
2018-07-12 00:49:03 +00:00
owner: mongodb
2019-02-02 19:38:52 +00:00
group: mongodb
2017-05-27 18:09:50 +00:00
with_items:
2019-02-02 19:38:52 +00:00
#- { path: '/var/run/mongodb' }
- /var/lib/mongodb
- /var/log/mongodb
- "{{ mongodb_db_path }}" # i.e. /library/dbdata/mongodb/
2017-05-27 18:09:50 +00:00
2019-01-31 16:07:12 +00:00
- name: Install /etc/mongod.conf, mongodb.service, /usr/bin/iiab-mongodb-repair-if-no-lock from templates
2018-07-12 00:49:03 +00:00
template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: root
group: root
2018-07-23 14:01:21 +00:00
mode: "{{ item.mode }}"
2017-05-27 18:09:50 +00:00
with_items:
2019-02-02 19:38:52 +00:00
- { src: 'mongod.conf.j2', dest: "{{ mongodb_conf }}", mode: '0644' } # i.e. /etc/mongod.conf
2018-07-23 14:01:21 +00:00
- { src: 'mongodb.service.j2', dest: '/etc/systemd/system/mongodb.service', mode: '0644' }
- { src: 'iiab-mongodb-repair-if-no-lock.j2', dest: '/usr/bin/iiab-mongodb-repair-if-no-lock', mode: '0755' }
2020-01-29 15:23:00 +00:00
3. RECORD THAT MongoDB IS INSTALLED
2020-01-29 16:43:59 +00:00
- set_fact:
mongodb_installed: True
- name: "Add 'mongodb_installed: True' to {{ iiab_state_file }}"
2019-10-14 17:18:16 +00:00
lineinfile:
dest: "{{ iiab_state_file }}" # /etc/iiab/iiab_state.yml
2019-10-14 17:18:16 +00:00
regexp: '^mongodb_installed'
line: 'mongodb_installed: True'