We have not provided installation scripts for other databases. You will
need to follow these steps:
-
Following your SQL vendor's instructions, create an empty
database
- Create a database user that has permission to create tables in the
new database
- Set the new database users password
- Edit Radmin/Sql.pm, and configure it so that RAdmin can connect to
the SQL database, using the connection name rules for your selected DBD
module, plus the user name and password you created above.
- Create the tables by running
perl createdb.pl -create
This will attempt to log in to the database using the details you
entered into Radmin/Sql.pm, then create the tables described in
Radmin/Schema.pm
- If the previous step fails, it may be due to unusual table creation
syntax for your SQL server. If so, you may need to hand edit a file to
create the tables for your database. You can see what createdb.pl is
trying to do by running it like this:
perl createdb.pl -create -n -d
- Install the basic data into the database with:
perl createdb.pl basicdb.dat radattrs.dat
- Try to automate the entire process and send us an installXXX.sh so
others can benefit from your experience.