Installation · 2 min read · Oct 01, 2025

Installation de Nictool sur CentOS 5

Installation de Nictool sur CentOS 5

Qu’est-ce que Nictool ?

Nictool est un logiciel libre pour gérer le DNS, mais pour le télécharger, nous devons nous inscrire sur www.nictool.com ; Nictool peut exporter depuis djbdns, BIND, PowerDNS. Toutes les données sont stockées dans MySQL et peuvent être gérées via le web à l’aide d’un navigateur. Ce tutoriel montre comment installer Nictool sur CentOS 5.2.

1. Télécharger nictool

2. Extraire nictoolclient

[root@server ~]# tar -zxvf NicToolClient-2.07.tar.gz
[root@server ~]# cd NicToolClient-2.07

3. Installer les modules perl

[root@server NicToolClient-2.07]# perl Makefile.PL
[root@server NicToolClient-2.07]# make install clean

4. Déplacer le répertoire vers le dossier web

[root@server NicToolClient-2.07]# cd ..
[root@server ~]# mv NicToolClient-2.0.7.tar.gz /var/www/html/NicToolClient

5. Éditer le fichier httpd.conf comme ceci

[root@server ~]# nano /etc/httpd/conf/httpd.conf

ServerName server.com
Alias /images/ "/var/www/html/NicToolClient/htdocs/images/"
DocumentRoot /var/www/html/NicToolClient/htdocs
DirectoryIndex index.cgi


SetHandler perl-script
PerlResponseHandler ModPerl::Registry
PerlOptions +ParseHeaders
Options +ExecCGI



AllowOverride None
Order allow,deny
Allow from all

6. Et nous pouvons éditer le fichier nictoolclient.conf

[root@server ~]# nano /var/www/html/NicToolClient/lib/nictoolclient.conf

Changez cette ligne :

$NicToolClient::app_dir     = '/usr/local/www/NicToolClient';

en :

$NicToolClient::app_dir     = '/var/www/html/NicToolClient';

7. Redémarrer le service apache

[root@server ~]# service httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd:                                            [  OK  ]

Maintenant, nous pouvons essayer d’installer NictoolServer.

8. Extraire le paquet NictoolServer

[root@server ~]# tar -zxvf NicToolServer-2.07.tar.gz
[root@server ~]# cd NicToolServer-2.07

9. Installer les modules Perl

[root@server NicToolServer-2.07]# perl Makefile.PL

Si nous obtenons des messages comme ceci :

'Warning: prerequisite Apache2::SOAP 0 not found'
veuillez télécharger Apache2::SOAP sur www.cpan.org

Vous pouvez télécharger le module à partir de cette URL : http://search.cpan.org/CPAN/authors/id/R/RK/RKOBES/Apache2-SOAP-0.73.tar.gz

[root@server NicToolServer]# tar zxvf Apache2-SOAP-0.73.tar.gz
[root@server NicToolServer]# cd Apache2-SOAP-0.73
[root@server Apache2-SOAP-0.73]# perl Makefile.PL
[root@server Apache2-SOAP-0.73]# make
[root@server Apache2-SOAP-0.73]# make test
[root@server Apache2-SOAP-0.73]# make install

10. Si votre Apache2::SOAP a été installé, vous pouvez continuer à installer les modules perl

[root@server NicToolServer-2.07]# make deps
[root@server NicToolServer-2.07]# make install clean

11. Déplacer le dossier vers le dossier web

[root@server ~]# mv NicToolServer-2.07 /var/www/html/NicToolServer
Share: X/Twitter LinkedIn

Recevez de nouveaux articles dans votre boîte de réception.

Aucun spam. Désabonnez-vous à tout moment.