UncleNUC Wiki

Second chance for NUCs

User Tools

Site Tools


lab:fah_removal

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
lab:fah_removal [2023/04/30 14:45] – added color userlab:fah_removal [2023/05/06 23:02] (current) – replaced user
Line 1: Line 1:
-====== FAH Removal ====== 
-In our previous step we [[fah_installation|set up FAH]] on our [[Stack of NUCs]]. 
- 
-Now we are going to disable the service and uninstall it. In the last step there was an optional step to "finish folding". Bonus points for doing this. 
- 
-Purpose: 
-  * Demonstrate stopping and removing an installed service workload 
- 
-====== Step 1 - Connect to the Ansible Control Node ====== 
-From [[stack - nuc 1|NUC 1]], log in to the Ansible control node, [[stack - nuc 2|NUC 2]]. 
- 
-====== Step 2 - Create the Playbook ====== 
-Create the file /home/ansible/my-project/fah/removefah.yml 
- 
-<file yaml removefah.yml> 
---- 
-- hosts: all 
-  become: true 
-  become_user: root 
-  tasks: 
-    - name: Stop and disable FAHClient.service 
-      ansible.builtin.service: 
-        name: FAHClient.service 
-        state: stopped 
-        enabled: false 
-    - name: Remove fahclient package 
-      apt: 
-        name: fahclient 
-        state: absent 
-        clean: true 
-        purge: true 
-    - name: Reboot 
-      reboot: 
-</file> 
-  - ''ansible-playbook reboot.yml'' (/home/ansible/my-project/fah/reboot.yml) 
-    * <file reboot.yml> 
---- 
-- hosts: all 
-  become: true 
-  become_user: root 
-  tasks: 
-    - name: Reboot 
-      reboot: 
-</file> 
- 
-====== Step 3 - Test the Playbook ====== 
-''ansible-playbook removefah.yml'' 
- 
-Now that we have removed the CPU-hungry FAH service, we go next to [[Install Kubernetes|installing Kubernetes]] 
- 
-====== Optional ====== 
-Cyber security students may want to deploy hashtopolis in the Lab. This deploys a distributed hashcat cluster for brute forcing password hashes. 
  
lab/fah_removal.1682865938.txt.gz · Last modified: 2023/04/30 14:45 by user