SOA Suite 中的集成 Weblogic 12C 错误 - Derby 服务器立即启动和停止
Error in Integrated Weblogic 12C in SOA Suite - Derby server start and stop immediately
我需要帮助来解决这个问题:
我已经使用开发人员包(来自 oracle 官方下载)安装了 Oracle SOA Suite 12c。
当我尝试启动集成的 weblogic 服务器(在 Jdeveloper 菜单 运行 中)时,它启动并显示正在侦听端口,但立即停止并出现以下错误:
Could: Not find or load main class
Stopping Derby Server
Derby Server Stopped
我的配置:
- Windows 2003 服务器企业版 x64
- Jre 7
- Jdk 1.7 x64
- Oracle soa 套件 12c
我在家里遇到了同样的错误,但在我的办公室和 Windows 环境中都没有。
发生的事情是,我在家里的用户名中有一个 SPACE,例如 "John Doe"。
我所做的是 运行 一个小的 PowerShell 脚本,用于通过 Windows 8.3 表示法。
这是 Powershell 脚本:
$configFiles = Get-ChildItem . *.cmd -rec
foreach ($file in $configFiles)
{
(Get-Content $file.PSPath) |
Foreach-Object { $_ -replace "Firstname Secondname", "FIRSTN~1" } |
Set-Content $file.PSPath
}
您可以通过查看 Oracle JDeveloper 12c 的控制台来获取您的 Weblogic 本地域实例的位置。
我的 Weblogic 域位于
C:\Users\<username>\AppData\Roaming\JDeveloper\system12.2.1.0.42.151011.0031\DefaultDomain
我需要帮助来解决这个问题:
我已经使用开发人员包(来自 oracle 官方下载)安装了 Oracle SOA Suite 12c。 当我尝试启动集成的 weblogic 服务器(在 Jdeveloper 菜单 运行 中)时,它启动并显示正在侦听端口,但立即停止并出现以下错误:
Could: Not find or load main class
Stopping Derby Server
Derby Server Stopped
我的配置:
- Windows 2003 服务器企业版 x64
- Jre 7
- Jdk 1.7 x64
- Oracle soa 套件 12c
我在家里遇到了同样的错误,但在我的办公室和 Windows 环境中都没有。
发生的事情是,我在家里的用户名中有一个 SPACE,例如 "John Doe"。
我所做的是 运行 一个小的 PowerShell 脚本,用于通过 Windows 8.3 表示法。
这是 Powershell 脚本:
$configFiles = Get-ChildItem . *.cmd -rec
foreach ($file in $configFiles)
{
(Get-Content $file.PSPath) |
Foreach-Object { $_ -replace "Firstname Secondname", "FIRSTN~1" } |
Set-Content $file.PSPath
}
您可以通过查看 Oracle JDeveloper 12c 的控制台来获取您的 Weblogic 本地域实例的位置。
我的 Weblogic 域位于
C:\Users\<username>\AppData\Roaming\JDeveloper\system12.2.1.0.42.151011.0031\DefaultDomain