update file for adding lab
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
---
|
||||
# Handler to handle common notifications. Handlers are called by other plays.
|
||||
# See http://docs.ansible.com/playbooks_intro.html for more information about handlers.
|
||||
|
||||
- name: restart ntp
|
||||
service:
|
||||
name: ntp
|
||||
state: restarted
|
||||
23
lamp_ubuntu2204_2hosts_withroles/roles/common/tasks/main.yml
Normal file
23
lamp_ubuntu2204_2hosts_withroles/roles/common/tasks/main.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
# This playbook contains common plays that will be run on all nodes.
|
||||
|
||||
- name: Install ntp
|
||||
apt:
|
||||
name: ntp
|
||||
update_cache: true
|
||||
state: present
|
||||
tags: ntp
|
||||
|
||||
- name: Configure ntp file
|
||||
template:
|
||||
src: ntp.conf.j2
|
||||
dest: /etc/ntp.conf
|
||||
tags: ntp
|
||||
notify: restart ntp
|
||||
|
||||
- name: Start the ntp service
|
||||
service:
|
||||
name: ntp
|
||||
state: started
|
||||
enabled: yes
|
||||
tags: ntp
|
||||
@@ -0,0 +1,12 @@
|
||||
|
||||
driftfile /var/lib/ntp/drift
|
||||
|
||||
restrict 127.0.0.1
|
||||
restrict -6 ::1
|
||||
|
||||
server {{ ntpserver }}
|
||||
|
||||
includefile /etc/ntp/crypto/pw
|
||||
|
||||
keys /etc/ntp/keys
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
---
|
||||
# Handler to handle DB tier notifications
|
||||
|
||||
- name: restart mysql
|
||||
service:
|
||||
name: mysql
|
||||
state: restarted
|
||||
become: yes
|
||||
|
||||
78
lamp_ubuntu2204_2hosts_withroles/roles/db/tasks/main.yml
Normal file
78
lamp_ubuntu2204_2hosts_withroles/roles/db/tasks/main.yml
Normal file
@@ -0,0 +1,78 @@
|
||||
---
|
||||
# This playbook will install mysql and create db user and give permissions.
|
||||
|
||||
- name: Install Mysql package
|
||||
apt:
|
||||
update_cache: true
|
||||
name: ['mysql-server', 'python3-pip']
|
||||
state: present
|
||||
- name: Make sure pymysql is present
|
||||
become: true # needed if the other tasks are not played as root
|
||||
pip:
|
||||
name: pymysql
|
||||
state: present
|
||||
|
||||
- name: Create Mysql configuration file
|
||||
template:
|
||||
src: my.cnf.j2
|
||||
dest: /etc/my.cnf
|
||||
notify:
|
||||
- restart mysql
|
||||
|
||||
- name: (DATABASE) Allow remote hosts to connect (Debian)
|
||||
lineinfile:
|
||||
path: /etc/mysql/mysql.conf.d/mysqld.cnf
|
||||
backrefs: yes
|
||||
regexp: '^bind-address'
|
||||
line: 'bind-address = 0.0.0.0'
|
||||
state: present
|
||||
notify: restart mysql
|
||||
|
||||
- name: Start Mysql Service
|
||||
service:
|
||||
name: mysql
|
||||
state: started
|
||||
enabled: yes
|
||||
|
||||
- name: Sets the root password
|
||||
no_log: true
|
||||
mysql_user:
|
||||
name: root
|
||||
password: "{{ mysql_root_password }}"
|
||||
login_unix_socket: /var/run/mysqld/mysqld.sock
|
||||
ignore_errors: yes
|
||||
|
||||
|
||||
#- name: Removes all anonymous user accounts
|
||||
# mysql_user:
|
||||
# name: ''
|
||||
# host_all: yes
|
||||
# state: absent
|
||||
|
||||
|
||||
#- name: Removes the MySQL test database
|
||||
# mysql_db:
|
||||
# name: test
|
||||
# state: absent
|
||||
|
||||
|
||||
|
||||
|
||||
- name: Create Application Database
|
||||
mysql_db:
|
||||
name: "{{ dbname }}"
|
||||
login_user: root
|
||||
login_password: "{{ mysql_root_password }}"
|
||||
state: present
|
||||
|
||||
- name: Create Application DB User
|
||||
no_log: true
|
||||
mysql_user:
|
||||
name: "{{ dbuser }}"
|
||||
password: "{{ upassword }}"
|
||||
login_unix_socket: /var/run/mysqld/mysqld.sock
|
||||
priv: "*.*:ALL"
|
||||
host: '%'
|
||||
state: present
|
||||
login_user: root
|
||||
login_password: "{{ mysql_root_password }}"
|
||||
@@ -0,0 +1,12 @@
|
||||
[mysqld]
|
||||
datadir=/var/lib/mysql
|
||||
socket=/var/lib/mysql/mysql.sock
|
||||
user=mysql
|
||||
# Disabling symbolic-links is recommended to prevent assorted security risks
|
||||
symbolic-links=0
|
||||
port={{ mysql_port }}
|
||||
bind-address = 0.0.0.0
|
||||
|
||||
[mysqld_safe]
|
||||
log-error=/var/log/mysqld.log
|
||||
pid-file=/var/run/mysqld/mysqld.pid
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
# Handler for the webtier: handlers are called by other plays.
|
||||
# See http://docs.ansible.com/playbooks_intro.html for more information about handlers.
|
||||
|
||||
- name: restart iptables
|
||||
service:
|
||||
name: iptables
|
||||
state: restarted
|
||||
@@ -0,0 +1,14 @@
|
||||
---
|
||||
# These tasks are responsible for copying the latest dev/production code from
|
||||
# the version control system.
|
||||
|
||||
- name: Copy the code from repository
|
||||
git:
|
||||
repo: "{{ repository }}"
|
||||
dest: /var/www/html/
|
||||
|
||||
- name: Creates the index.php file
|
||||
template:
|
||||
src: index.php.j2
|
||||
dest: /var/www/html/index.php
|
||||
become: yes
|
||||
@@ -0,0 +1,28 @@
|
||||
---
|
||||
# These tasks install http and the php modules.
|
||||
|
||||
- name: Install http and php etc
|
||||
apt:
|
||||
name: ['apache2', 'php', 'php-mysql', 'git']
|
||||
state: present
|
||||
become: yes
|
||||
|
||||
- name: Recursively remove directory
|
||||
ansible.builtin.file:
|
||||
path: /var/www/html
|
||||
state: absent
|
||||
|
||||
- name: Create a directory if it does not exist
|
||||
ansible.builtin.file:
|
||||
path: /var/www/html
|
||||
state: directory
|
||||
mode: '0755'
|
||||
|
||||
|
||||
- name: http service state
|
||||
service:
|
||||
name: apache2
|
||||
state: started
|
||||
enabled: yes
|
||||
become: yes
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
- include: install_httpd.yml
|
||||
- include: copy_code.yml
|
||||
@@ -0,0 +1,24 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Ansible Application</title>
|
||||
</head>
|
||||
<body>
|
||||
</br>
|
||||
<a href=http://{{ publicip }}/index.html>Homepage</a>
|
||||
</br>
|
||||
<?php
|
||||
Print "Hello, World! I am a web server configured using Ansible and I am : ";
|
||||
echo exec('hostname');
|
||||
Print "</BR>";
|
||||
echo "List of Databases: </BR>";
|
||||
{% for host in groups['dbservers'] %}
|
||||
$link = mysqli_connect('{{ databasepublicip }}', '{{ hostvars[host].dbuser }}', '{{ hostvars[host].upassword }}') or die(mysqli_connect_error($link));
|
||||
{% endfor %}
|
||||
$res = mysqli_query($link, "SHOW DATABASES;");
|
||||
while ($row = mysqli_fetch_assoc($res)) {
|
||||
echo $row['Database'] . "\n";
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user