You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My system is Ubuntu Xenial, formula git is up to date and salt version is 2017.7.4+ds-1
I'm really battling with this formula. When I run the mysql state, or the indivitual states in a single state file, it fails, but when I run mysql.server followed by mysql.salt-user, then mysql.user in sequence manually it works fine.
Here is a stack trace of the failure. I have edited the server.sls file and added a 90s delay on service.running but had no luck.
ID: mysql_user_root_10.%
Function: mysql_user.present
Name: root
Result: False
Comment: An exception occurred in this state: Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/salt/state.py", line 1744, in call **cdata['kwargs'])
File "/usr/lib/python2.7/dist-packages/salt/loader.py", line 1702, in wrapper return f(*args, **kwargs)
File "/usr/lib/python2.7/dist-packages/salt/states/mysql_user.py", line 142, in present *connection_args):
File "/usr/lib/python2.7/dist-packages/salt/modules/mysql.py", line 1128, in user_exists dbc = _connect(**connection_args)
File "/usr/lib/python2.7/dist-packages/salt/modules/mysql.py", line 330, in _connect dbc = MySQLdb.connect(**connargs)
File "/usr/lib/python2.7/dist-packages/pymysql/init.py", line 88, in Connect
return Connection(*args, **kwargs)
File "/usr/lib/python2.7/dist-packages/pymysql/connections.py", line 679, in init
self.connect()
File "/usr/lib/python2.7/dist-packages/pymysql/connections.py", line 890, in connect
self._get_server_information()
File "/usr/lib/python2.7/dist-packages/pymysql/connections.py", line 1190, in _get_server_information
packet = self._read_packet()
File "/usr/lib/python2.7/dist-packages/pymysql/connections.py", line 966, in _read_packet
packet.check_error()
File "/usr/lib/python2.7/dist-packages/pymysql/connections.py", line 394, in check_error
err.raise_mysql_exception(self._data)
File "/usr/lib/python2.7/dist-packages/pymysql/err.py", line 120, in raise_mysql_exception
_check_mysql_exception(errinfo)
File "/usr/lib/python2.7/dist-packages/pymysql/err.py", line 115, in _check_mysql_exception
raise InternalError(errno, errorvalue)
InternalError: (1130, u"Host '127.0.0.1' is not allowed to connect to this MySQL server")
Started: 09:23:24.727920
Duration: 1.167 ms
Changes:
Here is a gist with my relevant config. It's about as simplistic as it gets.
This might be due to the fact that you are including these states individually, without implementing similar logic akin to what is found in mysql/init.sls:
I still have some more testing to do, but it seems like applying the same formula to a new container does the job. There must be something wrong with the original template container I was using.
Hi
My system is Ubuntu Xenial, formula git is up to date and salt version is 2017.7.4+ds-1
I'm really battling with this formula. When I run the mysql state, or the indivitual states in a single state file, it fails, but when I run mysql.server followed by mysql.salt-user, then mysql.user in sequence manually it works fine.
Here is a stack trace of the failure. I have edited the server.sls file and added a 90s delay on service.running but had no luck.
Here is a gist with my relevant config. It's about as simplistic as it gets.
https://gist.github.com/waynegemmell/f7fda05b54e81b463234a1ba704a4633
The text was updated successfully, but these errors were encountered: