LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 02-12-2015, 03:40 PM   #1
miels
LQ Newbie
 
Registered: Feb 2015
Posts: 3

Rep: Reputation: Disabled
apache-ssl version GLIBC not found / can't access shares


I own a Netgear ReadyNas and I'm afraid I've managed to cripple parts of it :S

Apache won't start anymore and I can't access my shares either using my Windows machines. When Netgear calls those shares "CIFS", but I guess it's Samba.

On a ReadyNas you're supposed to start apache like this:
apache-ssl -f /etc/frontview/apache/http.conf -k start

But when I do so:
Code:
apache-ssl -f /etc/frontview/apache/http.conf -k start
apache-ssl: /lib/libuuid.so.1: no version information available (required by /usr/lib/libapr-1.so.0)
apache-ssl: /lib/libc.so.6: version `GLIBC_2.10' not found (required by /usr/lib/libapr-1.so.0)
apache-ssl: /lib/libc.so.6: version `GLIBC_2.9' not found (required by /usr/lib/libapr-1.so.0)
And attempts to check and restart Samba:
Code:
 /etc/init.d/samba status
nmbd is running.
could not access PID file for smbd ... failed!

/etc/init.d/samba restart
Stopping Samba daemons: nmbd smbd.
Starting Samba daemons: nmbd smbd/etc/init.d/samba: line 33: 24027 Segmentation fault      start-stop-daemon --start --quiet --oknodo --exec /usr/sbin/smbd -- -D
 failed!
I think this has to do with my attempt to install ownCloud manually. I don't remember exactly what I did, but I think the following is the most important.

Code:
echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/community/Debian_6.0/ /' >> /etc/apt/sources.list.d/owncloud.list 
apt-get update
apt-get install owncloud
I might also have thrown in an apt-get upgrade. And probably other things too.

The thing is... I've already tried an OS Reinstall. Afterwards apache seems running for a while, but after couple of hours it stops again. Can't get the mounts to work at all.

Any suggestions on how I can get both apache and samba back to work again? Not really feeling like performing a factory reset, since I'd have to backup 1.5 TB and put it back again, plus reconfigure all the settings. Hoping there are other ways...

Code:
cat /proc/version
Linux version 2.6.37.6.RNx86_64.2.4 (jmaggard@calzone) (gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)) #1 SMP Wed Aug 20 11:41:34 PDT 2014
 
Old 02-13-2015, 01:57 AM   #2
veerain
Senior Member
 
Registered: Mar 2005
Location: Earth bound to Helios
Distribution: Custom
Posts: 2,524

Rep: Reputation: 319Reputation: 319Reputation: 319Reputation: 319
Quote:
apache-ssl -f /etc/frontview/apache/http.conf -k start
apache-ssl: /lib/libuuid.so.1: no version information available (required by /usr/lib/libapr-1.so.0)
apache-ssl: /lib/libc.so.6: version `GLIBC_2.10' not found (required by /usr/lib/libapr-1.so.0)
apache-ssl: /lib/libc.so.6: version `GLIBC_2.9' not found (required by /usr/lib/libapr-1.so.0)
You are missing some libraries and some very necessary one. Does your system uses shared or static libraries mostly?

You need to install util-linux package. It has the needed /lib/libuuid.so.1 library.
You need to install glibc. It has the needed /lib/libc.so.6 libray. But without this your system won't run at all in shared library system.

I don't know much about Netgear, others may help.
 
Old 02-13-2015, 02:15 AM   #3
miels
LQ Newbie
 
Registered: Feb 2015
Posts: 3

Original Poster
Rep: Reputation: Disabled
Could it be that by issueing (several) apt-get update commands some components have been updated and now they need those GLIBC libraries? If so, can I revert that?

It all worked before. Don't know that much about Linux, but afaik I can't have accidentally uninstalled util-linux and glibc's, right?

Can I just run apt-get install on util-linux and glibc_x? (btw: if so, do I have to install both glibc's separately?)
 
Old 02-13-2015, 08:44 AM   #4
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,635

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by miels View Post
Could it be that by issueing (several) apt-get update commands some components have been updated and now they need those GLIBC libraries? If so, can I revert that?
Maybe, if we knew what you had done...but honestly, given what you've posted, we have no idea where to begin.
Quote:
It all worked before. Don't know that much about Linux, but afaik I can't have accidentally uninstalled util-linux and glibc's, right?
Probably not, since if you did, your unit woudl be dead in the water...glibc is one of the MAIN parts of any Linux system.
Quote:
Can I just run apt-get install on util-linux and glibc_x? (btw: if so, do I have to install both glibc's separately?)
Don't know...I hate to say this, but you're only sort-of running Linux. That's an appliance-type distro, and while it may be BASED on Debian, it's not. You don't say what the model # is, but your best bet would be to totally reset the unit to factory specs, including the drives. Barring that, you may be able to ask Netgear support for help.

Without knowing EXACTLY what you did, there's not much we can guess at to try to help you.
 
Old 02-13-2015, 08:45 AM   #5
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,635

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by veerain View Post
You are missing some libraries and some very necessary one. Does your system uses shared or static libraries mostly?
You need to install util-linux package. It has the needed /lib/libuuid.so.1 library.
You need to install glibc. It has the needed /lib/libc.so.6 libray. But without this your system won't run at all in shared library system.

I don't know much about Netgear, others may help.
Again, PLEASE STOP posting misleading/incorrect information. This is an appliance, BASED ON Debian Linux. The packages you mention probably don't apply, in the sense you're referring to them. Trying to install them will lead to MORE problems.
 
1 members found this post helpful.
Old 02-13-2015, 08:53 AM   #6
miels
LQ Newbie
 
Registered: Feb 2015
Posts: 3

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by TB0ne View Post
Trying to install them will lead to MORE problems.
That's exactly the gut feeling I have on this...
 
Old 02-13-2015, 03:06 PM   #7
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,635

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by miels View Post
That's exactly the gut feeling I have on this...
You are indeed correct. From what I know of the device, the entire OS can be reloaded from scratch from firmware, but it will ALSO wipe out the data on the drives IN the device. And that may be part of the issue here...you're doing an OS re-install, but unless you're doing an entire wipe, things may be getting auto-updated/changed/'fixed', from one to the other, so the changes aren't permanent.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Apache : require ssl-certificate to access https-server jonaskellens Linux - Newbie 13 12-22-2012 03:57 PM
[SOLVED] Apache: http and https (ssl) no access eRJe Linux - Server 7 09-30-2010 04:39 PM
[SOLVED] ssl.conf and multiple ssl certificastes on Apache kaoticsnow Linux - Server 22 04-08-2010 11:52 PM
i have an error when i try to install Glibc(5.7. Glibc-2.8-20080929, Version 6.4) robineecc1 Linux From Scratch 0 12-14-2008 11:45 AM
version GLIBC_2.3 not found when starting Apache proco Linux - Software 3 09-23-2006 06:08 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 02:10 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration