mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 19:23:02 +01:00
88b8a40a04
SUPERSERVER has 4 different meanings in our code: - this is milticlient server (replaced with Config::getMultiClientServer()) - use shared data cache (replaced with Config::getSharedCache()) - use shared metadata cache (replaced with macro SHARED_METADATA_CACHE) - database are NOT shared between processes (replaced with getSharedDatabase()) 2. Use fb_smp_server as both superclassic and classic binary on posix (xinetd autodecection is done). 3. Small posix build cleanup.
21 lines
540 B
Plaintext
21 lines
540 B
Plaintext
# default: on
|
|
# description: FirebirdSQL server
|
|
#
|
|
# Be careful when commenting out entries in this file. Active key entry should
|
|
# be the first as some scripts (CSchangeRunUser.sh in particular) use sed
|
|
# scripting to modify it.
|
|
|
|
service @FB_SERVICE_NAME@
|
|
{
|
|
disable = no
|
|
flags = REUSE
|
|
socket_type = stream
|
|
wait = no
|
|
user = root
|
|
# These lines cause problems with Windows XP SP2 clients
|
|
# using default firewall configuration (SF#1065511)
|
|
# log_on_success += USERID
|
|
# log_on_failure += USERID
|
|
server = @FB_SBINDIR@/fb_smp_server
|
|
}
|