Hello Everyone,
I have been trying to deploy ERPNext on Azure using a Linux VM and a MariaDB server, I have Installed bench on the VM and can connect to the database using
mysql -h Server_name.mariadb.database.azure.com --user server admin login name -p
I have set the “db_host” key/value pair as the server name in common_site_config.json file
I have set the database to listen to the VM’s public IP and also added the database port in both inbound and outbound port rules
Yet anytime i try bench new-site site1.remote i get this error
Traceback (most recent call last):
File “/usr/lib/python3.5/runpy.py”, line 184, in _run_module_as_main
“main”, mod_spec)
File “/usr/lib/python3.5/runpy.py”, line 85, in _run_code
exec(code, run_globals)
File “/home/talleyrand333/1/apps/frappe/frappe/utils/bench_helper.py”, line 97, in
main()
File “/home/talleyrand333/1/apps/frappe/frappe/utils/bench_helper.py”, line 18, in main
click.Group(commands=commands)(prog_name=‘bench’)
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/click/core.py”, line 764, in call
return self.main(*args, **kwargs)
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/click/core.py”, line 717, in main
rv = self.invoke(ctx)
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/click/core.py”, line 1137, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/click/core.py”, line 1137, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/click/core.py”, line 956, in invoke
return ctx.invoke(self.callback, **ctx.params)
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/click/core.py”, line 555, in invoke
return callback(*args, **kwargs)
File “/home/talleyrand333/1/apps/frappe/frappe/commands/site.py”, line 32, in new_site
db_type=db_type)
File “/home/talleyrand333/1/apps/frappe/frappe/commands/site.py”, line 69, in _new_site
source_sql=source_sql, force=force, reinstall=reinstall, db_type=db_type)
File “/home/talleyrand333/1/apps/frappe/frappe/installer.py”, line 34, in install_db
setup_database(force, source_sql, verbose)
File “/home/talleyrand333/1/apps/frappe/frappe/database/init.py”, line 16, in setup_database
return frappe.database.mariadb.setup_db.setup_database(force, source_sql, verbose)
File “/home/talleyrand333/1/apps/frappe/frappe/database/mariadb/setup_db.py”, line 39, in setup_database
if force or (db_name not in dbman.get_database_list()):
File “/home/talleyrand333/1/apps/frappe/frappe/database/db_manager.py”, line 61, in get_database_list
return [d[0] for d in self.db.sql(“SHOW DATABASES”)]
File “/home/talleyrand333/1/apps/frappe/frappe/database/database.py”, line 122, in sql
self.connect()
File “/home/talleyrand333/1/apps/frappe/frappe/database/database.py”, line 75, in connect
self._conn = self.get_connection()
File “/home/talleyrand333/1/apps/frappe/frappe/database/mariadb/database.py”, line 90, in get_connection
local_infile = frappe.conf.local_infile)
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/pymysql/init.py”, line 94, in Connect
return Connection(*args, **kwargs)
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/pymysql/connections.py”, line 325, in init
self.connect()
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/pymysql/connections.py”, line 599, in connect
self._request_authentication()
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/pymysql/connections.py”, line 861, in _request_authentication
auth_packet = self._read_packet()
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/pymysql/connections.py”, line 684, in _read_packet
packet.check_error()
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/pymysql/protocol.py”, line 220, in check_error
err.raise_mysql_exception(self._data)
File “/home/talleyrand333/1/env/lib/python3.5/site-packages/pymysql/err.py”, line 109, in raise_mysql_exception
raise errorclass(errno, errval)
pymysql.err.InternalError: (9002, ‘The connection string may not be right. Please visit portal for references.\x00’)
I can’t seem to find what i am doing wrong, any sort of help would be really great .