You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.
You don't have an account yet? Just get one: Register
Forgotten your password? Get a new one: Send new password
Installing the Wireless Auth Server on Debian Sarge (again, it’ll be fine on Ubuntu too!) - The rough and ready guide!
I feel its important to point out, that unlike the client installation guide this guide does not hand hold the reader through the entire process. The guide assumes some knowledge of Linux server administration. If you are confused by anything here then remember Google is your friend! You can also get help at wifidog.org
Grab the minimal install of Debian Sarge and install to your server. Ensure that you have ‘testing’ sources added to your apt configuration file.
You will need to create a user and a database for your wifidog installation. You need to make a note of the username and password of your user, and the name of your database. You will need these during the install process.
Creating a postgresql user Switch to the postgres database user account su postgres then type the following to set up your new user and create the database, make sure that you press enter after each line. Be careful when typing the code ensuring you don’t miss the semicolons!
$ psql -> CREATE USER wifidog -> WITH PASSWORD 'yourpassword'; -> CREATE DATABASE wifidog -> WITH OWNER wifidog;
You should now be the proud owner of a wifidog database! To exit the pgsql command tool type ‘\q’ To change back to the root user again type ‘su root’ and then your password when prompted.