下面是错误提示 IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! Someone could be eavesdropping on you right now (man-in-the-middle attack)! It is also possible that a host key has just been changed. The fingerprint for the RSA key sent by the remote ho…
  You can config file by this command: grep -rl "Could not detect Mac OS X Version from sw_vers output:" /Applications/Appium.app/ Terminal will show : /Applications/Appium.app//Contents/Resources/node_modules/appium/node_modules/appium-support/…
我的PLSQL不好用,提示ora-12514 错误时 我分两步干的: 1:用户名,密码,不写,提示错误后,cancel登陆 tools->preference左侧选->connection,右侧Oracle Home 里面选择OraDb10g_home1. 2:找到%oracle_home%NETWORK/ADMIN/LISTENER.ORA 修改如下:添加一段代码 # listener.ora Network Configuration File: D:/oracle/oracle10g/n…
MySQL安装提示一下错误 The security settings could not be applied to the database because the connection has failed with the following error. Error Nr. 1045 Access denied for user 'root'@'localhost' (using password: YES) If a personal firewall is running on y…
在使用PowerDesigner打开工程时, 提示打印错误的问题,具体错误信息提示如下: 在您可以执行与打印机有关的任务(例如页面设置或打印一个文档)之前,您必须已经安装打印机.您想现在安装打印机么?   解决办法: 打开windows的服务,把 Print Spooler 这个服务启动之后,问题就解决了…
近来安装oracle11g,使用后发现plsql和sqldeveloper等客户端工具不能用,提示以下错误: 1.ORA-12514: TNS: 程序无法监听 原因:OracleOraDb11g_home1TNSListener没有启动或不能启动 解决办法:若服务不能启动,请修改oracle安装目录下的D:\app\Administrator\product\11.2.0\dbhome_1\NETWORK\ADMIN中的listener.ora和tnsnames.ora中修改(ADDRESS =…
报错 在使用TortoiseGit时,clone自己搭建的gitlab报如错SSL certificate problem: self signed certificate 原因:自行搭建的gitlab配置了https,但是服务器的SSL证书是自签名,未经过可信CA签署 配置TortoiseGit忽略SSL证书验证 TortoiseGit -> Setting --> Edit global .gitconfig 添加如下配置: [http] sslVerify = false Tortois…
在win8.1 x64系统上使用sql2012进行附加数据库(包括在x86系统正在使用的数据库文件,直接拷贝附加在X64系统中)时,提示无法打开文件,5120错误. 这个错误是因为没有操作权限,所以附加的时候出错,只要设置这个文件或文件夹安全属性即可.解决办法: 1.打开该数据库文件存放的目录或数据库文件的属性窗口,选择“属性”菜单->选择“安全”标签->选择“编辑”按钮. 2.在选择组或用户名列表中,选择Authenticated Users(经过身份验证的用户),在权限列表中选中完全控制.…
换新手机配置Google Account继续使用Gmail服务,输入用户名.密码进入状态同步一段时间后再次提示输入用户名.密码并显示账号信息不正确.网上有人提到"修改用户密码"再进行尝试未果.猜想Windows Phone 8不被支持?参考Windows Live Mail设置手动IMAP.POP3问题依旧.试验在Windows Live Mail中删除账号重新添加也同样提示账号信息不正确,突然想起貌似上半年用Google的Application-specific passwords,…
假设你github的用户名是  helloworld  ,你在上面创建了一个 名为 hello 的 repository. 一. 与本地仓库进行关联 1.1用原生ssh进行关联,速度快: git remote add origin git@github.com/helloworld/hello.git 1.2用https进行关联,速度相对ssh慢点: git remote add origin https://github.com/helloworld/hello.git 二.如果不小心关联错了…