Nowe posty

xx Dystrybucja pod HP Omen (6)
2024-03-27, 23:30:08
xx [Poradnik] Wyszukiwanie Sterowników (2)
2024-03-27, 21:08:23
lamp Problem z Linux Lite po instalacji (0)
2024-03-27, 19:50:30
xx Ile pingwinów? (1)
2024-03-27, 08:59:24
xx konfiguracja pale moon (0)
2024-03-24, 21:53:42
xx Plasma 6 w Neonie ssie trochę mniej ... (10)
2024-03-23, 02:38:11
xx problem z instalacja sterowników do karty sieciowej (3)
2024-03-18, 18:10:16
xx Plik abc.001 (1)
2024-03-17, 17:48:27
xx Zlecę dopracowanie programu w MatLab (0)
2024-03-13, 15:28:40
xx Linux Mint 21.3 XFCE brak dźwieku po paru minutach (karta muzyczna zintegrowana) (5)
2024-03-12, 23:07:01

Autor Wątek: Aktualizacja slack12.2 firebird 1.5.3--->firebird2.05jak?  (Przeczytany 5280 razy)

michas100

  • Gość
witam mam na serwerze linuksowym firebirda ~1.5 chce zainstalować firebirda 2.0.5 //skąd najlepiej ściągnąć tego firebirda 2.0.5...
i tu moje pytanie jak tego dokonać przeglądałem swój system i znalazłem takie kalatalogi:
/res/app/firebird ----> tutaj paczka fiebird1.5*.tar.gz .... i rozpakowana w katalogu znajduje się firebird.conf
firebird.conf:
#RootDirectory =
#DatabaseAccess = Full
#ExternalFileAccess = None
#UdfAccess = Restrict UDF
#TempDirectories =
DefaultDbCachePages = 6044
#SortMemBlockSize = 1048576
#SortMemUpperLimit = 67108864
#OldParameterOrdering = 0
#CompleteBooleanEvaluation = 0
#DeadlockTimeout = 10
#MaxUnflushedWrites = 100
#MaxUnflushedWriteTime = 5
#BugcheckAbort = 0
#OldColumnNaming = 0

# ===== Client Connection Settings (Basic)
#ConnectionTimeout = 180
#DummyPacketInterval = 0

# ===== TCP Protocol Settings
#RemoteServiceName = gds_db
#RemoteServicePort = 3050
#RemoteAuxPort = 0
#TcpRemoteBufferSize = 8192
#TcpNoNagle = 0
#RemoteBindAddress =

# ===== Locking and shared memory parameters
#LockMemSize = 262144
#LockSemCount = 32
#LockGrantOrder = 1
#LockAcquireSpins = 0
#LockHashSlots = 101
#EventMemSize = 65536

# ===== SuperServer Engine Settings
#CpuAffinityMask = 1
#PrioritySwitchDelay = 100
#DeadThreadsCollection = 50
#PriorityBoost = 5

# ===== Classic Server Engine Settings
#GuardianOption = 1
#ProcessPriorityLevel = 0
#IpcMapSize= 4096
#IpcName = FirebirdIPI
#RemotePipeName = interbas
#CreateInternalWindow = 1
#LockSignal = 16
#RemoteFileOpenAbility = 0
i jeszcze znalacłem w /res/app/aliases.conf
#
# List of known database aliases
# ------------------------------
#
# Example Databases:
#

#security.fdb = /res/app/firebird/data/security.fdb
employee.fdb = /res/app/firebird/1.5.3.4870/examples/employee.fdb
#shfirma.fdb = /zasoby/aplikacje/programy/place/softhard/shfirma/dane/shfirma.gdb

# Live Databases:

shfirma.fdb = /zasoby/aplikacje/programy/place/softhard/shfirma/dane/shfirma.gdb
/etc/rc.d/rc.firebird :
#!/bin/sh

# chkconfig: 345 20 80
# description: Start/Stop firebird database server
#
# This file belongs in /etc/init.d where it will be run
# on system startup and shutdown to start the background
# Firebird/interbase database server daemon



FIREBIRD=/opt/firebird #tego katalogu w tej lokacji nie widzę
ISC_USER=SYSDBA
ISC_PASSWORD=xxxxx #tutaj moje hasło
FBRunUser=firebird
# WARNING: in a real-world installation, you should not put the
# SYSDBA password in a publicly-readable file.
# Eventually this file should not need to contain any passwords.
# as root user alone should be sufficient privledge to stop/start
# the server.


export FIREBIRD
export ISC_USER
export ISC_PASSWORD


# Check the file is there and is executable.
[ -x $FIREBIRD/bin/fbmgr ] || exit 0



# See how we were called.
case "$1" in
  start)
echo -n "Starting Firebird server: "
        echo '$FIREBIRD/bin/fbmgr -start -forever' | su $FBRunUser
RETVAL=$?
;;
  stop)
echo -n "Stopping Firebird server: "
        $FIREBIRD/bin/fbmgr -shut
RETVAL=$?
# [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/identd
;;
  status)
RETVAL=0
;;
  restart|reload)
$0 stop
$0 start
RETVAL=$?
;;
  *)
echo "Usage: firebird {start|stop|status|restart|reload}"
exit 1
esac

exit $RETVAL
prosze o pomoc bo boje sie cos skopać i nie wiem kompletnie jak to wykonać z góry dziękuje za POMOC
// uname -r zwraca wynik 2.6.24.5-smp pewnie bedzie potrzebny firebird do archtektury 32 bitowej
jeśli instalacja firebirda 2.0.5 na slacku 12.2 nie jest możliwa to też prosze o info bo tego nie wiem.