Commit 88a25e083575797638debc6b42dd56c7de4a84f5
1 parent
bb77beb1
Update INSTALL.md
Showing
1 changed file
with
9 additions
and
5 deletions
INSTALL.md
| ... | ... | @@ -33,9 +33,9 @@ webserver user let the member of the bind group, and the directory let writable |
| 33 | 33 | by owned group. |
| 34 | 34 | 2. Create a file with same permissions in this directory for saving zone |
| 35 | 35 | definitions - eg. |
| 36 | - *touch master.conf.* | |
| 37 | -3. Create a subdirectory for keeping zone files (for both of masters and | |
| 38 | -slaves) with same permissions at the step 1. | |
| 36 | + *touch smbind-ng.conf.* | |
| 37 | +3. Create a subdirectory for keeping zone files with same permissions at the | |
| 38 | +step 1. | |
| 39 | 39 | |
| 40 | 40 | ### Modify bind configuration |
| 41 | 41 | On your bind options set this folder to use with *directory* option and |
| ... | ... | @@ -43,12 +43,16 @@ On your bind options set this folder to use with *directory* option and |
| 43 | 43 | Include the master and slave configuration files into your bind config - what |
| 44 | 44 | created at the step 2. |
| 45 | 45 | |
| 46 | +Restart your bind daemon. | |
| 47 | + | |
| 46 | 48 | ### Database |
| 47 | 49 | Create a database user with full permission to access a non existing database |
| 48 | 50 | with any name. |
| 49 | 51 | Log in your database server with that user, and create an empty database. |
| 50 | 52 | Take the initial database dump, and load it to this schema with this newly |
| 51 | -created user. | |
| 53 | +created user. | |
| 54 | +*mysql.sql* is for MySQL, *pgsql.sql* is for PostrgeSQL eg. for MySQL: | |
| 55 | + *mysql -h yourserver -u youruser -pYourP@ssW0rd yourdb <mysql.sql* | |
| 52 | 56 | |
| 53 | 57 | ### Setup the PHP app |
| 54 | 58 | See configuration parameters below |
| ... | ... | @@ -74,7 +78,7 @@ for the webserver user group. eg. |
| 74 | 78 | Set up this directory for roller daemon to use this directory for rolling zones. |
| 75 | 79 | eg. in your /etc/default/rollerd file use similar option with this: |
| 76 | 80 | |
| 77 | -*DAEMON_OPTS="-rrfile /etc/smbind/rollrec/zones.rollrec"* | |
| 81 | +*DAEMON_OPTS="-rrfile /etc/smbind-ng/rollrec/zones.rollrec"* | |
| 78 | 82 | |
| 79 | 83 | And then reload your roller daemon. |
| 80 | 84 | ... | ... |