Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
3b30ebd0
Commit
3b30ebd0
authored
Dec 08, 2015
by
arbabnazar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OPS-241 Ansible: MySql 5.6 installs should remove the 'test' database
parent
22af1bf6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
18 deletions
+44
-18
playbooks/edx-east/mysql.yml
+6
-0
playbooks/roles/mysql/defaults/main.yml
+2
-0
playbooks/roles/mysql/tasks/main.yml
+28
-16
playbooks/roles/mysql/tasks/remove_mysql_55.yml
+8
-2
No files found.
playbooks/edx-east/mysql.yml
0 → 100644
View file @
3b30ebd0
-
name
:
Deploy MySQL
hosts
:
all
sudo
:
True
gather_facts
:
True
roles
:
-
mysql
playbooks/roles/mysql/defaults/main.yml
View file @
3b30ebd0
...
@@ -3,4 +3,6 @@ mysql_debian_pkgs:
...
@@ -3,4 +3,6 @@ mysql_debian_pkgs:
# Note that mysql 5.6 is installed from a non standard PPA in tasks/main.yml
# Note that mysql 5.6 is installed from a non standard PPA in tasks/main.yml
# It is not listed here because of non-standard steps required to install
# It is not listed here because of non-standard steps required to install
# mysql 5.6 on 12.04
# mysql 5.6 on 12.04
-
software-properties-common
-
python-mysqldb
-
python-mysqldb
-
mysql-server
playbooks/roles/mysql/tasks/main.yml
View file @
3b30ebd0
...
@@ -10,18 +10,16 @@
...
@@ -10,18 +10,16 @@
# http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.62.tar.gz
# http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.62.tar.gz
#
#
---
---
-
name
:
Install PPA for installing MySQL 5.6 on Ubuntu 12.04LTS
# Install PPA for installing MySQL 5.6 on Ubuntu 12.04LTS
-
name
:
install ppa key
apt_key
:
apt_key
:
id
=
E5267A6C
id
:
E5267A6C
url
=
'{{ COMMON_UBUNTU_APT_KEYSERVER }}0x14AA40EC0831756756D7F66C4F4EA0AAE5267A6C'
url
:
'
{{
COMMON_UBUNTU_APT_KEYSERVER
}}0x14AA40EC0831756756D7F66C4F4EA0AAE5267A6C'
state
=
present
state
:
present
-
name
:
install apt repository
-
name
:
install apt repository
apt_repository
:
apt_repository
:
repo
=
'deb http://ppa.launchpad.net/ondrej/mysql-5.6/ubuntu precise main'
repo
:
'
deb
http://ppa.launchpad.net/ondrej/mysql-5.6/ubuntu
precise
main'
update_cache
=
yes
update_cache
:
yes
-
name
:
look for mysql 5.5
-
name
:
look for mysql 5.5
shell
:
dpkg -L mysql-server-5.5
shell
:
dpkg -L mysql-server-5.5
...
@@ -32,14 +30,28 @@
...
@@ -32,14 +30,28 @@
when
:
mysql_55_installed.rc != 1
when
:
mysql_55_installed.rc != 1
-
name
:
install mysql 56 and dependencies
-
name
:
install mysql 56 and dependencies
apt
:
pkg={{ item }} install_recommends=yes force=yes state=present
apt
:
with_items
:
name
:
"
{{
item
}}"
-
software-properties-common
install_recommends
:
yes
-
mysql-server
force
:
yes
state
:
present
-
name
:
install mysql debian packages
apt
:
pkg={{ item }} install_recommends=yes state=present
with_items
:
mysql_debian_pkgs
with_items
:
mysql_debian_pkgs
-
name
:
Ensure Anonymous user(s) does not exist
mysql_user
:
name
:
'
'
host
:
"
{{
item
}}"
state
:
absent
with_items
:
-
localhost
-
"
{{
ansible_hostname
}}"
-
name
:
Remove the test database
mysql_db
:
name
:
test
state
:
absent
-
name
:
start mysql
-
name
:
start mysql
service
:
name=mysql state=started
service
:
name
:
mysql
state
:
started
playbooks/roles/mysql/tasks/remove_mysql_55.yml
View file @
3b30ebd0
...
@@ -7,10 +7,15 @@
...
@@ -7,10 +7,15 @@
#
#
-
name
:
stop mysql
-
name
:
stop mysql
service
:
name=mysql state=stopped
service
:
name
:
mysql
state
:
stopped
-
name
:
remove prior version of mysql
-
name
:
remove prior version of mysql
apt
:
pkg='{{ item }}' state='absent' purge='yes'
apt
:
name
:
"
{{
item
}}"
state
:
absent
purge
:
yes
with_items
:
with_items
:
-
mysql-server-5.5
-
mysql-server-5.5
-
mysql-server
-
mysql-server
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment