Changes between Version 7 and Version 8 of doc/install/debian/auth-server
- Timestamp:
- 12/11/06 23:35:16 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc/install/debian/auth-server
v7 v8 27 27 apt-get install postgresql-8.1 28 28 }}} 29 30 It will crash, but: 31 32 == PostgreSQL 8.1 configuration file == 33 34 {{{ 35 nano /etc/postgresql/8.1/main/postgresql.conf 36 }}} 37 and change: 38 {{{ 39 #listen_addresses='localhost' 40 }}} 41 42 for 43 44 {{{ 45 listen_addresse='*' 46 }}} 47 48 NOTE: this is not a good security setting, you should make sure you change that later on! 49 50 == Install prerequisites - step2 == 29 51 30 52 We also need some specifics librairies … … 95 117 }}} 96 118 97 == PostgreSQL 8.1 configuration file ==98 99 In PostgreSQL 7.4 we had to change the listen_tcp to true... doesn't seem to be much to change in 8.1100 119 101 120 == Configure locale in wifidog.conf == … … 125 144 == Configure the auth server == 126 145 127 Go to http://your-domaine.com/install.php and follow the instructions. 146 Go to http://your-domaine.com/install.php and follow the instructions. They will ask to : 147 148 {{{ 149 su - postgres 150 createuser wifidog --pwprompt 151 }}} 152 answer no to both question 153 154 and 155 156 {{{ 157 createdb wifidog --encoding=UTF-8 --owner=wifidog 158 }}}