Hi,
well, we've eliminated the initial issue. That's good news.
As it seems you didn't install the schema for the system in the database.
You'll have to to something like:
cd $BICSUITEHOME/sql
psql -U schedulix -W schedulixdb < pg/install.sql
That will initialize the schema and it should be possible to start the server now.
(Naturally, the command line arguments should match your environment).
After the startup it is recommended to load the convenience package:
cd $BICSUITEHOME/install
sdmsh < convenience.sdms
Note that you'll have to create a $HOME/.sdmshrc file that looks like
User=SYSTEM
Password=G0H0ME
Host=localhost
Port=2506
As soon as all that works you should change the password of the SYSTEM user.
For normal users this can be done in the GUI, or by issuing a command like
ALTER USER RONALD WITH PASSWORD = 'Something Obscure';
in sdmsh.
In case of the user SYSTEM, you'll have to make that change in the server.conf file first.
Best regards,
Ronald