~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Thank you for your instructions. This worked perfectly on our 32 bit server,
but somehow apache won't start on our 64 bit box. We get an error of;
# rcapache2 start
Starting httpd2 (prefork) httpd2-prefork: Syntax error on line 116 of
/etc/apache2/httpd.conf: Syntax error on line 24 of
/etc/apache2/sysconfig.d/loadmodule.conf: Cannot load
/usr/lib64/apache2/mod_jk.so into server: /usr/lib64/apache2/mod_jk.so:
undefined symbol: apr_sockaddr_port_get
The command line was:
/usr/sbin/httpd2-prefork -f /etc/apache2/httpd.conf -DSSL
failed
Any ideas on how to fix this?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
After poking around a bit more, I see that mod_jk_ap20 (tomcat5) is for
Apache 2.0. Is there a repository for Tomcat and a mod_jk module for Apache
2.2?
Many thanks in advance,
~James
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-amd64+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-amd64+help(a)opensuse.org
>Since I'll be upgrading a production server using the older
> version of Apache, will the upgrade 'break' anything, for example SSL,
PHP5,
> the Apache modules, and will it work the config files, especially the
> virtual host files? With this big version difference, I'd hate to break
> something.
>
> Many thanks for your help,
>
> ~James
james:
In order to avoid breaking stuff you should do the following.
add this repositories:
http://software.opensuse.org/download/Apache/SUSE_Linux_10.0/http://software.opensuse.org/download/server:/php/server_apache_SuSE_Linux_1
0.0/
the remove your old PHP installation **completely** ( in case you are
using the version included in 10.0 of course)
then reinstall apache2-mod_php5 apache2-prefork, the needed PHP
modules... ( you may need to upgrade more stuff depending what other
software in your system uses libapr* )
and no, you will not break virtual host configuration as it is backward
compatible.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Thank you for your instructions. This worked perfectly on our 32 bit server,
but somehow apache won't start on our 64 bit box. We get an error of;
# rcapache2 start
Starting httpd2 (prefork) httpd2-prefork: Syntax error on line 116 of
/etc/apache2/httpd.conf: Syntax error on line 24 of
/etc/apache2/sysconfig.d/loadmodule.conf: Cannot load
/usr/lib64/apache2/mod_jk.so into server: /usr/lib64/apache2/mod_jk.so:
undefined symbol: apr_sockaddr_port_get
The command line was:
/usr/sbin/httpd2-prefork -f /etc/apache2/httpd.conf -DSSL
failed
Any ideas on how to fix this?
Many thanks,
~James
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-amd64+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-amd64+help(a)opensuse.org
Following the instructions on
http://www.linux-usb.org/SpeedTouch/suse/index.html
to connect a friend's system with a revision 2 usb-modem, the result is
that the presented bootscript
#!/bin/bash
modprobe pppoatm
count=0
while [[ $((count++)) -lt 40 ]]
do
if dmesg | grep 'ADSL line is up'
then
pppd call speedtch
exit 0
fi
sleep 1
done
echo "The SpeedTouch firmware did not load"
fails because pppoatm.ko is not present. The only ppp*.ko files present
at the system are
/lib/modules/2.6.18.2-34-default/kernel/drivers/net/pppoe.ko
/lib/modules/2.6.18.2-34-default/kernel/drivers/net/pppox.ko
/lib/modules/2.6.18.2-34-default/kernel/drivers/net/ppp_async.ko
/lib/modules/2.6.18.2-34-default/kernel/drivers/net/ppp_deflate.ko
/lib/modules/2.6.18.2-34-default/kernel/drivers/net/ppp_generic.ko
/lib/modules/2.6.18.2-34-default/kernel/drivers/net/ppp_mppe.ko
/lib/modules/2.6.18.2-34-default/kernel/drivers/net/ppp_synctty.ko
(the kernel mentioned here is from my own x86_64 system,
which has undergone several updates from the suse-server
and hence slightly newer than the system from my friend's system,
which is a fresh install)
Also there is no /proc/bus/usb directory, but I don't think that's a
problem; usb-disks etc are seen correctly.
Has the pppoatm support changed since e.g. 10.0? And if so, can you
advice me about how to configure it, or where to find valid instructions?
Thanks for your advice!
regards, Jogchum
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-amd64+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-amd64+help(a)opensuse.org
There is no way for an IP address to be 258 you can't use anything higher
than 255 and that is reserved for broadcasting. You might want to recheck
your address. Each octect has a range from 0-255. Hope that is of help.
SrA Dominick A. Obermeyer
Okinawa, Japan
~~~
I feel so embarrassed. You're right that is the wrong address.
Thank you for pointing out the obvious. I could make excuses, but what's the
point.
Thank you for your illuminating response.
In gratitude,
~James
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-amd64+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-amd64+help(a)opensuse.org
Hello,
I added a new ssl vhosts entry, using a template from a working ssl vhost
and modified it appropriately or so I thought since the other ssl vhosts
that are on the system are working correctly, however when I reload
rcapache2 I get the following error;
>From .../apache2/error_log;
[error] (EAI 2)Name or service not known: Cannot resolve host name
10.50.40.258 --- ignoring!
~~~~
When I add the IP to listen.conf and attempt to reload, apache fails to load
with the following error:
<snip>
rcapache2 reload;
... [crit] (EAI 2)Name or service not known: alloc_listener: failed to set
up sockaddr for 10.50.40.258
Syntax error on line 25 of /etc/apache2/listen.conf:
Listen setup failed
The command line was:
/usr/sbin/httpd2-prefork -f /etc/apache2/httpd.conf -DSSL
unused
<snip>
This is a portion of listen.conf.
<snip>
Listen 80
<IfDefine SSL>
<IfDefine !NOSSL>
<IfModule mod_ssl.c>
#Listen 443
Listen 10.50.40.258:443 <------Line 25 looks okay to me
Listen 10.50.40.252:443
Listen 10.50.40.254:443
</IfModule>
</IfDefine>
</IfDefine>
<snip>
~~~~~~
When I remove or comment out line 25, apache starts. Any ideas what is going
wrong? I have two ssl sites that work fine on the same box.
Many thanks in advance.
~James
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-amd64+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-amd64+help(a)opensuse.org
Hello together,
does anyone know this mainboard ?
I want to buy it, and i want to know wether that board is playing well under
linux.
With regards
Rainer Brinkmann
brinkmann_rainer(a)yahoo.de
--
<<< Der Tellerrand ist NICHT das Ende des Kosmos >>>
Hi,
the x86_64 version of the rasmol rpm on SuSE 10.1, 10.2 and factory
doesn't work well. When started remotely, it fails with
wirth [12:05] fst 641) rasmol-remote 1tim.pdb
RasMol Molecular Renderer
Roger Sayle, August 1995
Copyright (C) Roger Sayle 1992-1999
Version 2.7.3.1 April 2006
Copyright (C) Herbert J. Bernstein 1998-2006
*** See "help notice" for further notices ***
[32-bit version]
Renderer Error: Unable to allocate frame buffer!
When started locally, the graphics are very bad like every second pixel
missing. See x86_64.gif attached.
When installing the matching rasmol.i586.rpm on the x86_64 host, rasmol
can be started remotely again and the graphics look nice, see i586.rpm.
So the errors must be caused by the x86_64 compilaton. They are indepentend
from the graphics card and drivers (ati and nvidia tested).
Any ideas what's going on there? I wonder if it is a problem with the
64bit version of X and might hit us with more graphic programs in future,
or if it is really just a rasmol specific bug.
cu,
Frank
--
Dipl.-Inform. Frank Steiner Web: http://www.bio.ifi.lmu.de/~steiner/
Lehrstuhl f. Bioinformatik Mail: http://www.bio.ifi.lmu.de/~steiner/m/
LMU, Amalienstr. 17 Phone: +49 89 2180-4049
80333 Muenchen, Germany Fax: +49 89 2180-99-4049
* Rekursion kann man erst verstehen, wenn man Rekursion verstanden hat. *
Hi All,
My problem is not with OpenSuSE on 64-bit, but on SLES9 x86_64 64-bit.
I am a power user, i use Linux on the desktop from my beginning of my
carrier, that too only SLES9. For my day to day job, the desktop
softwares which are not in SLES9, i will download those softwares (i
don't download the RPMs, because it will disturb the integrity of my
system RPM database, so i download the binary tar or bin files, or
sometimes i will download source tar files, i will do ./configure,make,
make install.......etc).
I recently received a a power workstation (SuSE officially not supported
in this, but RHEL3/4 supported). It has Intel core duo processor 64-bit,
so i loaded SLES9 SP3 x86_64. All works fine, bu the problem i am facing
is with firefox and thunderbird . I already communicated with firefox
and thunderbird mailing lists, but i didn't received much help. I
believe the issue with some system settings.
SLES9 SP3 x86_64 ships seamonkey 64-bit browser/Mail, i don't have any
issue with that browser/Mail. If i open any URL in the seamonkey mail,
if i click on that URL , that URL opened with seamonkey browser. And, if
i receive any document in seamonkey Mail, when i click on that document,
my OpenOffice opens that document automatically. This is the same thing
that i am expecting with Firefox/Thunderbird.
In Thunderbird 2.0.0.4, if a mail contains a URL, if i click on that
URL, that URL own't open with none of my browser
(seamonkey/opera/firefox). I have defined my favorite browser in
GNOME(gnome-default-applications-properties)/KDE, but still i have this
issue. Every time i have to copy the URL and paste it in my browser. If
i received any document attached in a mail, if i click on that attached
document , it will pop-up a window , and each and every time i have to
specify the path of openoffice in that dialog box in the open-with section.
In Firefox 2.0.0.4, if a page contains a "send to: mail tag" , if i
click on that, that automatically own't open with none of mail client
(seamonkey/Thunderbird). But i have defined my preferred mail client in
GNOME(gnome-file-types-properties)/KDE, but still i have this issue.
Every time i have to copy the mail address and paste it in mail client.
Hope i communicated well.
The reason that i am thinking is, as i don't have any issue with
seamonkey which is 64-bit app, i believe that issue with running 32-bit
app of Thunderbird, and Firefox (they only exist in 32-bit) in 64-bit OS.
Any help here ?
I am not running AppArmor .
-- Shashi
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-amd64+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-amd64+help(a)opensuse.org