Default plugins and properties

I have a requirement to be able to install an openfire system unattended. So far, I have managed to install the server, and provide a set of default plugins. However, I need to be able to set up some properties, like plugin.userservice and xmpp.client.idle

is there any way of supplying default property values to either the installation or runtime server ?

Plugin settings are simply stored in database. You could modfiy the database schema which is executed during installation.

( openfire_src/src/database/*.sql )

thanks, but I am installing from an .rpm, not source.

Can I connect to the db from sql, and issue the command

INSERT INTO JIVEPROPERTY VALUES(‘xmpp.client.idle’,’-1’)

If so, where is the database itself located ?

Thanks again

Can I connect to the db from sql, and issue the command

INSERT INTO JIVEPROPERTY VALUES(‘xmpp.client.idle’,‘-1’)

Sure, as long you are using an external database.

If so, where is the database itself located ?
There where you have installed it…

embedded, I’m afraid …