更新记录 本文迁移自Panda666原博客,原发布时间:2021年7月7日. 一.说明 Windows Server 2019 Core,是纯命令行的Windows Server版本,没有办法使用GUI操作和配置系统,可以使用PowerShell Remoting进行连接和配置系统,除此之外还可以使用SSH进行连接管理.本文尝试使用SSH进行连接Windows Server Core. 本文中使用的环境版本信息: 操作系统:Windows Server 2019 Core 1809 终端软件:X…
在将一台服务器的操作系统由Windows Server 2012升级为Windows Server 2012 R2之后,在Mac电脑上用微软的远程桌面软件怎么也连不上服务器,错误信息如下: Remote Desktop Connection cannot verify the identity of the computer that you want to connect to. Try reconnecting to the Windows-based computer, or contac…
废话不多说,直接开干 首先要打开服务器的MySQL端口号:3306(当然,也可以把服务器的防火墙直接关闭,不过不安全) 1.打开服务器管理器,有个高级安全Windows防火墙,下面有一个入站规则, 右击新建规则,之后选择端口,输入端口号3306就OK了. 2.要对用户授权: 登录服务器的MySQL,然后执行 use mysql 然后执行 grant all privileges on *.* to '用户名'@'%' identified by "密码"; 然后可能会遇到1064的错误…