Docs: add info how to cope with a protocol-related connection error using login_unix_socket argument (#420)

This commit is contained in:
Andrew Klychkov 2022-08-26 11:38:41 +02:00 committed by GitHub
parent 0a68bb270f
commit f1d63e3fc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 24 additions and 0 deletions

View file

@ -35,6 +35,7 @@ options:
login_unix_socket: login_unix_socket:
description: description:
- The path to a Unix domain socket for local connections. - The path to a Unix domain socket for local connections.
- Use this parameter to avoid the C(Please explicitly state intended protocol) error.
type: str type: str
connect_timeout: connect_timeout:
description: description:
@ -78,6 +79,8 @@ requirements:
- PyMySQL (Python 2.7 and Python 3.x) or - PyMySQL (Python 2.7 and Python 3.x) or
- MySQLdb (Python 2.x) - MySQLdb (Python 2.x)
notes: notes:
- "To avoid the C(Please explicitly state intended protocol) error, use the I(login_unix_socket) argument,
for example, C(login_unix_socket: /run/mysqld/mysqld.sock)."
- Requires the PyMySQL (Python 2.7 and Python 3.X) or MySQL-python (Python 2.X) package installed on the remote host. - Requires the PyMySQL (Python 2.7 and Python 3.X) or MySQL-python (Python 2.X) package installed on the remote host.
The Python package may be installed with apt-get install python-pymysql (Ubuntu; see M(ansible.builtin.apt)) or The Python package may be installed with apt-get install python-pymysql (Ubuntu; see M(ansible.builtin.apt)) or
yum install python2-PyMySQL (RHEL/CentOS/Fedora; see M(ansible.builtin.yum)). You can also use dnf install python2-PyMySQL yum install python2-PyMySQL (RHEL/CentOS/Fedora; see M(ansible.builtin.yum)). You can also use dnf install python2-PyMySQL

View file

@ -198,10 +198,13 @@ extends_documentation_fragment:
''' '''
EXAMPLES = r''' EXAMPLES = r'''
# If you encounter the "Please explicitly state intended protocol" error,
# use the login_unix_socket argument
- name: Create a new database with name 'bobdata' - name: Create a new database with name 'bobdata'
community.mysql.mysql_db: community.mysql.mysql_db:
name: bobdata name: bobdata
state: present state: present
login_unix_socket: /run/mysqld/mysqld.sock
- name: Create new databases with names 'foo' and 'bar' - name: Create new databases with names 'foo' and 'bar'
community.mysql.mysql_db: community.mysql.mysql_db:

View file

@ -76,9 +76,12 @@ EXAMPLES = r'''
# Display all info from databases group except settings: # Display all info from databases group except settings:
# ansible databases -m mysql_info -a 'filter=!settings' # ansible databases -m mysql_info -a 'filter=!settings'
# If you encounter the "Please explicitly state intended protocol" error,
# use the login_unix_socket argument
- name: Collect all possible information using passwordless root access - name: Collect all possible information using passwordless root access
community.mysql.mysql_info: community.mysql.mysql_info:
login_user: root login_user: root
login_unix_socket: /run/mysqld/mysqld.sock
- name: Get MySQL version with non-default credentials - name: Get MySQL version with non-default credentials
community.mysql.mysql_info: community.mysql.mysql_info:

View file

@ -57,10 +57,13 @@ extends_documentation_fragment:
''' '''
EXAMPLES = r''' EXAMPLES = r'''
# If you encounter the "Please explicitly state intended protocol" error,
# use the login_unix_socket argument
- name: Simple select query to acme db - name: Simple select query to acme db
community.mysql.mysql_query: community.mysql.mysql_query:
login_db: acme login_db: acme
query: SELECT * FROM orders query: SELECT * FROM orders
login_unix_socket: /run/mysqld/mysqld.sock
- name: Select query to db acme with positional arguments - name: Select query to db acme with positional arguments
community.mysql.mysql_query: community.mysql.mysql_query:

View file

@ -202,9 +202,12 @@ seealso:
''' '''
EXAMPLES = r''' EXAMPLES = r'''
# If you encounter the "Please explicitly state intended protocol" error,
# use the login_unix_socket argument
- name: Stop mysql replica thread - name: Stop mysql replica thread
community.mysql.mysql_replication: community.mysql.mysql_replication:
mode: stopreplica mode: stopreplica
login_unix_socket: /run/mysqld/mysqld.sock
- name: Get primary binlog file name and binlog position - name: Get primary binlog file name and binlog position
community.mysql.mysql_replication: community.mysql.mysql_replication:

View file

@ -142,6 +142,9 @@ extends_documentation_fragment:
''' '''
EXAMPLES = r''' EXAMPLES = r'''
# If you encounter the "Please explicitly state intended protocol" error,
# use the login_unix_socket argument, for example, login_unix_socket: /run/mysqld/mysqld.sock
# Example of a .my.cnf file content for setting a root password # Example of a .my.cnf file content for setting a root password
# [client] # [client]
# user=root # user=root

View file

@ -177,11 +177,14 @@ extends_documentation_fragment:
''' '''
EXAMPLES = r''' EXAMPLES = r'''
# If you encounter the "Please explicitly state intended protocol" error,
# use the login_unix_socket argument
- name: Removes anonymous user account for localhost - name: Removes anonymous user account for localhost
community.mysql.mysql_user: community.mysql.mysql_user:
name: '' name: ''
host: localhost host: localhost
state: absent state: absent
login_unix_socket: /run/mysqld/mysqld.sock
- name: Removes all anonymous user accounts - name: Removes all anonymous user accounts
community.mysql.mysql_user: community.mysql.mysql_user:

View file

@ -58,9 +58,12 @@ extends_documentation_fragment:
''' '''
EXAMPLES = r''' EXAMPLES = r'''
# If you encounter the "Please explicitly state intended protocol" error,
# use the login_unix_socket argument
- name: Check for sync_binlog setting - name: Check for sync_binlog setting
community.mysql.mysql_variables: community.mysql.mysql_variables:
variable: sync_binlog variable: sync_binlog
login_unix_socket: /run/mysqld/mysqld.sock
- name: Set read_only variable to 1 persistently - name: Set read_only variable to 1 persistently
community.mysql.mysql_variables: community.mysql.mysql_variables: