ubuntu에 ansible과 함께 MySQL 설치 부랑 우분투에 ansible로 MySQL을 설치하는 데 문제가 있습니다. 이것은 MySQL 부분입니다. --- - name: Install MySQL apt: name: "{{ item }}" with_items: - python-mysqldb - mysql-server - name: copy .my.cnf file with root password credentials template: src: templates/root/.my.cnf dest: ~/.my.cnf owner: root mode: 0600 - name: Start the MySQL service service: name: mysql state: started enabled: true #..