
7th September 2006, 18:47
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 41,685
Thanks: 1,899
Thanked 2,599 Times in 2,448 Posts
|
|
You can use yast to install the package perl-Net-DNS. Then you don't have to fiddle with the Perl shell to install that module.
|
|
The Following User Says Thank You to falko For This Useful Post:
|
m u r (5th June 2007)
|

8th September 2006, 08:10
|
|
Senior Member
|
|
Join Date: Jul 2005
Posts: 149
Thanks: 13
Thanked 1 Time in 1 Post
|
|
How is it done using YAST?
Would I then install the others using the perl shell?
|

8th September 2006, 11:19
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 32,066
Thanks: 697
Thanked 4,246 Times in 3,259 Posts
|
|
You can install all the packages with yast. Just start yast, go to the software installation module, search for the package name and install it.
|

8th September 2006, 16:39
|
|
Senior Member
|
|
Join Date: Jul 2005
Posts: 149
Thanks: 13
Thanked 1 Time in 1 Post
|
|
I installed perl-HTML-parser, perl-Net-DNS, and perl-Digest-SHA1 using yast, then did install DB_File using the PERL shell.
I got the following:
Code:
/usr/bin/make install UNINST=1 -- OK
rather than
Code:
/usr/bin/make install -- OK
I tried again and got the following:
Code:
Running install for module DB_File
Running make for P/PM/PMQS/DB_File-1.814.tar.gz
Is already unwrapped into directory /root/.cpan/build/DB_File-1.814
Has already been processed within this session
Running make test
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/db-btree....ok
t/db-hash.....ok
t/db-recno....ok
All tests successful.
Files=3, Tests=567, 5 wallclock secs ( 2.98 cusr + 0.93 csys = 3.91 CPU)
/usr/bin/make test -- OK
Running make install
Already done
Last edited by m u r; 8th September 2006 at 16:42.
|

8th September 2006, 17:30
|
|
Senior Member
|
|
Join Date: Jul 2005
Posts: 149
Thanks: 13
Thanked 1 Time in 1 Post
|
|
Well, I was able to install ISPConfig. I deleted the database it created and renamed the backup file to replace the database.
So, when I log in, the users and stuff are missing. Email still seems to be working, and the sites are still there when I do the following:
Code:
mysql -u root -p
mysql> USE ispconfigdb;
mysql> SELECT * FROM isp_isp_web WHERE 1;
Nothing's showing up when I log in to ISPConfig.
|

8th September 2006, 18:09
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 41,685
Thanks: 1,899
Thanked 2,599 Times in 2,448 Posts
|
|
Quote:
|
Originally Posted by m u r
I installed perl-HTML-parser, perl-Net-DNS, and perl-Digest-SHA1 using yast, then did install DB_File using the PERL shell.
I got the following:
Code:
/usr/bin/make install UNINST=1 -- OK
rather than
Code:
/usr/bin/make install -- OK
|
That's ok.
Is the database information in /home/admispconfig/ispconfig/lib/config.inc.php correct? Can you check your ISPConfig database if the tables exist and if there are records in them?
|

9th September 2006, 00:40
|
|
Senior Member
|
|
Join Date: Jul 2005
Posts: 149
Thanks: 13
Thanked 1 Time in 1 Post
|
|
I think the database information is correct:
Code:
/**********************************************
* System Settings
**********************************************/
$go_info["server"]["dir_trenner"] = "/";
$go_info["server"]["server_root"] = "/home/admispconfig/ispconfig";
$go_info["server"]["server_url"] = "https://rmmail.rwhm.net:81";
$go_info["server"]["include_root"] = $go_info["server"]["server_root"] . $go_info["server"]["dir_trenner"] ."lib";
$go_info["server"]["classes_root"] = $go_info["server"]["include_root"] . $go_info["server"]["dir_trenner"] ."classes";
$go_info["server"]["temp_dir"] = $go_info["server"]["server_root"] . $go_info["server"]["dir_trenner"] ."temp";
$go_info["server"]["files_dir"] = $go_info["server"]["server_root"] . $go_info["server"]["dir_trenner"] ."files";
$go_info["server"]["backup_dir"] = $go_info["server"]["server_root"] . $go_info["server"]["dir_trenner"] ."backup";
$go_info["server"]["version"] = "2.0.7";
$go_info["server"]["os"] = "linux";
$go_info["server"]["ort"] = "local";
$go_info["server"]["banner"] = "0";
$go_info["server"]["db_host"] = "localhost";
$go_info["server"]["db_name"] = "ispconfigdb";
...And it looks like the tables exist:
Code:
mysql> USE ispconfigdb;
Database changed
mysql> SHOW TABLES;
+-----------------------+
| Tables_in_ispconfigdb |
+-----------------------+
| del_status |
| dns_a |
| dns_cname |
| dns_dep |
| dns_isp_dns |
| dns_mx |
| dns_nodes |
| dns_secondary |
| dns_spf |
| doctype |
| groups |
| help_documents |
| help_nodes |
| isp_com |
| isp_dep |
| isp_dienste |
| isp_firewall |
| isp_htaccess |
| isp_isp_actions |
| isp_isp_admin |
| isp_isp_datenbank |
| isp_isp_domain |
| isp_isp_kunde |
| isp_isp_reseller |
| isp_isp_user |
| isp_isp_web |
| isp_isp_web_template |
| isp_monitor |
| isp_nodes |
| isp_server |
| isp_server_ip |
| isp_serverstatus |
| isp_traffic |
| isp_traffic_ip |
| listtype |
| login |
| multidoc_dep |
| multidoc_nodes |
| session |
| sys_config |
| sys_dep |
| sys_modules |
| sys_news |
| sys_nodes |
| sys_user |
| user_groups |
+-----------------------+
46 rows in set (0.00 sec)
Last edited by m u r; 2nd August 2007 at 05:20.
|

9th September 2006, 13:54
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 41,685
Thanks: 1,899
Thanked 2,599 Times in 2,448 Posts
|
|
Is the database user (should be root) and password also correct in config.inc.php?
|

10th September 2006, 04:30
|
|
Senior Member
|
|
Join Date: Jul 2005
Posts: 149
Thanks: 13
Thanked 1 Time in 1 Post
|
|
I think so. I used the same username and password as I did originally:
Code:
/**********************************************
* System Settings
**********************************************/
$go_info["server"]["dir_trenner"] = "/";
$go_info["server"]["server_root"] = "/home/admispconfig/ispconfig";
$go_info["server"]["server_url"] = "https://rmmail.rwhm.net:81";
$go_info["server"]["include_root"] = $go_info["server"]["server_root"] . $go_info["server"]["dir_trenner"] ."lib";
$go_info["server"]["classes_root"] = $go_info["server"]["include_root"] . $go_info["server"]["dir_trenner"] ."classes";
$go_info["server"]["temp_dir"] = $go_info["server"]["server_root"] . $go_info["server"]["dir_trenner"] ."temp";
$go_info["server"]["files_dir"] = $go_info["server"]["server_root"] . $go_info["server"]["dir_trenner"] ."files";
$go_info["server"]["backup_dir"] = $go_info["server"]["server_root"] . $go_info["server"]["dir_trenner"] ."backup";
$go_info["server"]["version"] = "2.0.7";
$go_info["server"]["os"] = "linux";
$go_info["server"]["ort"] = "local";
$go_info["server"]["banner"] = "0";
$go_info["server"]["db_host"] = "localhost";
$go_info["server"]["db_name"] = "ispconfigdb";
$go_info["server"]["db_user"] = "root";
$go_info["server"]["db_password"] = "********";
$go_info["server"]["db_type"] = "mysql";
$go_info["server"]["mail_server"] = "";
$go_info["server"]["mail_user"] = "";
$go_info["server"]["mail_password"] = "";
$go_info["server"]["smtp_server"] = "localhost";
$go_info["server"]["mode"] = "";
$go_info["server"]["lang"] = "en";
$go_info["server"]["postfix_config"] = 1; // 1 = SENDMAIL-STYLE, 2 = POSTFIX-STYLE
$go_info["server"]["smtp_restart"] = 1; // 1 = stop/start, 2 = restart
$go_info["server"]["network_config"] = 1; // 0 = none, 1 = automatic
|

10th September 2006, 19:26
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 41,685
Thanks: 1,899
Thanked 2,599 Times in 2,448 Posts
|
|
What's the output of ? What's in the error log in /root/ispconfig/httpd/logs?
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT +2. The time now is 23:36.
|
Recent comments
1 day 1 hour ago
1 day 3 hours ago
1 day 15 hours ago
1 day 18 hours ago
1 day 22 hours ago
2 days 4 hours ago
2 days 14 hours ago
2 days 16 hours ago
3 days 20 min ago
3 days 1 hour ago