want to connect to mysql from parallel desktop - mysql

I wanna connect to mysql database which is on my Mac from parallel desktop(windows 11) ,but I can't. How can I connect to Mac IP from my parallel?
(I tried to install mysql workbench on parallel but it says "your processor is not adequate). So, I had to install database on Mac.I also tried bridged wifi and using localhost but it can't find the database.

I have a partial solution for you. I modified the MySQL Workbench installation to run on Mac ARM. I also use USB Webserver to run a MySQL database on Windows ARM. MAMP and WAMP don't seem to run on Windows with Parallels.
I too am trying to figure out how to access a database running on Mac from C# Windows Apps on Windows. Have not had success yet.
You can get the install files for Workbench on my github page.
https://github.com/shadsluiter/MySQLWorkbenchM1MacParallels

Related

MySQL localhost cant connect windows 10

Here is the setups
Old windows 7 laptop I've got mysql installed on it. Project in Livecode connect to it. Projects in Unity connect to it.
New windows 10 laptop exact same versions of livecode, mysql and unity installed. None of them can connect to MySQL locally. I can connect with unity to the MySQL on my website just not the local one. Yes the server is running. Yes the 3306 port is open in the firewall. Yes MySQL Workbench connects fine to the database. I just cant get anything else to connect to it.
worked it out.
has to be an older version of mysql, .net connector needs to be installed, passwords must be set to standard authentication not sha256

double installation MySQL on Win10

Some time ago I installed XAMPP on my win10 desktop (AMD Phenom, 8gb). The reason for this is that I want to do some wordpress development.
I now want to learn how to work with MySQL and Python. Do I now have to install a new version of MySQL that runs on Win10 or can I use the currently installation that runs under XAMPP? I understand that when using XAMPP I first have to start up the XAMPP server.
I do not want to experiment as I just reinstalled win10 since I got stuck installing so many application on it.
Is it just a matter of starting up XAMPP and then connecting the database with Python? Will Python recognise it?
All help is much appreciated,
Naveen
You can use the current instance and connect with Python. As long as you have the username, password, and using localhost or an IP address all should go find.

How do I setup a visual MySQL client if I already have MySQL installed in my system?

I have downloaded the MySQL from the following link:
http://dev.mysql.com/downloads/mysql/
Downloaded the version 8.0.0. I have OS X 10.10.5
Now, I suppose I need to configure a visual MySQL client on my laptop to write queries. For that, I have installed sequelpro (sequelpro.com).
I need help on following points:
- Since there are a number of sample databases which one can use to learn SQL, can you please guide me on few such databases. My objective is to learn advanced SQL.
- Also, how do I configure my client (sequelpro) to connect to that database so that I can run queries.
As of now, I am stuck with the following screenshot with no clue what to do next.
Thanks a lot. Screenshot here
Based on the fact you said in the comments you have OSX and you installed mysql manually without phpmyadmin I suggest you download and install mamp.
mamp
1: https://www.mamp.info/en/ is,
MAMP installs a local server environment in a matter of seconds on
your computer. It comes free of charge, and is easily installed. MAMP
will not compromise any existing Apache installation already running
on your system. You can install Apache, PHP and MySQL without starting
a script or having to change any configuration files! Furthermore, if
MAMP is no longer needed, just delete the MAMP folder and everything
returns to its original state (i.e. MAMP does not modify any of the
"normal" system).
Basically it is a fake server that runs on your computer. This will be yours for localhost development. You can use it to serve your localhost php applications, change versions of php and gives you a GUI for mysql which is phpmyadmin.
Once you install mamp
you might need to configure mamp to use the mamp mysql but most likley it will work out of the box. If you do run into any problems make sure you stop the instance of mysql you installed already before running mamp then trying to ran mamp again and it should be using the correct version.

How to use a GUI tool to administer a SQLite database on a virtual machine

I know how to do this for MySQL.
I am using Mac OS X 10.7.5
I run VirtualBox with the guest OS as 12.10 Ubuntu Server edition.
Inside the Ubuntu, I installed mySQL and SQLite3.
MySQL runs on the usual 3306 port in the Ubuntu.
Using the port forwarding feature in VirtualBox, I port-forwarded port 3122 on the host OS(Lion) to the ssh port 22 on the guest OS(Ubuntu).
I run the software Sequel Pro on my Macbook which has a SSH access option.
See screenshot.
Using this method, I can administer the mySQL databases on the Ubuntu Server where I run my web application development.
How do I administer the SQLite3 databases in a similar way?
I have downloaded the SQLite3 Database Browser, but there is no SSH option as far as I can see.
Unless the app comes with SSH tunnelling capabilities you are out of luck. Still here are a few alternatives for you to try:
You can use a native app inside the VM. SQLite3 Database Browser is available for Ubuntu as well.
Since sqlite databases are basically files you could mount the VM as an SSH volume on your Mac and open the file with SQLite3 Database Browser.

Workbench did not install Mysql in services. Should I do it manually? How?

I just installed mysql workbench CE 5.2.
I tried to create and open a connection
and it said "Can't Connect to MYSQL server on '127.0.0.1' (10061)"
I looked around the answers on stackoverflow.
Eventually I found my way on services.
I saw that Mysql was not there.
dev.mysql.com says that I should install it with "mysqld" but it's not found inside the workbench installer.
What should I do?
If there is a way please tell it step by step.
Thank you!
Have you installed MySql server on the local machine? Workbench is just a GUI program to make it easier to access a database - be it on you local machine or a remote machine.
Just install mysql on your local machine. See http://dev.mysql.com/downloads/
There's a MySQL Installer for Windows which does install everything you need in this regard. Including several different server version, connectors, tools like Workbench and more. This installer should be your first attempt.
Of course you can also install the server separately. Download the msi and run the installer. Make sure you name your service properly. mysqld is usually not a name we use on Windows for a service. I recommend something like MySQL56 (for a 5.6 server).