I adding a comand argument IceBox.Service with the icegridadgui and service now try to start but produce a new error
Java Service for test this
Code:
public class SearchServiceI extends Ice.LocalObjectImpl
implements IceBox.Service
{
public void start(
String name,
Ice.Communicator communicator,
String[] args)
{
_adapter = communicator.createObjectAdapter(name);
_adapter.activate();
}
public void stop()
{
_adapter.deactivate();
}
private Ice.ObjectAdapter _adapter;
}
IceGrid ouput
Code:
[ icegridnode: Server: changed server `LuceneServer' state to `Activating' ]
[ icegridnode: Activator: activating server `LuceneServer'
path = /opt/blackdown-jdk-1.4.2.02/bin/java
pwd =
args = /opt/blackdown-jdk-1.4.2.02/bin/java IceBox.Server --Ice.Config=/opt/oz-cms/DB/icegrid/titanio/servers/LuceneServer/config/config --Ice.Default.Locator=IceGrid/Locator:tcp -h 192.168.0.197 -p 12000 --Ice.ServerId=LuceneServer ]
[ icegridnode: Activator: activated server `LuceneServer' (pid = 20256) ]
[ icegridnode: Server: changed server `LuceneServer' state to `WaitForActivation' ]
[ icegridnode: Server: changed server `LuceneServer' state to `ActivationTimeout' ]
[ icegridnode: Server: server `LuceneServer' activation timed out ]
[ icegridnode: Adapter: server `LuceneServer' adapter `LuceneServer.Lucene.SearchServer' activation timed out ]
Any ideas?
Thanks