• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






码源疯

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
1 2 3 4 下一页

2021年8月15日

su: /bin/bash: Permission denied问题排查
摘要: 今天使用root用户切换weblogic用户报错如下 vmxbt01:/home/weblogic # su weblogicsu: /bin/bash: Permission denied 最后查看了bin权限如下 发现权限不够,进行赋权限chmod 755 /bin后 有了权限后再次切换webl 阅读全文
posted @ 2021-08-15 12:35 码源疯 阅读(1110) 评论(0) 推荐(0)
 

2021年3月29日

myeclipse 提交tfs闪退解决方法
摘要: myeclipse 提交tfs闪退解决方法,主要还是jvm的问题 1.找到MyEclipse的安装目录,打开myeclipse.ini文件; 2.打开后把 myeclipse.ini 文件中的 -vm 下面的 jvm.dll 路径改成自己的JDK的 javaw.exe 路径; 3.在myeclips 阅读全文
posted @ 2021-03-29 13:55 码源疯 阅读(98) 评论(0) 推荐(0)
 

2021年1月7日

weblogic.management.DeploymentException: netscape.ldap.LDAPException: error result (52); LDAP server is unavailable
摘要: <Error> <Security> <BEA-090064> <The DeployableAuthorizer "myrealm_weblogic.security.providers.xacml.authorization.XACMLAuthorizationProviderImpl" ret 阅读全文
posted @ 2021-01-07 17:34 码源疯 阅读(912) 评论(0) 推荐(0)
 

2020年8月25日

linux环境查看及更改用户的用户所属组
摘要: 首先查看当前用户所属组 使用命令:id 用户名 例如下图 查看之后修改weblogic用户的所属用户组users为weblogic用户组 使用命令:usermod -g weblogic weblogic 修改成功之后再次查看是否修改正确 即修改成功。 阅读全文
posted @ 2020-08-25 14:57 码源疯 阅读(1774) 评论(0) 推荐(0)
 

2020年8月21日

java.security.NoSuchAlgorithmException: No such algorithm: SM4/ECB/PKCS5Padding
摘要: java.security.NoSuchAlgorithmException: No such algorithm: SM4/ECB/PKCS5Padding 最近自测一个SM4国密算法加解密过程中报如上错误,解决的具体方法如下, 先看看自己有没有这两个jar报 bcprov-jdk15on-1.5 阅读全文
posted @ 2020-08-21 15:51 码源疯 阅读(20738) 评论(0) 推荐(0)
 

2020年7月15日

Caused By: java.lang.AssertionError: Could not obtain the localhost address. The most likely cause is an error in the network configuration of this machine.
摘要: Caused By: java.lang.AssertionError: Could not obtain the localhost address. The most likely cause is an error in the network configuration of this ma 阅读全文
posted @ 2020-07-15 10:41 码源疯 阅读(1208) 评论(0) 推荐(0)
 

2019年11月18日

linux的cp命令的简单用法
摘要: linux的cp命令的简单用法,平时工作中用到最多的也就是复制文件或者文件夹到某一个目录 例如 1、把/home/weblogic/a.txt文件复制至/root/product/目录下 cp /home/weblogic/a.txt /root/product/ 2、把/home/weblogic 阅读全文
posted @ 2019-11-18 15:45 码源疯 阅读(5147) 评论(0) 推荐(0)
 

2019年11月15日

Could not obtain the localhost address. The most likely cause is an error in the network configuration of this machine.
摘要: Could not obtain the localhost address. The most likely cause is an error in the network configuration of this machine. 简单翻译一下,不能获取本地地址,最可能原因是这个机器的网络配 阅读全文
posted @ 2019-11-15 16:21 码源疯 阅读(782) 评论(0) 推荐(0)
 

2019年11月14日

linux环境下修改文件或文件夹的用户组和所有者
摘要: 例如修改a.txt 的文件为用户组weblogic chgrp weblogic a.txt 修改a文件夹及文件夹里面所有文件为用户组weblogic chgrp -R weblogic a 修改a.txt文件所有者为weblogic chown weblogic a.txt 修改a文件夹及文件夹里 阅读全文
posted @ 2019-11-14 20:44 码源疯 阅读(5108) 评论(0) 推荐(0)
 

2019年11月13日

informix数据库常用SQL语句
摘要: 1、给test表增加字段a语法 例如 alter table (表名test) add (字段a) varchar(40); 其中varchar 为字段类型,括号里为字段长度40 2、给test表删除字段a语法 例如 alter table (表名test) drop (字段a); 阅读全文
posted @ 2019-11-13 11:25 码源疯 阅读(874) 评论(0) 推荐(0)
 
1 2 3 4 下一页