How to get "fmw_version_coherence.jar" to install Oracle Coherence Community Edition on Linux Server? #118
-
GoalI want to install Oracle Coherence Community Edition to Linux Server. Due to terms of my work, I can't use container images, can use only installing on server. What I didI'm proceeding with the installation following the instructions in the link below. I used ProblemI succeeded to installing and tried to start up coherence servers. e.g.
Want to doI want to use Oracle Coherence Community Edition, not GE. or installer is correct, but my operation may have a problem? (Is the link below different from the link above?) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@takeaki-m The instruction you linked to are for the commercial version of Coherence which Oracle delivers via an installer. Coherence CE is not delivered that way, there is no Oracle Installer. Coherence CE is open source and distributed on Maven Central. You use Coherence CE just like most open source applications and add it as a dependency to your project. See the docs https://coherence.community/latest/24.03/docs/#/docs/about/03_quickstart In a lot of cases having an installer for Coherence is pointless as really Coherence is a set of libraries that your application depends on. In all my many years of building Coherence applications I have never run Coherence from the installer location, it has always been built into my application distribution. |
Beta Was this translation helpful? Give feedback.
@takeaki-m The instruction you linked to are for the commercial version of Coherence which Oracle delivers via an installer. Coherence CE is not delivered that way, there is no Oracle Installer.
Coherence CE is open source and distributed on Maven Central. You use Coherence CE just like most open source applications and add it as a dependency to your project. See the docs https://coherence.community/latest/24.03/docs/#/docs/about/03_quickstart
In a lot of cases having an installer for Coherence is pointless as really Coherence is a set of libraries that your application depends on. In all my many years of building Coherence applications I have never run Coherence from the installer locati…