You are viewing a plain text version of this content. The canonical link for it is here.
Posted to phoenix-dev@avalon.apache.org by Ulrich Mayring <ul...@denic.de> on 2002/05/17 09:18:58 UTC

Re: Question about sentence in phoenix.log

Andrei Ivanov wrote:
> 
> what is daemon?

There are two ways to start Phoenix: via the included run.sh script, or
better via the Java Service Wrapper. The latter is IMHO the better
choice, you need to build Phoenix with entries like these in the
build.xml:

<property name="wrapper.jar" value="${lib.dir}/wrapper.jar"/>
<property name="wrapper.exe" value="${lib.dir}/wrapper"/>
<property name="wrapper.dll" value="${lib.dir}/libwrapper.so"/>

And get these files from http://wrapper.sourceforge.net

The presence of wrapper is detected by the build script if you have
wrapper.jar on your classpath, so you need something like:

<path id="project.class.path">
	<pathelement location="${wrapper.jar}"/>
	...
</path>

> what is Management interface?

Suppose you use the Wrapper, then you might have a wrapper.conf with
entries like these:

# Java Additional Parameters
...
wrapper.java.additional.5=-Dphoenix.adapter.http=8080
wrapper.java.additional.6=-Dphoenix.admin.passwd=foobar

Then go to http://localhost:8080 and use "admin" as user login and
"foobar" as password. The Management interface will come up. If you
don't use the Wrapper, then you can write the above parameters as
command-line options in run.sh.

Ulrich

-- 
Ulrich Mayring
DENIC eG, Systementwicklung

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>