Jordan Clark
06/20/2023, 12:07 AMjclausen
06/20/2023, 12:29 AMjclausen
06/20/2023, 12:29 AMJordan Clark
06/20/2023, 12:30 AMjclausen
06/20/2023, 12:30 AMJordan Clark
06/20/2023, 1:20 AMdougcain
07/12/2023, 11:41 AMFor Application Servers
On JEE installations, set the following JVM flag, "-Djdk.serialFilter= !org.mozilla.**;!com.sun.syndication.**;!org.apache.commons.beanutils.**; !org.jgroups.**", in the respective startup file depending on the type of Application Server being used.
Is this something that should go into the base commandbox? I have added to my server.json for the moment but wondered if there is a better way of making sure the default commandbox already has them?Josh
07/17/2023, 12:40 AMdougcain
07/17/2023, 9:46 AMdougcain
07/20/2023, 1:16 PMjclausen
07/20/2023, 1:24 PMjclausen
07/20/2023, 2:13 PMdougcain
07/20/2023, 2:24 PMdougcain
07/20/2023, 2:36 PM-Djdk.serialFilter= !org.mozilla.**;!com.sun.syndication.**;!org.apache.commons.beanutils.**;!org.jgroups.**;!com.sun.rowset.**
From https://helpx.adobe.com/security/products/coldfusion/apsb23-47.htmljclausen
07/20/2023, 2:39 PMjclausen
07/20/2023, 2:39 PMdougcain
07/20/2023, 2:44 PMCory Howitz
07/20/2023, 2:45 PMbdw429s
07/20/2023, 3:20 PMjclausen
07/20/2023, 3:54 PM=
sign:
-Djdk.serialFilter=!org.mozilla.**;!com.sun.syndication.**;!org.apache.commons.beanutils.**;!org.jgroups.**;!com.sun.rowset.**
bdw429s
07/20/2023, 4:09 PMchapmandu
07/25/2023, 4:03 AMbox install commandbox-fusionreactor
in production.. Interested to hear your approach. Thanks in advance..bhartsfield
09/13/2023, 2:32 PMgmurphy
09/13/2023, 2:37 PMTim Badolato
09/13/2023, 8:43 PMYou've asked for the engine [lucee@5.3.12.1] to be started,
| but this server home already has [lucee@5.3.10+120] deployed to it!
| In order to get the new version, you need to run 'server forget' on t
| his server and start it again
If I ssh into the container and run 'box server forget', the whole instance shuts off before it completes.
Then I tried from the host, running the command on the app directory, which succeeds, but after restarting the container, I get the same error.
Any ideas? What does the box server forget
actually do? Can I just do a rm -rf
command on a directory to do it manually?gavinbaumanis
09/21/2023, 7:08 AMgavinbaumanis
09/28/2023, 3:16 AMflushAtRequestEnd
at play...)
this.ormSettings = {
datasource = "GSN",
dialect = "MySQL",
dbCreate = "none",
cfcLocation = "/gsncfc/db",
automanageSession = false,
flushAtRequestEnd = false,
useDBForMapping = false,
eventHandling = true,
eventHandler = "gsncfc.db.GlobalEventHandler",
logSQL = false
};
gavinbaumanis
10/10/2023, 9:24 PMdougcain
10/11/2023, 2:07 PMAyushi
11/01/2023, 3:24 PMHi I am running docker container of ortussolutions/commandbox:adobe2021-3.8.0
with cfengine = adobe@2021 on ECS Fargate task.
When container starts running it is missing all these packages mentioned in install.txt file:
packages=felixclassloader\:2021.0.3.329779,zip:\2021.0.02.328618,chart\:2021.0.02.328618,pdf\:2021.0.02.328618,awss3legacy\:2021.0.02.328618,feed\:2021.0.02.328618,sqlserver\:2021.0.02.328618,document\:2021.0.02.328618,scheduler\:2021.0.02.328618,debugger\:2021.0.02.328618,mail\:2021.0.02.328618,image\:2021.0.02.328618,spreadsheet\:2021.0.02.328618,caching\:2021.0.02.328618,adminapi\:2021.0.02.328618,administrator\:2021.0.02.328618
All this packages are needed for our coldfusion application. I tried installing all the packages via below command in dockerfile but it doesn't help:
FROM ortussolutions/commandbox:adobe2021-3.8.0
WORKDIR /app
ENV ACCEPT_EULA "Y"
RUN box cfpm import /app/config/install.txt
Also, I tried running this command as entrypoint script but still getting same error. Since the docker image (ortussolutions/commandbox:adobe2021-3.8.0 ) once start running the container, it create WEB_INF dir and other startup process post which only it accept this command ( box cfpm import /app/config/install.txt_ to work.
For this we have to wait around 4-5 minutes then execute this command manually in docker cotnainer to get all packages installed. Anyway we can automate that during docker build.