Express version doesn't "just run" here

Dave,

maybe a clarification of the process will help. it’s all very simple
stuff, really.

every Java Runtime Environment (JRE) ships with an executable program
named “java” (e.g. java.exe in Windows). in order to run a Java
program, like Catalina in this case (which is the servlet container
component of Tomcat, that in turn runs Lucee), you need to call the java
executable and point to the java program’s main entry point. (a slight
variation when running as a service, where you reference the jvm.dll as
opposed to the java executable).

so now the paths come into play.

most batch (and shell) scripts that ship with java programs don’t know
where the JRE/bin is installed, so it’s become the standard way of using
environment variables like JAVA_HOME (points to the JDK) and JRE_HOME
(points to… well… the JRE). then the script does something like
that (pseudo-cfscript-code):

if (fileExists(“#JRE_HOME#/bin/java.exe”))
bin = “#JRE_HOME#/bin”;
else if (fileExists(“#JAVA_HOME#/jre/bin/java.exe”))
bin = “#JAVA_HOME#/jre/bin”;
else {

echo("The JRE_HOME environment variable is not defined correctly.

This environment variable is needed to run this program");
abort;
}

execute “#bin#/java” args;

so in your case modifying the batch script and removing “directory”
prefix before the “java” call would have been sufficient.

if we need to improve the scripts, we will do it as soon as possible
once we find the problems (user reporting is the best way for us to find
problems).

HTH,

Igal

p.s. if you have the JRE’s bin directory in your system classpath, you
can simply call “java”, as you did when you tried “java -version” and
got the JRE to report its version (if you hadn’t had the bin directory
in your system classpath you would have gotten an error).On 2/6/2015 4:33 AM, Dave Merrill wrote:

Yes, the JDK that the system JAVA_HOME var points to contains a JRE.
I’ve also tried pointing JAVA_HOME directly at the jre dir, in
startup.bat, no joy. Only thing that has worked so far is setting
JRE_HOME to point there, in startup.bat.

Just to note, the system environment var JAVA_HOME already points to
the same JDK, and works for other apps.

Dave

On Thursday, February 5, 2015 at 10:49:26 PM UTC-5, mmm mmm wrote:

O.K. when you installed jdk did you also install the public jre?
If so everything should have worked fine,
if you did not install the public jre there still is a jre in the
jdk folder,
tomcat needs to be pointed to that jre, like I posted earlier
which seems to be the correct way after checking with some tomcat
forums.

http://www.codejava.net/servers/tomcat/4-ways-to-change-jre-for-tomcat
<http://www.codejava.net/servers/tomcat/4-ways-to-change-jre-for-tomcat>



On Thursday, February 5, 2015 at 5:55:33 AM UTC-6, Dave Merrill wrote:

    Thanks for jumping in Igal.

    Echoing JAVA_HOME, it points to a Java 1.7 JDK, valid and used
    by multiple ACF and Railo instances on this box without
    problems. Java version reported is 1.7.0_75, which as I
    understand it is fine.

    I'm sorry guys (not you specifically Igal), but these various
    responses are still totally unclear to me. On one level it
    doesn't matter to me, since I'm up and running after setting
    JDK_HOME in startup.bat and shutdown.bat, but in terms of
    making it clear to others with similar problems what they
    should do, we're not there yet.

    To quote myself, this is my
    as-yet-unconfirmed-by-the-community hypothesis:

        a) If you do have JAVA_HOME pointing to a valid JDK with a
        supported version and still have this problem, try setting
        JDK_HOME in startup.bat (and shutdown.bat)
        b) There will be a new build at some point that will make
        that step unnecessary

        Is that right?


    I'm not trying to be difficult, or critical of anyone, just
    trying to leave clear, unambiguous info for anyone who just
    wants this to work.

    Thanks,
    Dave
     

    On Wednesday, February 4, 2015 at 6:46:32 PM UTC-5, igal wrote:

        yes, "Unsupported major.minor version 51.0" is a Java
        version.  51 is Java 7.

        Lucee does not require Java 8 to run, no.

        what do you see if you go to a command line and you run
        the following two commands:

            echo %JAVA_HOME%

            java -version

        ?

        On 2/3/2015 7:27 AM, Dave Merrill wrote:
        Thanks Mark, that was at least partially helpful. I did
        see an error running it that way, which I'll try to
        retype here; tried to pipe the result to a file, but it
        just echoed the environment vars, not the error.

        Exception in thread "main"
        java.lang.UnsupportedClassVersionErrror:
        org/apache/catalina/startup/Bootstrap : Unsupported
        major.minor version 51.0
        Could not find the main class
        org.apache.catalina.startup.Bootstrap. Program will exit.

        Is this about supported Java versions? If so, and I need
        to install Java 1.8, but don't want to change the system
        environment var, where should I set JAVA_HOME so Luceee
        sees it? Directly in startup.bat? Some config?

        Thanks again,
        Dave

        On Tuesday, February 3, 2015 at 9:36:18 AM UTC-5, Mark Drew wrote:

            Hi Dave

            In the command line do the following

            > cd lucee
            > cd bin
            > catalina.bat run 

            That should give you all the output 

            otherwise just open up lucee/logs/catalina.out and
            that will tell you what is happening at startup

            Regards

            Mark Drew
            On 3 Feb 2015, at 14:33, Dave Merrill <enig...@gmail.com> wrote:

            I have Java 1.7 installed, and the system
            environment var JAVA_HOME points to it.

            - Does Lucee actually require 1.8? Where are the
            system requirements documented?

            - Do I need to set JAVA_HOME somewhere in the Lucee
            startup script or configs, or is the system var
            sufficient?

            Dave

            On Tuesday, February 3, 2015 at 8:58:49 AM UTC-5, Adam De Lay wrote:

                Dave,

                I had the same problem you did initially.  I'm
                running on Win 8.1 and when I tried to run
                startup.bat, it opened and closed.  What I found
                out was that I needed to have installed (I
                believe) JRE 1.8 and set the JAVA_HOME env var.
                 Once I had that installed, then I retried
                running the startup.bat and it ran and opened a
                new command window (Tomcat) but when I looked at
                the log file, there was still some problem (I
                believe it was a binding issue because of how
                many times I had tried running the startup.bat).
                 I rebooted and then everything came up as it
                should when I ran the batch file.

                Hopefully that helps.

                Adam De Lay

                On Tuesday, February 3, 2015 at 8:16:12 AM UTC-5, Dave Merrill wrote:

                    Please excuse my unfamiliarity with the
                    underpinnings of the express version, but
                    for me, it doesn't "just run" (Win7 Pro).
                    The included docs seem to be for some of the
                    components used, not this package as a
                    whole, and don't appear to address
                    potentially necessary configuration issues.
                    Is this supposed to work now?

                    I know it's early, not everything is soup
                    yet, no criticism is intended, just want to
                    get it running, and maybe help others who
                    want the same. Maybe more familiarity with
                    this infrastructure is assumed, but ideally,
                    anyone could download the express package
                    and be up and running with nothing but the
                    instructions provided. At minimum, if
                    configuration or environment setup is
                    required, a Lucee-specific start-from-zero
                    guide should be provided. Better error
                    messaging would be great too.

                    Here's what happens here: When I just double
                    click startup.bat, it just exits, probably
                    expected, but if so, should be documented
                    somewhere. If I run it from the cmd line, it
                    reads out some environment vars, then
                    returns to the cmd prompt, without actually
                    starting the Lucee engine, or complaining
                    about why it couldn't, as far as I can tell.
                    Ran the cmd prompt as admin, no difference.
                    The logs directory is empty.

                    Nothing in startup.bat appears to be machine
                    or environment-specific, and nothing in
                    web.xml, context.xml, or server.xml jumped
                    out at me as needing to be edited. 

                    Thanks for any thoughts, and again, my
                    apologies for not knowing whatever is it
                    that probably should be obvious to folks
                    with more Java background. I've been working
                    in CFML for many years, but clearly I'm
                    missing some required info, and I'm quite
                    likely not alone in that.

                    Dave


            -- 
            You received this message because you are subscribed
            to the Google Groups "Lucee" group.
            To unsubscribe from this group and stop receiving
            emails from it, send an email
            to lucee+un...@googlegroups.com.
            To post to this group, send email
            to lu...@googlegroups.com.
            To view this discussion on the web
            visit https://groups.google.com/d/msgid/lucee/b1da3fb3-65f0-47ba-b76c-c9ec783c370c%40googlegroups.com
            <https://groups.google.com/d/msgid/lucee/b1da3fb3-65f0-47ba-b76c-c9ec783c370c%40googlegroups.com?utm_medium=email&utm_source=footer>.
            For more options,
            visit https://groups.google.com/d/optout
            <https://groups.google.com/d/optout>.
        -- 
        You received this message because you are subscribed to
        the Google Groups "Lucee" group.
        To unsubscribe from this group and stop receiving emails
        from it, send an email to lucee+un...@googlegroups.com.
        To post to this group, send email to lu...@googlegroups.com.
        To view this discussion on the web visit
        https://groups.google.com/d/msgid/lucee/577801b5-7e60-4ec4-85a2-427dd114f8f2%40googlegroups.com
        <https://groups.google.com/d/msgid/lucee/577801b5-7e60-4ec4-85a2-427dd114f8f2%40googlegroups.com?utm_medium=email&utm_source=footer>.
        For more options, visit
        https://groups.google.com/d/optout
        <https://groups.google.com/d/optout>.


You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+unsubscribe@googlegroups.com
mailto:lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com
mailto:lucee@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/f582db63-eb8f-4621-9484-5efa4d5a61e7%40googlegroups.com
https://groups.google.com/d/msgid/lucee/f582db63-eb8f-4621-9484-5efa4d5a61e7%40googlegroups.com?utm_medium=email&utm_source=footer.
For more options, visit https://groups.google.com/d/optout.

The issue is that your system is running a Java 6 JDK:

Using JRE_HOME: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home

But the Tomcat bootstrap application requires Java 7 (51.0 is Java 7):

Exception in thread “main” java.lang.UnsupportedClassVersionError: org/apache/catalina/startup/Bootstrap : Unsupported major.minor version 51.0

Easiest solution for your case would be to install Java 7 or 8 on your Mac and set JRE_HOME to the appropriate directory.

Cheers
Kai

export JRE_HOME=“/usr/libexec/java_home -v '1.8*'

Hi Margaret,

I have Lucee, both Express and via Tomcat running on the Mac no problem at
all. You say:

When I run java -version it says 1.6.0-65.

Is that starting from the terminal without changing directory? If so then
you still have an old Java version installed as well and the path is
resolving first to v1.6. If I do this I get the following:

andrew$ java -version
java version “1.7.0_75”
Java™ SE Runtime Environment (build 1.7.0_75-b13)
Java HotSpot™ 64-Bit Server VM (build 24.75-b04, mixed mode)
If I use “whereis” to find java in the path I get:

andrew$ whereis java
/usr/bin/java

Then looking at /usr/bin/java I see that it is a symbolic link:

andrew$ ll /usr/bin/java
lrwxr-xr-x 1 root wheel 74 4 Dec 08:57 /usr/bin/java →
/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java

Following that I find that in the “Versions” directory in the above path I
have:

andrew$ ll /System/Library/Frameworks/JavaVM.framework/Versions/
total 64
lrwxr-xr-x 1 root wheel 10 4 Dec 08:57 1.4 → CurrentJDK
lrwxr-xr-x 1 root wheel 10 4 Dec 08:57 1.4.2 → CurrentJDK
lrwxr-xr-x 1 root wheel 10 4 Dec 08:57 1.5 → CurrentJDK
lrwxr-xr-x 1 root wheel 10 4 Dec 08:57 1.5.0 → CurrentJDK
lrwxr-xr-x 1 root wheel 10 4 Dec 08:57 1.6 → CurrentJDK
lrwxr-xr-x 1 root wheel 10 4 Dec 08:57 1.6.0 → CurrentJDK
drwxr-xr-x 8 root wheel 272 4 Dec 08:57 A
lrwxr-xr-x 1 root wheel 1 4 Dec 08:57 Current → A
lrwxr-xr-x 1 root wheel 59 4 Dec 08:57 CurrentJDK →
/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents

And that the “Current” directory is symlinked to “A” and in “A” (no idea
why it is “A”) is version 1.7.x.

Check this and I assume you will find that somewhere in those symlinks you
are still linking to 1.6. Change the symlink and it should then work for
you.

Kind regards,

Andrew
about.me http://about.me/andrew_dixon
mso http://www.mso.net - Lucee http://lucee.org - MemberOn 19 April 2015 at 18:29, Margaret Phillips <@Margaret_Phillips> wrote:

Bob, I too am having a horrible time getting Lucee to run on the Mac
10.9.5. I never had such a hard time getting anything else to run on the
mac.
I have Java 8 installed but I am still getting the unsupported version
issue error. When I run java -version it says 1.6.0-65. Is it possible to
get this to run on a Mac or not?

On Sunday, February 8, 2015 at 4:08:54 PM UTC-5, Bob Dronski wrote:

Sean,

Thanks for the info. Unfortunately, it seems harder to get rid
of/override java 6 in 10.9 than I figured. Tried following Oracle’s
Directions, but didn’t seem to do enough. I will get back to this
sometime, but had to give up and get some actual work done.

I’m glad the issue is not on the lucee side, that’s for sure. Of course,
this doesn’t mean I won’t stop hating dealing with Java configs on client
machines!

bob

On Feb 7, 2015, at 9:15 PM, Sean Herrala hok...@gmail.com wrote:

export JRE_HOME=“/usr/libexec/java_home -v '1.8*'


You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+un...@googlegroups.com.
To post to this group, send email to lu...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/8b8ac4c1-6aa3-4019-993f-f26f7a923344%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.


You received this message because you are subscribed to the Google Groups
“Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an
email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/0c443e1b-68b1-47d1-889a-45ba18d41da9%40googlegroups.com
https://groups.google.com/d/msgid/lucee/0c443e1b-68b1-47d1-889a-45ba18d41da9%40googlegroups.com?utm_medium=email&utm_source=footer
.

For more options, visit https://groups.google.com/d/optout.

There is also this:

http://cfmlprojects.org/artifacts/org/lucee/lucee.tomcat.modcfml.jre/4.5.1.008/

(You’d want the Darwin zip)

The lucee-ctl script should even let you install it as a service, if you
want it to automatically have it start.

It’s not the latest, but you could update through the admin.

I’ve set up all the bundles so that changing the JRE/JDK used is
straight forward (either move it to the JRE dir or remove the JRE dir
and use an environment variable), since that’s kind of been an issue on
OS X and Windows.

There’s also a version of lucee-cli which is set up to be an “express”
server:

http://cfmlprojects.org/artifacts/org/lucee/lucee.cli.express/1.0.0.4.5.1.008/

Micha had asked about a different way of doing “express”-- I like this
approach, it’s definitely different. :slight_smile:

When I get a chance I’ll update things again for 5, and make another
push for getting the totes awesome build scripts incorporated-- it’s
just going to take some coordination, and I’ve been busy.

-DenOn 4/19/15 1:54 PM, Jon Clausen wrote:

Margaret,

Since I run both ACF and Lucee on my Mac, I use the CommandBox embedded
server and reverse-proxying through Apache when I need to test against
Railo/Lucee (or you can use standalone).

If you want to save yourself some hassle, install CommandBox
(https://github.com/Ortus-Solutions/commandbox ), grab the Lucee 4.5
jars (
http://bitbucket.org/lucee/lucee/downloads/lucee–4.5.1.000-jars.zip )
and drop them in ~/.CommandBox/lib/. From the root of your project run
|box server start| and you’ll be running Lucee (I know Luis has a ticket
open convert everything to Lucee from Railo, but I don’t know, as of
this posting, if he’s gotten around to updating that yet).

I’m on OS X 10.0 now, but used this method on Mavericks and everything
in the upgrade transferred just fine.

If you need to use different Java versions, you can use jEnv and
Homebrew to do so very effectively
(Managing multiple versions of Java on OS X · Andrew Jones )

Jon

Margaret,

Since I run both ACF and Lucee on my Mac, I use the CommandBox embedded server and reverse-proxying through Apache when I need to test against Railo/Lucee (or you can use standalone).

If you want to save yourself some hassle, install CommandBox (https://github.com/Ortus-Solutions/commandbox ), grab the Lucee 4.5 jars ( http://bitbucket.org/lucee/lucee/downloads/lucee–4.5.1.000-jars.zip ) and drop them in ~/.CommandBox/lib/. From the root of your project run box server start and you’ll be running Lucee (I know Luis has a ticket open convert everything to Lucee from Railo, but I don’t know, as of this posting, if he’s gotten around to updating that yet).

I’m on OS X 10.0 now, but used this method on Mavericks and everything in the upgrade transferred just fine.

If you need to use different Java versions, you can use jEnv and Homebrew to do so very effectively (Managing multiple versions of Java on OS X · Andrew Jones )

Jon

Bob, I too am having a horrible time getting Lucee to run on the Mac 10.9.5. I never had such a hard time getting anything else to run on the mac.
I have Java 8 installed but I am still getting the unsupported version issue error. When I run java -version it says 1.6.0-65. Is it possible to get this to run on a Mac or not?

Sean,

Thanks for the info. Unfortunately, it seems harder to get rid of/override java 6 in 10.9 than I figured. Tried following Oracle’s Directions, but didn’t seem to do enough. I will get back to this sometime, but had to give up and get some actual work done.

I’m glad the issue is not on the lucee side, that’s for sure. Of course, this doesn’t mean I won’t stop hating dealing with Java configs on client machines!

bobOn April 19, 2015 at 1:29:42 PM, Margaret Phillips (@Margaret_Phillips) wrote:
On Sunday, February 8, 2015 at 4:08:54 PM UTC-5, Bob Dronski wrote:

On Feb 7, 2015, at 9:15 PM, Sean Herrala hok...@gmail.com wrote:

export JRE_HOME=“/usr/libexec/java_home -v '1.8*'


You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+un...@googlegroups.com.
To post to this group, send email to lu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/8b8ac4c1-6aa3-4019-993f-f26f7a923344%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/0c443e1b-68b1-47d1-889a-45ba18d41da9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Bob, I too am having a horrible time getting Lucee to run on the Mac
10.9.5. I never had such a hard time getting anything else to run on the
mac.
I have Java 8 installed but I am still getting the unsupported version
issue error. When I run java -version it says 1.6.0-65. Is it possible to
get this to run on a Mac or not?On Sunday, February 8, 2015 at 4:08:54 PM UTC-5, Bob Dronski wrote:

Sean,

Thanks for the info. Unfortunately, it seems harder to get rid of/override
java 6 in 10.9 than I figured. Tried following Oracle’s Directions, but
didn’t seem to do enough. I will get back to this sometime, but had to
give up and get some actual work done.

I’m glad the issue is not on the lucee side, that’s for sure. Of course,
this doesn’t mean I won’t stop hating dealing with Java configs on client
machines!

bob

On Feb 7, 2015, at 9:15 PM, Sean Herrala <hok...@gmail.com <javascript:>> wrote:

export JRE_HOME=“/usr/libexec/java_home -v '1.8*'


You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+un...@googlegroups.com <javascript:>.
To post to this group, send email to lu...@googlegroups.com
<javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/8b8ac4c1-6aa3-4019-993f-f26f7a923344%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Hello
I was using Railo and am moving to Lucee.
Railo express - I unzipped and clicked on start.bat and it worked. No need
to change edit fix.
Is there a Lucee express like that?
I want to check compatible issues, not become installer wizard.
Thank you.
E

The express version doesn’t work for you? Download Lucee

You can also check out CommandBox, which runs Lucee by default: https://www.ortussolutions.com/products/commandboxOn July 24, 2015 at 3:38:23 PM, Eois McRae (@Eois_McRae) wrote:

Hello
I was using Railo and am moving to Lucee.
Railo express - I unzipped and clicked on start.bat and it worked. No need to change edit fix.
Is there a Lucee express like that?
I want to check compatible issues, not become installer wizard.
Thank you.
E

You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Try running the .bat file from the the command line in windows rather
than just double clicking it. IT should then give you a verbose error
rather than just closing the window.

Eois McRae wrote:>

Hello,
No, the express version doesn’t work for me. I download it, unzip it,
click on startup.bat, a command window opens and closes quickly and
lucee isn’t up and running.
CommandBox worked and I haven’t explored running CFML through it yet.
I’d prefer just a Lucee express that works like Railo did, click and go.
E

On Friday, July 24, 2015 at 4:11:02 PM UTC-4, Jon Clausen wrote:

The express version doesn’t work for you?
Download Lucee
http://lucee.org/downloads.html

http://lucee.org/downloads.html
You can also check out CommandBox, which runs Lucee by default:
CommandBox
https://www.ortussolutions.com/products/commandbox

On July 24, 2015 at 3:38:23 PM, Eois McRae (eo...@nextstagevolution.com <javascript:>) wrote:

Hello
I was using Railo and am moving to Lucee.
Railo express - I unzipped and clicked on start.bat and it
worked. No need to change edit fix.
Is there a Lucee express like that?
I want to check compatible issues, not become installer wizard.
Thank you.
E

You received this message because you are subscribed to the
Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it,
send an email to lucee+un...@googlegroups.com <javascript:>.
To post to this group, send email to lu...@googlegroups.com
<javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com
https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com?utm_medium=email&utm_source=footer.
For more options, visit https://groups.google.com/d/optout
https://groups.google.com/d/optout.


See Lucee at CFCamp Oct 22 & 23 2015 @ Munich Airport, Germany - Get
your ticket NOW - http://www.cfcamp.org/

You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+unsubscribe@googlegroups.com
mailto:lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com
mailto:lucee@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/bf43792a-21f6-4330-93c7-2b485e86755d%40googlegroups.com

https://groups.google.com/d/msgid/lucee/bf43792a-21f6-4330-93c7-2b485e86755d%40googlegroups.com?utm_medium=email&utm_source=footer.
For more options, visit https://groups.google.com/d/optout.

Hello,
No, the express version doesn’t work for me. I download it, unzip it, click
on startup.bat, a command window opens and closes quickly and lucee isn’t
up and running.
CommandBox worked and I haven’t explored running CFML through it yet.
I’d prefer just a Lucee express that works like Railo did, click and go.
EOn Friday, July 24, 2015 at 4:11:02 PM UTC-4, Jon Clausen wrote:

The express version doesn’t work for you? Download Lucee

http://lucee.org/downloads.html
You can also check out CommandBox, which runs Lucee by default:
CommandBox

On July 24, 2015 at 3:38:23 PM, Eois McRae (eo...@nextstagevolution.com <javascript:>) wrote:

Hello
I was using Railo and am moving to Lucee.
Railo express - I unzipped and clicked on start.bat and it worked. No need
to change edit fix.
Is there a Lucee express like that?
I want to check compatible issues, not become installer wizard.
Thank you.
E

You received this message because you are subscribed to the Google Groups
“Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an
email to lucee+un...@googlegroups.com <javascript:>.
To post to this group, send email to lu...@googlegroups.com <javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com
https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout.

The issue mostly is, that the JRE_HOME or JAVA_HOME isn’t correctly set our defined in the batch.

GertSent from somewhere on the road

Am 18.08.2015 um 17:49 schrieb Mark Drew <@Mark_Drew>:

Try running the .bat file from the the command line in windows rather than just double clicking it. IT should then give you a verbose error rather than just closing the window.

Eois McRae wrote:

Hello,
No, the express version doesn’t work for me. I download it, unzip it,
click on startup.bat, a command window opens and closes quickly and
lucee isn’t up and running.
CommandBox worked and I haven’t explored running CFML through it yet.
I’d prefer just a Lucee express that works like Railo did, click and go.
E

On Friday, July 24, 2015 at 4:11:02 PM UTC-4, Jon Clausen wrote:

The express version doesn’t work for you?
http://lucee.org/downloads.html
<http://lucee.org/downloads.html>

<http://lucee.org/downloads.html>
You can also check out CommandBox, which runs Lucee by default:
https://www.ortussolutions.com/products/commandbox
<https://www.ortussolutions.com/products/commandbox>

On July 24, 2015 at 3:38:23 PM, Eois McRae (eo...@nextstagevolution.com <javascript:>) wrote:
Hello
I was using Railo and am moving to Lucee.
Railo express - I unzipped and clicked on start.bat and it
worked. No need to change edit fix.
Is there a Lucee express like that?
I want to check compatible issues, not become installer wizard.
Thank you.
E
--
You received this message because you are subscribed to the
Google Groups "Lucee" group.
To unsubscribe from this group and stop receiving emails from it,
send an email to lucee+un...@googlegroups.com <javascript:>.
To post to this group, send email to lu...@googlegroups.com
<javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com
<https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout
<https://groups.google.com/d/optout>.


See Lucee at CFCamp Oct 22 & 23 2015 @ Munich Airport, Germany - Get
your ticket NOW - http://www.cfcamp.org/

You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+unsubscribe@googlegroups.com
mailto:lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com
mailto:lucee@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/bf43792a-21f6-4330-93c7-2b485e86755d%40googlegroups.com
https://groups.google.com/d/msgid/lucee/bf43792a-21f6-4330-93c7-2b485e86755d%40googlegroups.com?utm_medium=email&utm_source=footer.
For more options, visit https://groups.google.com/d/optout.

See Lucee at CFCamp Oct 22 & 23 2015 @ Munich Airport, Germany - Get your ticket NOW - http://www.cfcamp.org/

You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/55D35418.9000105%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

have you got IIS installed? lucee (did) assume c:\inetpub\wwwwroot existsOn Wednesday, 19 August 2015 08:21:18 UTC+10, Gert Franz wrote:

The issue mostly is, that the JRE_HOME or JAVA_HOME isn’t correctly set
our defined in the batch.

Gert

Sent from somewhere on the road

Am 18.08.2015 um 17:49 schrieb Mark Drew <mark...@gmail.com <javascript:>

:

Try running the .bat file from the the command line in windows rather
than just double clicking it. IT should then give you a verbose error
rather than just closing the window.

Eois McRae wrote:

Hello,
No, the express version doesn’t work for me. I download it, unzip it,
click on startup.bat, a command window opens and closes quickly and
lucee isn’t up and running.
CommandBox worked and I haven’t explored running CFML through it yet.
I’d prefer just a Lucee express that works like Railo did, click and go.
E

On Friday, July 24, 2015 at 4:11:02 PM UTC-4, Jon Clausen wrote:

The express version doesn’t work for you?
http://lucee.org/downloads.html
<http://lucee.org/downloads.html>

<http://lucee.org/downloads.html>
You can also check out CommandBox, which runs Lucee by default:
https://www.ortussolutions.com/products/commandbox
<https://www.ortussolutions.com/products/commandbox>

On July 24, 2015 at 3:38:23 PM, Eois McRae (eo...@nextstagevolution.com <javascript:>) wrote:


Hello
I was using Railo and am moving to Lucee.
Railo express - I unzipped and clicked on start.bat and it
worked. No need to change edit fix.
Is there a Lucee express like that?
I want to check compatible issues, not become installer wizard.
Thank you.
E
--
You received this message because you are subscribed to the
Google Groups "Lucee" group.
To unsubscribe from this group and stop receiving emails from it,
send an email to lucee+un...@googlegroups.com <javascript:>.
To post to this group, send email to lu...@googlegroups.com
<javascript:>.
To view this discussion on the web visit

https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com
<
https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com?utm_medium=email&utm_source=footer

.
For more options, visit https://groups.google.com/d/optout
https://groups.google.com/d/optout.


See Lucee at CFCamp Oct 22 & 23 2015 @ Munich Airport, Germany - Get
your ticket NOW - http://www.cfcamp.org/

You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+un...@googlegroups.com <javascript:>
<mailto:lucee...@googlegroups.com <javascript:>>.
To post to this group, send email to lu...@googlegroups.com <javascript:>
<mailto...@googlegroups.com <javascript:>>.
To view this discussion on the web visit

https://groups.google.com/d/msgid/lucee/bf43792a-21f6-4330-93c7-2b485e86755d%40googlegroups.com
<
https://groups.google.com/d/msgid/lucee/bf43792a-21f6-4330-93c7-2b485e86755d%40googlegroups.com?utm_medium=email&utm_source=footer

.
For more options, visit https://groups.google.com/d/optout.


See Lucee at CFCamp Oct 22 & 23 2015 @ Munich Airport, Germany - Get your
ticket NOW - http://www.cfcamp.org/

You received this message because you are subscribed to the Google Groups
“Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an
email to lucee+un...@googlegroups.com <javascript:>.
To post to this group, send email to lu...@googlegroups.com <javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/55D35418.9000105%40gmail.com
https://groups.google.com/d/msgid/lucee/55D35418.9000105%40gmail.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout.

Express doesn’t need that path.

Mark Drew

  • Sent by typing with my thumbs.> On 20 Aug 2015, at 07:27, Zac Spitzer <@Zac_Spitzer> wrote:

have you got IIS installed? lucee (did) assume c:\inetpub\wwwwroot exists

On Wednesday, 19 August 2015 08:21:18 UTC+10, Gert Franz wrote:
The issue mostly is, that the JRE_HOME or JAVA_HOME isn’t correctly set our defined in the batch.

Gert

Sent from somewhere on the road

Am 18.08.2015 um 17:49 schrieb Mark Drew mark...@gmail.com:

Try running the .bat file from the the command line in windows rather than just double clicking it. IT should then give you a verbose error rather than just closing the window.

Eois McRae wrote:

Hello,
No, the express version doesn’t work for me. I download it, unzip it,
click on startup.bat, a command window opens and closes quickly and
lucee isn’t up and running.
CommandBox worked and I haven’t explored running CFML through it yet.
I’d prefer just a Lucee express that works like Railo did, click and go.
E

On Friday, July 24, 2015 at 4:11:02 PM UTC-4, Jon Clausen wrote:

The express version doesn’t work for you?
http://lucee.org/downloads.html
<http://lucee.org/downloads.html>

<http://lucee.org/downloads.html>
You can also check out CommandBox, which runs Lucee by default:
https://www.ortussolutions.com/products/commandbox
<https://www.ortussolutions.com/products/commandbox>

On July 24, 2015 at 3:38:23 PM, Eois McRae (eo...@nextstagevolution.com <javascript:>) wrote:
Hello
I was using Railo and am moving to Lucee.
Railo express - I unzipped and clicked on start.bat and it
worked. No need to change edit fix.
Is there a Lucee express like that?
I want to check compatible issues, not become installer wizard.
Thank you.
E
--
You received this message because you are subscribed to the
Google Groups "Lucee" group.
To unsubscribe from this group and stop receiving emails from it,
send an email to lucee+un...@googlegroups.com <javascript:>.
To post to this group, send email to lu...@googlegroups.com
<javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com
<https://groups.google.com/d/msgid/lucee/0f1fb5d6-f849-4249-8626-adc236e62cdc%40googlegroups.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout
<https://groups.google.com/d/optout>.


See Lucee at CFCamp Oct 22 & 23 2015 @ Munich Airport, Germany - Get
your ticket NOW - http://www.cfcamp.org/

You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+un...@googlegroups.com
mailto:lucee...@googlegroups.com.
To post to this group, send email to lu...@googlegroups.com
mailto...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/bf43792a-21f6-4330-93c7-2b485e86755d%40googlegroups.com
https://groups.google.com/d/msgid/lucee/bf43792a-21f6-4330-93c7-2b485e86755d%40googlegroups.com?utm_medium=email&utm_source=footer.
For more options, visit https://groups.google.com/d/optout.

See Lucee at CFCamp Oct 22 & 23 2015 @ Munich Airport, Germany - Get your ticket NOW - http://www.cfcamp.org/

You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+un...@googlegroups.com.
To post to this group, send email to lu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/55D35418.9000105%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


See Lucee at CFCamp Oct 22 & 23 2015 @ Munich Airport, Germany - Get your ticket NOW - http://www.cfcamp.org/

You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/90c1d023-3dcf-45a4-9387-a98a7912b7c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Please run the following from a DOS window and report your output:

C:>echo %JAVA_HOME%
C:>echo %JRE_HOME%

Thanks!

~BradOn Tuesday, December 1, 2015 at 11:23:35 PM UTC-6, Robert L wrote:

Hi.
I just downloaded Lucee Express for the first time today and got same
problem when selecting startup.bat. I’ve been using Railo since.
I ran it from Command window & got the "Neither the JAVA_HOME nor the
JRE_HOME environment variable is defined.

I did set the variables in the setclasspath.bat file, and works fine now.

This is just a heads up, as I assumed this error/problem would have been
updated/fixed from August discussion.
Because if there’s anyone NEW to Lucee trying the Express edition,
immediate frustration may set in. It took me a while to search for this
solution. If this can’t be set properly on setup, maybe a Note for setup
needs to be included in the download.

Thanks,
Rob

On 15-08-18 6:21 PM, Gert Franz wrote:

The issue mostly is, that the JRE_HOME or JAVA_HOME isn’t correctly set
our defined in the batch.

Gert

Sent from somewhere on the road

Am 18.08.2015 um 17:49 schrieb Mark Drew < <javascript:>mark...@gmail.com
<javascript:>>:

Hi.
I just downloaded Lucee Express for the first time today and got same
problem when selecting startup.bat. I’ve been using Railo since.
I ran it from Command window & got the "Neither the JAVA_HOME nor the
JRE_HOME environment variable is defined.

I did set the variables in the setclasspath.bat file, and works fine now.

This is just a heads up, as I assumed this error/problem would have been
updated/fixed from August discussion.
Because if there’s anyone NEW to Lucee trying the Express edition,
immediate frustration may set in. It took me a while to search for this
solution. If this can’t be set properly on setup, maybe a Note for setup
needs to be included in the download.

Thanks,
RobOn 15-08-18 6:21 PM, Gert Franz wrote:

The issue mostly is, that the JRE_HOME or JAVA_HOME isn’t correctly
set our defined in the batch.

Gert

Sent from somewhere on the road

Am 18.08.2015 um 17:49 schrieb Mark Drew <@Mark_Drew
mailto:Mark_Drew>:

Yep, if those environment variables aren’t set then Tomcat can’t start, so
in a way it’s behaving exactly as it should-- telling you it doesn’t know
how to run. Now, if Railo express worked on the same system, I’m not sure
what env variables it used or perhaps it bundled its own JRE. At one point
I thought the Lucee Express version was exactly the same as Railo’s but now
I’m thinking Railo might have been on Jetty.

Thanks!

~Brad

ColdBox Platform Evangelist
*Ortus Solutions, Corp *

E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.comOn Thu, Dec 3, 2015 at 10:01 AM, Rob Langlands <@Rob_Langlands> wrote:

It just echoed the variable name. I see what you’re getting at.
So, when the JDK is installed, those variables should have been set?
Looks like they were not on my system.

Rob

On 15-12-02 9:41 AM, Brad Wood wrote:

Please run the following from a DOS window and report your output:

C:>echo %JAVA_HOME%
C:>echo %JRE_HOME%

Thanks!

~Brad

On Tuesday, December 1, 2015 at 11:23:35 PM UTC-6, Robert L wrote:

Hi.
I just downloaded Lucee Express for the first time today and got same
problem when selecting startup.bat. I’ve been using Railo since.
I ran it from Command window & got the "Neither the JAVA_HOME nor the
JRE_HOME environment variable is defined.

I did set the variables in the setclasspath.bat file, and works fine now.

This is just a heads up, as I assumed this error/problem would have been
updated/fixed from August discussion.
Because if there’s anyone NEW to Lucee trying the Express edition,
immediate frustration may set in. It took me a while to search for this
solution. If this can’t be set properly on setup, maybe a Note for setup
needs to be included in the download.

Thanks,
Rob

On 15-08-18 6:21 PM, Gert Franz wrote:

The issue mostly is, that the JRE_HOME or JAVA_HOME isn’t correctly set
our defined in the batch.

Gert

Sent from somewhere on the road

Am 18.08.2015 um 17:49 schrieb Mark Drew mark...@gmail.com:

It just echoed the variable name. I see what you’re getting at.
So, when the JDK is installed, those variables should have been set?
Looks like they were not on my system.

RobOn 15-12-02 9:41 AM, Brad Wood wrote:

Please run the following from a DOS window and report your output:

C:>echo %JAVA_HOME%
C:>echo %JRE_HOME%

Thanks!

~Brad

On Tuesday, December 1, 2015 at 11:23:35 PM UTC-6, Robert L wrote:

Hi.
I just downloaded Lucee Express for the first time today and got
same problem when selecting startup.bat. I've been using Railo since.
I ran it from Command window & got the "Neither the JAVA_HOME nor
the JRE_HOME environment variable is defined.

I did set the variables in the setclasspath.bat file, and works
fine now.

This is just a heads up, as I assumed this error/problem would
have been updated/fixed from August discussion.
Because if there's anyone NEW to Lucee trying the Express edition,
immediate frustration may set in. It took me a while to search for
this solution. If this can't be set properly on setup, maybe a
Note for setup needs to be included in the download.

Thanks,
Rob

On 15-08-18 6:21 PM, Gert Franz wrote:
The issue mostly is, that the JRE_HOME or JAVA_HOME isn't
correctly set our defined in the batch.

Gert

Sent from somewhere on the road

Am 18.08.2015 um 17:49 schrieb Mark Drew <mark...@gmail.com
<javascript:>>: