关于quartusII 错误 Error: Current license file does not support the EP*** device 错误原因总结 第一,有的人用了破解文件license.dat还出现了这样的提示,是因为quartusii要用到两个破解文件,另一个是sys_cpt.dll,把它替换\altera\71\quartus\bin中的同名文件就解决了. 第二,版本不对.有的人是7.1的程序,用的7.1 sp1的license.dat,甚至有人用8.1版本的破解去破解…
错误信息 [ERROR ] Error parsing configuration file: /etc/salt/minion - conf should be a document, not <type 'str'>. [ERROR ] DNS lookup of 'salt' failed. 修改minion文件的master是漏了空格 #master: salt 应该修改为 master:空格ip…
在安装CVSNT一开始用Administrator登录时总是报[login aborted]Switch to user failed due to configuration error. Contact your System Administrator.网上有说该硬盘安全权限的,但是不能解决问题.后来发现如下即可解决问题. 在Control Panel的Server Setting面板中Run as选项设置成client user.不要设置成Administrator. 但是还是有问题,创…
问题: Ubuntu12.04安装64位系统出现编译错误error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or dir 解决方法: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory 解决办法来源于:…
mysql安装过程中出现错误ERROR 1820 (HY000): You must SET PASSWORD before executing this statement解决 最近新装好的mysql在进入mysql工具时,总是有错误提示: # mysql -u root -p Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 或者 # mys…
ERROR 1005: Can't create table (errno: 121) errno 121 means a duplicate key error. Probably the table already exists in the InnoDB internal data dictionary, though the .frm file for the table has been deleted. This is themost common reason for gettin…
今天在虚拟机上打开apache出现如下错误: [root@ShiGuang ~]# service httpd start (20014)Internal error: Error retrieving pid file logs/httpd.pid Remove it before continuing if it is corrupted. 其实这个错误就是因为Apache目录下的logs 子目录下的httpd.pid 文件内容是空的.这个文件是记录进程ID的文件.因为这个文件是空的,就无法…
https://www.reddit.com/r/sysadmin/comments/677hep/chrome_58_not_supporting_self_signed_certificates/ Hello everybody, this week we found out that after rolling new update on Google Chrome (version 58), couple of our websites started to give error to…
Thrift-0.10.0 CenOS 7 编译错误 error: expected ')' before 'PRIu32' 在编译Thrift的时候,无论是Apache官网tar包,还是Github镜像,都会出现各种错误,其中一个比较头疼的就是标题描述的编译错误,经过捣鼓,终于妥协性的搞定了. make时的错误描述: src/thrift/server/TNonblockingServer.cpp: In member function 'void apache::thrift::server…
From: http://www.jb51.net/article/56952.htm 这篇文章主要介绍了MySQL错误ERROR 2002 (HY000): Can't connect to local MySQL server through socket,需要的朋友可以参考下 在安装好了MySQL之后,使用了新的配置文件后,MySQL服务器可以成功启动,但在登陆的时候出现了ERROR 2002 (HY000): Can't connect to local MySQL server t…
今天使用VSCODE 学习node.js, 想在git上push代码 于是在git上建立了一个私有的长裤, 连接后push代码时提示如下错误: error: failed to push some refs to 'git@github.com:....." Updates were rejected because the remote contains work that you do not have locally. This is usually caused by another…
最近开发项目需要使用JWplayer插件播放视频,但是无论换那个版本.换什么样的视频总是提示Error loading media: File could not be played错误,废了好大的劲终于解决了,开始以为是视频编码的事,最后无意间发现是iis不支持.mp4格式播放的问题. 解决办法: IIS默认配置没有添加MP4文件,导致打开MP4文件会404. 打开IIS管理器,MIME类型 添加,扩展名为mp4,类型为video/mp4 点击确定. 问题解决了,测试地址:http://118…
mysql 链接数满了的错误 ERROR 1040 (HY000): Too many connections 第一种处理方式: ./mysql -u root -p 登录成功后执行以下语句查询当前的最大连接数: select VARIABLE_VALUE from information_schema.GLOBAL_VARIABLES where VARIABLE_NAME='MAX_CONNECTIONS'; 执行以下语句修改最大连接数: set global max_connections…