Thorsten, I've been racking my brain a bit nad couple of other things came back to me.
As i'm sure you've already discovered there is no ldconfig in Solaris, but you can make an env variable called LD_LIBRARY_PATH and put whatever libraries you want to have linked in there. That fixed a large chunk of the problems i was having. If you are having shared memory problems, keep in mind that it's static in Solaris so you have to specify the amount in /etc/system. I had problems getting posgres to start up and found i had to bump mine up. It looks something like this now: set shmsys:shminfo_shmmax=0x2000000 set shmsys:shminfo_shmmin=1 set shmsys:shminfo_shmmni=256 set shmsys:shminfo_shmseg=256 set semsys:seminfo_semmap=256 set semsys:seminfo_semmni=512 set semsys:seminfo_semmns=512 set semsys:seminfo_semmsl=32 The postgres faq is pretty good about explaining this: http://www.postgresql.org/idocs/index.php?kernel-resources.html Cheers, sach _______________________________________________ Bits mailing list [EMAIL PROTECTED] http://www.sugoi.org/mailman/listinfo/bits
