#常出现

Linux出现cannot create temp file for here-document: No space left on device的问题解决

在终端输入:cd/ho按tab键时,显示错误:bash:cannotcreatetempfileforhere-document:Nospaceleftondevice这是由于该磁盘的空间已经满了,这时候可以进行扩容,或者将该磁盘的部分目录迁移到别的磁盘。以下为解决思路,查找最大的文件,然后将其干掉:1、使用命令df-...

Linux下运行Java项目时,出现No X11 DISPLAY variable was set, but this program performed an operation which requires it.的问题解决

在~/.bashrc环境变量文件最下方加入:exportDISPLAY=:0.0然后,刷新环境变量以使其生效:source~/.bashrc参考:http://stackoverflow.com/questions/662421/no-x11-display-variable-what-does-it-mean...

Maven出现User setting file does not exist ....m2setting.xml的问题解决(同时也解决用户.m2目录下无setting.xml文件)

如果Eclipse中出现Usersettingfiledoesnotexist....m2setting.xml这样的问题,解决方法如下:1、拷贝%M2_HOME%/conf/settings.xml的文件到%USER_HOME%/.m2/settings.xml中即可。经过研究,同时也发现,在Maven安装好之后,%...

JSP页面顶端出现错误:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path的问题解决

原理:把RunTime容器添加进去,比如tomcat的。1、项目右键->【BuildPath】->【ConfigureBuildPath...】  2、把tomcat的runtime添加进去3、如果发现JRE的版本不正确,也可以进行更新,如下是我改成jre8.0的。这里也可以直接配置,选...

Eclipse出现:An internal error occurred during: "Retrieving archetypes:". GC overhead limit exceeded的问题解决

网上说修改虚拟内存的方式,其实不太可行,最直接的方式就是删除以前的workspace,重新使用一个新的workspace。...

Eclipse使用Maven时出现:Index downloads are disabled, search results may be incomplete.问题解决

参考:http://www.cnblogs.com/AloneSword/p/4146884.html中的设置,操作如下:1、全局设置【Windows】->【Preferences】->【Maven】->勾选【Downloadrespositoryindexupdatesonstartup】完成后重启...

Windows 10系统出现:“出现系统还原使用的卷影复制服务无法运行...”的问题解决

在服务中是:VolumeShadowCopy和MicrosoftSoftwareShadowCopyProvider这两项。把它开启。...

Jenkins连接TFS出现错误:“jenkins com.microsoft.tfs.core.exceptions.TECoreException”的问题收集

没成功解决过,下面提供一些收集的链接地址,因为这个问题真的很少。https://social.msdn.microsoft.com/Forums/vstudio/en-US/1a75a0b2-4591-4edd-999a-9696149c8144/integration-with-jenkins?forum=tfsin...

Jenkins连接git时出现“Failed to connect to repository : Command ... HEAD" returned status code 128:”的问题解决

网上说的解决方法如下:其实生成ssh时不应该使用当前用户去生成ssh,而是使用jenkins这个用户去生成ssh,然后再去git服务器上配置你生成key,最后再jenkins上配置返回给你的key。参考:http://www.jianshu.com/p/ed0edb93e234http://stackoverflow....

Maven出现错误No plugin found for prefix 'jetty' in the current project and in the plugin groups的问题解决

只需在maven的setting.xml文件上加入如下节点:<pluginGroups><pluginGroup>org.mortbay.jetty</pluginGroup></pluginGroups>setting.xml文件放在maven运行文件夹的conf文件夹...
代码星球 ·2020-04-04

Maven项目导入到Eclipse时Build出现the user operation is waiting for building workspace to complete的问题解决

解决办法如下:1.选择菜单栏的【Project】,然后把菜单栏中【BuildAutomatically】前面的对钩去掉。...

SQLServer出现不允许保存更改的问题解决

如图所示:解决方法:【工具】->【选项】 ...

Mac下启动MySQL出现错误“the /usr/local/mysql/data directory is not owned by the 'mysql' or '_mysql' user”解决

错误如下:Warringthe/usr/local/mysql/datadirectoryisnotownedbythe'mysql'or'_mysql'user这应该是某种情况下导致/usr/local/mysql/data的宿主发生了改变。解决方法:终端输入:sudochown-Rmysql/usr/local/m...
代码星球 ·2020-04-04

brew udpate出现错误“/usr/local is not writable.”的问题解决

如图所示:在命令行输入:sudochown-R当前登录的用户名/usr/local再次输入:brewupdate问题解决。...
首页上一页...4142434445...下一页尾页