Changes between Version 1 and Version 2 of doc/install/debian/auth-server
- Timestamp:
- 12/11/06 19:49:08 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc/install/debian/auth-server
v1 v2 3 3 These are step by step instructions to install Wifidog auth-server on Debian Linux (testing, 2.6.17). 4 4 5 December 11th, 2006 - This document is currently a draft and not completed! 5 December 11th, 2006 - This document is currently a draft and not completed! There might be a lot more package that is really required in the "prerequisites" section. 6 6 7 7 = Step-by-step instructions = 8 8 9 10 == Install the distro == 11 A minimum install without any specific package is enough, as long as you have internet access and apt installed. 12 9 13 == Install prerequisites == 14 Before we install anything lets be sure we have access to internet and that our apt database is updated 10 15 {{{ 16 apt-get update 17 }}} 11 18 19 The authentification server require apache and php (we install the latest version) 20 {{{ 21 apt-get install apache2 php5 12 22 }}} 23 24 It also require a database server. PostgreSQL 8.1 and 7.4 are available, but since 8.1 is faster... the choice is easy. 25 {{{ 26 apt-get install postgresql-8.1 27 }}} 28 29 We also need some specifics librairies 30 {{{ 31 apt-get install xml-core gettext mcrypt libapache2-mod-php5 php5-cgi 32 apt-get install php5-mcrypt php5-mhash php5-pgsql php-pear 33 }}} 34 35 To get the latest version of wifidog-auth we will need subversion: 36 {{{ 37 apt-get install subversion 38 }}} 39 40 Some stuff that isn't needed for the install, but still nice to have on a server (and which won't be install by default). If you don't what these are, you might not need them ;-) 41 {{{ 42 apt-get install openssh less 43 }}} 44 45 13 46 14 47 == Install the auth server == … … 19 52 20 53 54 == Apache configuration file == 55 56 == PostgreSQL configuration file == 57 58 == Configure locale == 21 59 22 60 == Configure the auth server ==