Connection by ODBC - openshift

I'm trying connect to my Oracle database in Windows by ODBC to upload data in MySQL database of openshift cloud service. I cannot connect with MySQL database by Tcp/Ip.
How I can connect to MySQL from Oracle pl/sql?

You will not be able to connect directly to your OpenShift MySQL database, you will need to use the rhc port-forward command to create a connection from your local computer to your gear so that you can access MySQL directly.

Related

Connect to cloudways mysql db with microsoft access

I have been trying to create an SSH tunnel in order to connect a microsoft access frontend to a mysql database on my cloudways server. I have successfully connected to it and tested the mysql connection through putty, however it does not appear to let me connect to the DB on the ODBC with Microsoft Access. Not sure why it is not accepting the ip/port as local host.

Manipulating a MySQL database via MS Access over an SSH connection (PuTTY)

I use PuTTY to access a remote MySQL database via 'ssh' and then use mysql through PuTTY.
Is there any way I could open the same in Microsoft Access database manager and append data to the MySQL table(s) remotely?
I have an Excel file and I want to insert its contents to the MySQL db and it would be very tiresome through putty command line.
Just install the MySQL ODBC driver on your PC: http://dev.mysql.com/downloads/connector/odbc/
Then you can link your MySQL tables to your Access database and use them directly.
In linux server access db in local m/c to set tunnel address for putty .

connecting to remote database using spoon over network

I have a job which has source connection as oracle on windows.
On Destination it should update a mysql database table on ubuntu linux server over ssh.
Is this possible to do?
In insert/update step is it possible to give connection type over ssh?
In need of help.
Target insert/update step works through JDBC connection. Therefore you need to open port on MySQL DB to be able to connect to DB.
You can open a connection via Putty and use 127.0.0.1 in the jdbc connector to connect to your DB via the tunnel opened by your putty session.

How to create a mysql database on localmachine and remote connect to it

How can I create a mysql database on my own pc and remote connect to it from external source?
What do I need?
You can try and use XAMPP
Find it here: http://www.apachefriends.org/en/xampp-windows.html
It will let you host Mysql server inlcuding PHPMyAdmin. If you open your ports, you can connect remotely to PHPMyAdmin and manage your Mysql database.

cloudbees database dump

How i can export the mysql database out of cloudbees ?
I'd like to use mysqldump or comparable command, but my database is hosted by cloudbees so I can't ssh to the mysql host to run such a command.
You can connect to your database from outside the Cloudbees network, using mysql connection parameters you can grab from https://run.cloudbees.com/a/{{accountId}}#db-manage.
Use your favorite mysql tools to export and manage your database, like mysql workbench.