RHEL/CentOS 5,6,7 에 EPEL 과 Remi/WebTatic Repository 설치하기
EPEL (Extra Packages for Enterprise Linux) 은 Fedora Project 에서 제공되는 저장소로 각종 패키지의 최신 버전을 제공하는 community 기반의 저장소이다. RHEL 의 패키지 정책은 보수적이고 안정성이 최우선이라 패키지 업데이트가 잘 되지 않는다. 최신 버전의 패키지를 사용하고 싶은 경우는 (Ex. MySQL5.5, PHP 5.4 ) epel 이나 remi, webtatic 등의 repository 를 등록하고 설치/update를 하면 된다.
https://www.lesstif.com/pages/viewpage.action?pageId=6979743
Error during install , "python mysqldb module is required" · Issue #42 · geerlingguy/ansible-role-mysql
You can't perform that action at this time. You signed in with another tab or window. You signed out in another tab or window. Reload to refresh your session. Reload to refresh your session.
https://github.com/geerlingguy/ansible-role-mysql/issues/42
Ansible: How to change MySQL server root password by reprovisioning the server
Thanks for contributing an answer to Database Administrators Stack Exchange! Please be sure to answer the question. Provide details and share your research! Asking for help, clarification, or responding to other answers. Making statements based on opinion; back them up with references or personal experience. To learn more, see our tips on writing great answers.
https://dba.stackexchange.com/questions/102066/ansible-how-to-change-mysql-server-root-password-by-reprovisioning-the-server/102100
mysql_user - Adds or removes a user from a MySQL database - Ansible Documentation
Append the privileges defined by priv to the existing ones for this user instead of overwriting existing ones. The path to a Certificate Authority (CA) certificate. This option, if used, must specify the same certificate as used by the server. Check if mysql allows login as root/nopassword before trying supplied credentials.
https://docs.ansible.com/ansible/latest/modules/mysql_user_module.html#mysql-user-module

mysql_db - Add or remove MySQL databases from a remote host - Ansible Documentation
Note Requires the mysql and mysqldump binaries on the remote host. This module is not idempotent when state is , and will import the dump file each time if run more than once. Requires the PyMySQL (Python 2.7 and Python 3.X) or MySQL-python (Python 2.X) package on the remote host.
https://docs.ansible.com/ansible/latest/modules/mysql_db_module.html#mysql-db-module


pip 로 python-mysql 설치하려했는데 안되서 yum으로 된다는 글을 읽었다
yum으로 하면 아래와 같다
이렇게

Seonglae Cho