摘要: 路径/u01/fmwhome/fmwcfg/user_projects/domains/esb_domain/bin 命令: 停止 ./stopWebLogic.sh 启动 nohup ./startWebLogic.sh > admin.out & 如果停止不掉 查找进程时需要grep Admin 阅读全文
posted @ 2022-02-15 11:01 wtlafoxmail 阅读(50) 评论(0) 推荐(0)
摘要: 在轮询任务创建时去掉勾选 分布式轮询 阅读全文
posted @ 2022-01-16 10:13 wtlafoxmail 阅读(230) 评论(0) 推荐(0)
摘要: 可能原因:路径问题 // 此处不能出现System.IO.Directory.GetCurrentDirectory() string configFilePath = System.IO.Directory.GetCurrentDirectory() + @"/config/app.json"; 阅读全文
posted @ 2022-01-07 18:04 wtlafoxmail 阅读(142) 评论(0) 推荐(0)
摘要: weblogic报错 "java.sql.SQLException: Cannot call Connection.commit in distributed transaction. Transaction Manager will commit the resource manager when 阅读全文
posted @ 2022-01-06 15:02 wtlafoxmail 阅读(246) 评论(0) 推荐(0)
摘要: 重启服务器 阅读全文
posted @ 2021-12-31 14:47 wtlafoxmail 阅读(40) 评论(0) 推荐(0)
摘要: DROP TABLE IF EXISTS "login"; CREATE TABLE "login" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "token" text(255), "create_time" TimeStamp NOT NULL DEFAU 阅读全文
posted @ 2021-12-08 20:27 wtlafoxmail 阅读(81) 评论(0) 推荐(0)
摘要: 匹配名字包含O的的节点 <xsl:template match="*[contains(name(.),'O')]"> <xsl:element name="{translate(name(.),'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUV 阅读全文
posted @ 2021-12-03 14:30 wtlafoxmail 阅读(87) 评论(0) 推荐(0)
摘要: 添加到管理员组 net localgroup Administrators 用户名 /add 从管理员组中移除 net localgroup Administrators 用户名 /delete 查看管理员列表 net localgroup Administrators 阅读全文
posted @ 2021-11-04 14:31 wtlafoxmail 阅读(1257) 评论(0) 推荐(0)
摘要: ###常用命令 ####系统信息 arch 显示机器的处理器架构 uname -m 显示机器的处理器架构 uname -r 显示正在使用的内核版本 dmidecode -q 显示硬件系统部件 - (SMBIOS / DMI) hdparm -i /dev/hda 罗列一个磁盘的架构特性 hdparm 阅读全文
posted @ 2021-10-25 11:38 wtlafoxmail 阅读(23) 评论(0) 推荐(0)
摘要: ALTER TABLE 表名 ADD COLUMN 字段名 TIMESTAMP null DEFAULT CURRENT_TIMESTAMP() COMMENT '备注' ALTER TABLE t_message ADD COLUMN create_time TIMESTAMP null DEFA 阅读全文
posted @ 2021-08-24 20:11 wtlafoxmail 阅读(150) 评论(0) 推荐(0)