Tim 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?bdw429s
09/13/2023, 9:09 PMbdw429s
09/13/2023, 9:10 PMbdw429s
09/13/2023, 9:10 PMTim Badolato
09/13/2023, 9:10 PMbdw429s
09/13/2023, 9:12 PMbdw429s
09/13/2023, 9:13 PMbdw429s
09/13/2023, 9:14 PMbdw429s
09/13/2023, 9:14 PMTim Badolato
09/13/2023, 9:15 PMbdw429s
09/13/2023, 9:16 PMthis.xmlFeatures
in application.cfc
• if you JSON serialize any CFC instances, there's a bug there fixed on the latest snapshotjclausen
09/13/2023, 9:17 PMbdw429s
09/13/2023, 9:17 PMTim Badolato
09/13/2023, 9:18 PMTim Badolato
09/13/2023, 9:18 PMjclausen
09/13/2023, 9:18 PMjclausen
09/13/2023, 9:19 PMTim Badolato
09/13/2023, 9:20 PMjclausen
09/13/2023, 9:20 PMTim Badolato
09/13/2023, 9:20 PMTim Badolato
09/14/2023, 1:40 AMError loading shared library ld-linux-x86-64.so.2
when using the following Dockerfile:
FROM ortussolutions/commandbox:alpine
RUN box install commandbox-fusionreactor
RUN box config set server.defaults.fusionreactor.port=123
RUN box config set server.defaults.fusionreactor.password=xyz
RUN box fr register "..."
I also tried a new pre-warmed image and I'm getting the same error:
ortussolutions/commandbox:lucee5-alpine-3.7.12
This works with the old image.jclausen
09/14/2023, 1:41 AMTim Badolato
09/14/2023, 1:42 AMwheelie_cfml1:
container_name: cfml
restart: always
build: "."
environment:
cfconfigfile: "/app/.cfconfig.json"
PORT: 8080
SSL_PORT: 8443
CFCONFIG_ADMINPASSWORD: ...
volumes:
- .:/app
networks:
- dbnet
jclausen
09/14/2023, 1:43 AMTim Badolato
09/14/2023, 2:06 AMError occurred during initialization of VM
Could not find agent library /usr/lib/serverHome/fusionreactor/libfrjvmti_x64.so in absolute path, with error: Error loading shared library ld-linux-x86-64.so.2: No such file or directory (needed by /usr/lib/serverHome/fusionreactor/libfrjvmti_x64.so)
bdw429s
09/14/2023, 3:30 AMTim Badolato
09/14/2023, 4:25 PMHi Tim
Alpine is missing the Glibc libraries required for the debugger, and unfortunately we can't do anything about that. If an older version worked for you, you can download legacy versions from the download page.
If you disable the libs with the instructions in the guide here, you should still have monitoring and some system metrics.
Alpine is stripped back from an architecture perspective so getting it to have full monitoring capabilities is difficult, if you want full capabilities I would recommend switching to something like Debian or CentOS.
Kind Regards,
Nicholas Millard
@bdw429s fyibdw429s
09/14/2023, 4:37 PM