search
HomeDatabaseMysql TutorialIntroduction to VMware Fusion virtual machine software

I have been messing with the Mac system recently. I was not very familiar with using Mac, so there were many problems during the installation process. For the convenience of future reference, and of course to prevent newbies like me from stepping into some pitfalls,

, so I will record these issues.

First let’s talk about the virtual machine software VMware Fusion. I downloaded the latest official version 8.5.7. Then start the installation, which is relatively easy. The most troublesome thing is how to install the WIn10 system? At first, I took a step-by-step approach and downloaded the Win10 ISO file through Safari, the browser that comes with Mac. The result is so frustrating, so slow. Later, I tried to download the ISO to my Baidu Netdisk offline through Baidu Netdisk, and then downloaded the Baidu Netdisk Mac version client. I downloaded the ISO through the client. The speed was also unstable, sometimes fast and sometimes slow. . It took 3 days to finally download it, so I couldn't wait to install it. As a result, a blue screen kept appearing, it kept restarting, and it could not be installed normally. I suspected that the ISO file might be damaged when downloaded through Baidu network disk. In order to verify this idea, I searched online and found that dual-system installation can be done through Boot Camp Assistant under Mac system. I installed it this way, and the problems that occurred were the same as under Fusion. So I am sure there is something wrong with the ISO file.

In order to download the intact ISO file, I can only use my ThinkPad to download it, and then copy the ISO file to my mobile hard drive. Then I started to plug the mobile hard drive into the Mac for installation. This time it was relatively smooth, and there was no blue screen restart problem. The system was finally installed, and I finally made progress. Then I started to install various tools under win10: Visual Studio 2013, Tortoise Git, Navicat Premuim, etc. I originally wanted to install mysql under Win10, but considering the issue of virtual machine storage space, I decided to install mysql directly under Mac. The nightmare began again.

Installing mysql itself is not complicated. Just go to the official website to download the dmg file, then double-click it, and then follow the prompts to install it. However, in order to reset the mysql root password, change it to a password you are familiar with instead of a temporary password. So the journey to reset your password begins. It is customary to search for relevant articles on Baidu. The general steps are as follows:

1. Open the preferences in the bottom dock, find mysql, and close the mysql service;

2. Enter the mysql/bin folder, obtain administrator rights, and disable the verification function of mysql. Enter in the terminal:

cd /usr/local/mysql/bin/

## sudo su

##                                                . The mysql

service is started.

3.Set a new password and enter it in the terminal (still in the mysql/bin folder just now):

##                                                       . root'@'localhost' = PASSWORD('The string corresponding to your new password');

After completing the above steps, restart mysql and you can log in normally with the modified password. But I want to connect to mysql on the host through Navicat in the virtual machine. I try to configure the connection information of mysql, and then click the "Test Connection" button. "ERROR 1130: Host 192.168.3.100 is not allowed to connect to this MySQL" pops up. server" prompt. This query was caused by mysql not authorizing other clients to connect. Later, it was set through the authorization method:

If you want to allow the user myuser to connect to the mysql server from the host with ip 192.168.1.3, And use mypassword as password
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'192.168.0.1' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;

The above is the general solution. By the way, another troublesome thing is that in win10 under Fusion, it is best to adjust the network connection to a non-shared mode. I changed it to Wi-Fi, so win10 The IP and the IP of the mac host are in the same network segment, so there is no problem in connecting to mysql. Otherwise, it will be more troublesome and you have to use Bridge or NAT forwarding to connect successfully.

The above is the detailed content of Introduction to VMware Fusion virtual machine software. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何为VMware虚拟机启用复制和粘贴如何为VMware虚拟机启用复制和粘贴Feb 21, 2024 am 10:09 AM

您可以轻松地在VMware虚拟机(VM)和物理系统之间复制和粘贴文本和文件。这种功能让您可以方便地在虚拟机和主机系统之间传输图像、格式化和非格式化文本,甚至电子邮件附件。本文将向您展示如何启用这一功能,并演示复制数据、文件和文件夹的方法。如何在VMware中启用复制/粘贴VMware提供了三种不同的方式将数据、文件或文件夹从虚拟机复制到物理计算机,反之亦然,如下所述:复制和粘贴要素拖放功能文件夹共享1]使用VMware工具启用复制粘贴如果您的VMWare安装和来宾操作系统满足要求,则可以使用键盘

Win11运行VMware虚拟机崩溃死机解决方案Win11运行VMware虚拟机崩溃死机解决方案Feb 14, 2024 pm 02:36 PM

很多用户由于某些需要或者爱好,需要在电脑上安装虚拟机,但是最近有Win11小伙伴发现自己的电脑一运行VMware虚拟机就崩溃死机,这该怎么办?其实这个问题并不难解决,下面小编就给大家带来了四种解决方案,希望可以帮到你。方法一:Hyper-V方案1、打开控制面板-程序-启用或关闭Windows功能,可能你的电脑上发现没有Hyper-V,连vm也无法使用(如果你的打开有的话就如下图勾上,重启电脑即可),没有Hyper-V需要安装,可以转到下面1.2步骤安装。2、系统上安装Hyper-V,新建一个记事

VMware Horizon Client无法打开[修复]VMware Horizon Client无法打开[修复]Feb 19, 2024 pm 11:21 PM

VMwareHorizon客户端可帮助您便捷地访问虚拟桌面。然而,有时虚拟桌面基础设施可能会遇到启动问题。本文将讨论当VMwareHorizon客户端未能成功启动时,您可以采取的解决方法。为什么我的VMwareHorizon客户端无法打开?在配置VDI时,如果未打开VMWareHorizon客户端,可能会出现错误。请确认您的IT管理员提供了正确的URL和凭据。如果一切正常,请按照本指南中提到的解决方案解决问题。修复未打开的VMWareHorizon客户端如果您的Windows计算机上未打开VMW

Win11与VMware虚拟机如何实现文件共享?Win11与VMware虚拟机如何实现文件共享?Jan 29, 2024 pm 09:39 PM

VMware虚拟机可以让用户在一台机器上同时运行两个或更多Windows、DOS、LINUX系统。那么VMware虚拟机与主机之间如何进行文件共享呢?今天小编就以Win11为例,给大家分享一下VMware虚拟机与主机文件共享设置教程。虚拟机文件共享?1、安装的VMware虚拟机的网络设置为桥接模式。在VMware虚拟机中,你可以通过以下步骤配置共享文件夹:点击虚拟机->虚拟机设置->选项,开启共享文件夹,并点击添加按钮设置文件夹路径。注意:开启共享文件夹操作需要在关闭虚拟机时进行。4、为共享文件

将VMware转换为VirtualBox,反之亦然将VMware转换为VirtualBox,反之亦然Feb 19, 2024 pm 05:57 PM

虚拟机是一种经济实惠的方式,让您在一台计算机上体验和使用多个操作系统。VMWare和VirtualBox是虚拟机行业的两大品牌。您可以轻松地将VMware虚拟机转换为VirtualBox虚拟机,反之亦然,这样您就可以在它们之间灵活切换计算机,无需重新创建。将虚拟机从VMWare迁移到VirtualBox并不复杂,反之亦然。只需按照下面的指示操作即可轻松完成。如何将VMware转换为VirtualBoxVMwareVM以.vmx格式存储,然后将转换为.ovf,这是VirtualBox和VMWare

VMware Horizon客户端在连接时冻结或停滞[修复]VMware Horizon客户端在连接时冻结或停滞[修复]Mar 03, 2024 am 09:37 AM

在使用VMWareHorizon客户端连接到VDI时,我们可能会遇到应用程序在身份验证过程中冻结或连接阻塞的情况。本文将探讨这个问题,并提供解决这种情况的方法。当VMWareHorizon客户端出现冻结或连接问题时,您可以采取一些措施来解决这一问题。修复VMWareHorizon客户端在连接时冻结或卡住如果VMWareHorizon客户端在Windows11/10上冻结或无法连接,请执行下面提到的解决方案:检查网络连接重新启动Horizon客户端检查Horizon服务器状态清除客户端缓存修复Ho

win10自带的看图软件叫什么win10自带的看图软件叫什么Oct 18, 2022 pm 02:48 PM

win10自带的看图软件叫“Microsoft照片”,其下载方法是:1、打开win10电脑;2、在Microsoft Store中搜索“Microsoft照片”并下载;3、将照片查看器的默认软件设置为【照片】即可。

VMware怎么启动VNC连接?VMware Workstation启用VNC连接方法VMware怎么启动VNC连接?VMware Workstation启用VNC连接方法Mar 13, 2024 pm 11:30 PM

  VMwareWorkstation作为常用的虚拟机软件,有很多的功能可以使用,有些用户想要使用VNC连接功能,可以让远程用户访问虚拟机,但是要先启动设置才可以使用,大多数人都不清楚操作方法,那么今天就来分享具体的操作步骤,希望能够给广大用户们带帮助,接下来让我们一起来看看操作方法吧。  VMwareWorkstation启用VNC连接方法:  1、双击打开软件,点击页面中的“编辑虚拟机设置”选项。  2、在新窗口中进入上方的“选项”选项卡中。  3、接着

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment