Ubuntu server 7.10 problems and solutions

greenm

Verified User
Joined
Jul 11, 2006
Messages
38
Im starting this thread to help other ppl with the installation of DA on ubuntu server 7.10.

First of all, after a fix to the setup.sh script, DA installed like it should.
There might be a wget problem (https), DA will download a wget version which will work. If it fails, just run the setup.sh again.

Proftpd

Notices, when i fired up DA i saw that proftpd wasnt running.
problem: TLSRSACertificate

When i commented the following in /etc/proftpd.conf
It worked.

Code:
#<IfModule mod_tls.c>
#       TLSEngine on
#       TLSLog /var/log/proftpd/proftpd.tls.log
#       TLSProtocol TLSv1
#       TLSVerifyClient off
#       TLSRequired off

#       #Certificates
#       TLSRSACertificateFile /etc/exim.cert
#       TLSRSACertificateKeyFile /etc/exim.key
#       #TLSCACertificateFile /etc/ftpd/root.cert.pem
#</IfModule>

I know this is not a real solution, if you have one or know how to generate the files please post a solution.


KISS my firewall 2.1

When i tried to run KISS i got this:
Since the ip_tables, ipt_state, and/or ipt_multiport modules do not exist, KISS can not function. Firewall script

When i run modprobe with the module it worked, so the kiss script thinks the paths are wrong and i removed this code and it worked:

Code:
# Note: KISS requires that ip_tables, ipt_state, and ipt_multiport exist:
#if [ ! -e "/lib/modules/$(uname -r)/kernel/net/ipv4/netfilter/ip_tables.o" ] || [ #! -e "/lib/modules/$(uname -r)/kernel/net/ipv4/netfilter/ipt_state.o" ] || [ ! #-e "/lib/modules/$(uname -r)/kernel/net/ipv4/netfilter/ipt_multiport.o" ]; then
#    echo "Since the ip_tables, ipt_state, and/or ipt_multiport modules do not #exist, KISS can not function. Firewall script aborted!"
#    exit 1
#fi


Imagemagick

Imagemagick i also installed with apt but had a error when i tested it.
It wasnt a fatal error but i wanted to fix it.
The error was about a version of: libpng12.so.0 in:
/usr/local/lib/libpng12.so.0 (is a link to: /usr/local/lib/libpng12.so)
I've read somewhere to try to link it to the one in:
/usr/lib/libpng12.so
and it didnt gave any more error

to test imagemagick:
Code:
convert logo: logo.png

My todo list:

install clamav
DA on https
imagemagick
... more soon

i'm will post more when i know more :)
 
Last edited:
For Exim you can only get an error when having the module loaded, so you are probably missing the certificates?

TLSRSACertificateFile /etc/exim.cert
TLSRSACertificateKeyFile /etc/exim.key

Look if these exist. Else generate them for yourself:
http://blog.jprog.de/display/docs/ssl

Look for EXIM below and do what they tell you to do! :)
I pasted it also below:
Code:
openssl req -newkey rsa:2048 -keyout exim.key -out exim.csr -days 3650 -node
openssl ca -config ca.config -keyfile ca.key -cert ca.crt -out exim.crt -infiles exim.csr
cp exim.crt /etc/exim4/exim.crt
cp exim.key /etc/exim4/exim.key
chown root:Debian-exim /etc/exim4/exim.key /etc/exim4/exim.crt
chmod 640 /etc/exim4/exim.key /etc/exim4/exim.crt

Please post your results!
 
Back
Top