How to configure Ejabberd server with MSSQL - ejabberd

I'm trying to connect Ejabberd server with MSSQL in linux. As of now I have installed Ejabberd 18.01 and MSSQL in ubuntu. Also Dumped all Mnesia tables into MSSQL. From the documentation page I'm getting to know that we need to configure freetds and unixODBC. I tried multiple configuration as suggested by official website but still not able to create the connection. Can someone please help to get it resolved?

Related

MySql credentials

I'm trying to install MySql.
The installer asks for username and password, it says it's provided in the server configuration but I don't know how to get such information.
Any help?
You need to manually install mysql server by using the add option in the Mysql intsaller. Add mysql server 8.0 or something.
don't you have a mysql server ? if yes please add those credentials to that. if not you can install XAMPP into your local PC or connect to hosted mysql server.
Can't imagine your requirement and what are going to do.

Open edX full stack version mysql configuration

I am wondering if there is anyone try to use mysql workbench to connect to openedx fullstack version. I have a devstack version which is running on my local machine and doesn't have any issues. Also, I am able to connect to mysql database by using SSH on mysql workbench(devstack).
Please see the official document here: https://github.com/edx/edx-platform/wiki/Developing-on-the-edX-Developer-Stack#the-edx-platform-database-that-devstack-uses
But I am not able to find any document regrading the process of fullstack mysql connection configuration.
Any ideas or suggestions? Appreciate your help!

connect to mysql with wavemaker

I have recently downloaded Wavemaker because I feel it best suites my needs, however when I try and connect to my database on a mysql server hosted with godaddy, I keep getting access denied. However I can connect using exactly the same loggin info for sql workbench and razorsql just to see if I had my credentials correct and I have no problem connecting using those other two tools, is it me or is wavemaker being a pain?
Did you remember to install the MySQL JDBC DRIVER?
If not you can get it from the MySQL site, or install it on your Linux machine using the appropriate install commands. I had the same problem and after installing the driver everything worked great.
I'm posting my WaveMaker MySQL connection info (the database properties file) in hopes it might help:
mafiamgr_warmturkeyDB.connectionUrl=jdbc\:mysql\://localhost\:3306/mafiamgr_warmturkey?useUnicode\=yes&characterEncoding\=UTF-8&zeroDateTimeBehavior\=convertToNull
mafiamgr_warmturkeyDB.tableFilter=.*
mafiamgr_warmturkeyDB.driverClassName=com.mysql.jdbc.Driver
mafiamgr_warmturkeyDB.username=topsecret_xref
mafiamgr_warmturkeyDB.password=568626f144a0c56862568626f14047568626f1412a43
mafiamgr_warmturkeyDB.reverseNamingStrategy=com.wavemaker.tools.data.reveng.DefaultRevengNamingStrategy
mafiamgr_warmturkeyDB.schemaFilter=.*
mafiamgr_warmturkeyDB.dialect=com.wavemaker.runtime.data.dialect.MySQLDialect

MYSQL - Connect MYSQL Workbench to a MYSQL server on localhost

I know the question I am about to ask is a very stupid once but I am new to MYSQL so please bear with me. Want I want to do is create a database on my local machine and also access/manipulate it from their. I thought MYSQL WB was the all in one tool to do this i.e it will also allow me to create a database and also make a MYSQL server from which to access it. But I came to know the Workbench is just a front end and you need to have a some kind of a seperate MYSQL server module for it to access.
The problem is I can't seem to find any link for a simple a server module on the MYSQL download site.
http://dev.mysql.com/downloads/ .
It has one Cluster Server but I don't think this is what I am looking for. If anyone could provide a link to the MYSQL server module using which I could connect MYSQL Workbench on my local host, and the steps to connect them that would be great.
The one your looking for is named MySQL Community Edition. The current version is 5.6.14. Just select your platform (mac, linux or windows) and follow the installation guide.
If you wish to have php/mysql then you can download xampp. It includes all the necessary tools. Or if you wish to install it separately then follow this for Windows,
http://dev.mysql.com/downloads/installer/

MySQL Connector net Why we need it?

Hey can some1 explain me why we need to download MySQL connector net? im creating a website on visual studio 2010 and linking it with phpMyAdmin database.....but what does MySQL connector actually does?
thanks
PhpMyAdmin is a mysql database client made with php and connected to mysql database and hosted in Apache Server.Here we can execute mysql dml/ddl directly to view the immediate results.
MySql Connector Net is the library through which a Dot net Application will connect to mysql for further database communication.
Hope this will help you..