Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.idea/
.idea/
sftp-config.json
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ This is used in the demonstration of development of Ansible Playbooks.
# mysql -u <username> -p

mysql> CREATE DATABASE employee_db;
mysql> GRANT ALL ON *.* to db_user@'%' IDENTIFIED BY 'Passw0rd';
mysql> CREATE USER 'db_user'@'localhost' IDENTIFIED BY 'Passw0rd';
mysql> GRANT ALL ON employee_db.* TO 'db_user'@'localhost';
mysql> USE employee_db;
mysql> CREATE TABLE employees (name VARCHAR(20));

Expand Down