(12-21-2009 01:00 AM)agshekeloh Wrote: Installing 1.0.3 on FreeBSD 7.2-stable amd64, we also need
/usr/ports/devel/p5-File-MimeInfo
/usr/ports/devel/p5-Term-ReadKey
You can build without these, but you cannot run setup.
...and when running ispCP setup inside FreeBSD jail there is a fatal error when asked for mysql password (I guess it's in the read_password($qmsg) line of ispcp-setup-methods.pl).
Error:
Please enter system SQL user. [root]: root
Can't open 'sys$command' read/write: No such file or directory at /usr/local/lib/perl5/site_perl/5.10.1/Term/ReadPassword.pm line 63, <STDIN> line 6.
Any hint how to get it working?
tnx,
antencek
(02-16-2010 10:02 AM)antencek Wrote: (12-21-2009 01:00 AM)agshekeloh Wrote: Installing 1.0.3 on FreeBSD 7.2-stable amd64, we also need
/usr/ports/devel/p5-File-MimeInfo
/usr/ports/devel/p5-Term-ReadKey
You can build without these, but you cannot run setup.
...and when running ispCP setup inside FreeBSD jail there is a fatal error when asked for mysql password (I guess it's in the read_password($qmsg) line of ispcp-setup-methods.pl).
Error:
Please enter system SQL user. [root]: root
Can't open 'sys$command' read/write: No such file or directory at /usr/local/lib/perl5/site_perl/5.10.1/Term/ReadPassword.pm line 63, <STDIN> line 6.
Any hint how to get it working?
tnx,
antencek
Well..I have override all the read_password():
$pass1 = read_password($qmsg);
with standard STDIN read:
print STDOUT $qmsg;
chomp($pass1 = readline \*STDIN);
And for now it works in jail too.
Anyway...should find a better solution.
by,
antencek