添加用户报错,无法打开/etc/passwd文件 [root@backup ~]# useradd 123456 useradd: cannot open /etc/passwd 此问题是 chattr +i /etc/passwd吧文件属性改了, 可以使用chattr -i来还原配置。 chatt ...
分类:
其他好文 时间:
2020-02-24 13:24:52
阅读次数:
76
出现这种原因主要是找不到对应sbt版本的集成插件, 解决办法:找到project/plugins.sbt 文件修改里面的sbt版本对应的插件版本,修改一致就ok了,比如我是1.2.8的sbt ,将sbt-assembly的版本改为0.14.5就好了 ...
分类:
其他好文 时间:
2020-02-24 12:59:03
阅读次数:
193
记一个使用vue router时的低级错误。 使用vue router时,打开网页出现如下错误: 一开始我以为是vue router没有安装好,重装后发现问题仍然存在。仔细检查过后发现问题出在main.js中的Vue对象中没有引用router: 在此总结一下使用vue router的步骤 首先安装好 ...
分类:
其他好文 时间:
2020-02-23 19:57:40
阅读次数:
183
报错如下: [*] Bundler failed to load and returned this error: 'cannot load such file -- bundler/setup'[*] You may need to uninstall or upgrade bundler 解决如 ...
分类:
其他好文 时间:
2020-02-23 13:09:47
阅读次数:
123
SQL> drop user test cascade;drop user test cascade*ERROR at line 1:ORA-01940: cannot drop a user that is currently connected SQL> select sid,serial# f ...
分类:
数据库 时间:
2020-02-21 20:27:59
阅读次数:
230
mysql8.0版本下命令行mysqld –skip-grant-tables 失效,无法登陆的问题1、管理员权限登陆cmd,不会使用管理员登陆的请搜索cmd,搜索结果右键。 2、命令行输入:net stop mysql;然后提示。服务停止中 --> 服务已停止,如出现其他错误请百度。 这只是一个示 ...
分类:
数据库 时间:
2020-02-20 15:03:39
阅读次数:
91
python版本: Django版本: 3.0.3 报错信息: File "D:\python_work\learning_log\users\urls.py", line 4, in <module> from django.contrib.auth.views import login Impo ...
分类:
其他好文 时间:
2020-02-20 13:25:18
阅读次数:
97
复杂查询可能出现异常类似于,有时你可能是在创建视图,也可能会出现下面的错误:Code: 352. DB::Exception: Received from localhost:9000. DB::Exception: Cannot refer column '表名.字段名' to table.首先c... ...
分类:
其他好文 时间:
2020-02-20 09:38:12
阅读次数:
309
1、错误/异常视图 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'baseDao' defined in class path resource [spring/bean ...
分类:
编程语言 时间:
2020-02-19 15:02:36
阅读次数:
122
cmd regedit HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters 新建一个REG_DWORD值,MaxUserPort 十进制 这个值定义了Windows可以对外发起的连接数量,默认不存在这个键值。系统 ...
分类:
其他好文 时间:
2020-02-19 13:27:09
阅读次数:
323