見よう見まね。Ansible で MySQL を導入してみました。 課題多いです。忘れないようにメモメモ。 環境 Vagrant 1.9.2 ansible 2.2.1.0 MySQL 5.7 CentOS 7.2 playbook MariaDBの影響を受けたくなかったので、削除しました。 ansibleには、mysql-pythonが必要でした。 MySQL5.6から?、temporary passwordが自動設定されちゃいます。 自分で設定したいrootパスワードを再設定しました。 --- - name: mysql install hosts: all become: true tasks: - name: remove mariadb-libs yum: state: absent name: mariadb-libs - name: install mysql reposit