一,报错的现象: 1,提示信息: jenkins.plugins.publish_over.BapPublisherException: Failed to add SSH key. Message [invalid privatekey: [B@60373f7] 如图: 2,系统环境: fedora 30 [root@localhost ~]# more /etc/redhat-release Fedora release 30 (Thirty) 内核 : [root@localhost ~]…
1.数据类型      2.数据表的引擎 数据表 mysql> show tables; +------------------+ | Tables_in_market | +------------------+ | customers_info | | orders | +------------------+ rows in set (0.00 sec) 遇到错误信息 mysql> alter table orders add constraint fk_orders foreign k…
使用Vue+Webpack搭建工程时,在webpack.config.js中的module的rules里针对各种文件配置加载工具.在针对css文件配置时遇到一个问题:打包构建时报错——Module build failed: Unknown word. 配置内容如下: { test: /\.css$/, use: [ 'css-loader', 'style-loader' ] } 在网上找解决方案时看到一种方法,将这段配置注释掉,不会影响css代码的引入,也不会再报错,不过作者并未找到原因.但…
jenkins配置SVN报错,如图:…
MySQL第二天早上第一次连接超时报错,解决方法com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure Last packet sent to the server was 0 ms ago 最近碰到一个mysql5…
使用Notepad++编码编译时报错(已解决?) 使用Notepad++编码,编译的时候经常会报错,说什么GBK编码啥啥啥~~~但同样的编码用ECLIPSE就没有问题.再有,用记事本把他保存成ANSI格式也没有问题.******难道JAVA编码不都是用UTF-8格式的吗? *****本帅今天决定暂不用Notepad++了,还是用ECLIPSE,省得麻烦 本帅今天又用Notepad++编译程序,一个偶然的机会发现,win7的cmd窗口是用的ANSI格式编码的,这样编译汉字时会有乱码.于是本帅就把N…
早上ytkah在测试laravel用composer安装一些插件时出现了一些错误,提示如下,是github的ssh密匙认证错误,提示要重新生成token,然后保存在/root/.config/composer/auth.json文件中 Cloning failed using an ssh key for authentication, enter your GitHub credentials to access private repos Head to https://github.com…
gitkraken clone远程仓库时报错 Configured SSH key is invalid. Please confirm that is properly associated with your Git provider. 其实这个报错已经很明显了,在gitkraken的preferences->authentication中生成的SSH公钥不能与git提供者(自己服务器)的公钥关联. 其实就是没有让服务器登记gitkraken的SSH公钥 解决办法,找到SSH公钥的默认路径:…
注解配置时报错:org.hibernate.MappingException: Unknown entity: net.mingyang.cms.bean.User org.hibernate.MappingException: Unknown entity: net.mingyang.cms.bean.User at org.hibernate.internal.SessionFactoryImpl.getEntityPersister(SessionFactoryImpl.java:1096…
记录自己的生活!   一.事发背景 在pycharm中直接安装第三方库时因为版本问题总是无法安装成功,事情不大,但是很重要.   二.经过 最开始我自己电脑上安装了Python3.6和Python2.7两个版本,我正常使用是3.6版的.因为一次其他原因导致重新安装了所有的.开始我以为是版本问题,但是我把2.7的卸载了,只留了3.6版的.在pycharm中直接安装第三方库时还是报错,在pycharm中查看pip版本显示的是10.0.1而在命令行模式下查看的pip版本是9.0.3,在pycharm中…