Questions tagged [centos5]

CentOS 5 is an obsolete, free (as in beer and speech) GNU/Linux distribution that is community driven and based on source code released from RHEL.

CentOS 5 is a free (as in beer and speech) GNU/Linux distribution that is community driven and based on source code released from RHEL. It went end-of-life on 2017-03-31, is now unsupported, and shouldn't be used on production systems.

806 questions
3
votes
3 answers

How to create RPM for 32-bit arch from a 64-bit arch server?

Our production server is running CentOS5 64-bit arch. Because there are no RPM available currently for SQLite latest version (v3.7.3), I created RPM using rpmbuild the very first time by following the instructions given here. I was able to…
Gnanam
  • 1,459
  • 13
  • 26
  • 32
3
votes
2 answers

Setting up two NICs on two separate LANs provides error

I wish I had found this before starting in, but it's too late for that... I am running CentOS 5.5. I started following this guide for setting up two NICs on different networks. Everything was going fine until I hit this step: This part allow the…
Aeo
  • 143
  • 1
  • 9
3
votes
3 answers

Where to define command in nagios

I want to define new command in nagios for remote host but i can't find out where should i write this thing define command { } on remote host i have only this file vim /usr/local/nagios/etc/nrpe.cfg Should i write that in above file or i have…
John
3
votes
2 answers

Installing gitweb failed: No package gitweb available

I have tried installing gitweb via ssh and failed. Below is what I get. root@server [~]# yum install gitweb Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * rpmforge: ftp-stud.fht-esslingen.de rpmforge …
logii
  • 131
  • 4
2
votes
2 answers

error while loading shared libraries: libcurl.so.4: cannot open shared object file: No such file or directory

I am trying to run an application that requires libcurl but I can't start it. error while loading shared libraries: libcurl.so.4: cannot open shared object file: No such file or directory I was running centos 5.9 but after update I have now CentOS…
usersubuser
  • 25
  • 1
  • 1
  • 3
2
votes
2 answers

auditd process stops logging after logrotate script runs

I am trying to use logrotate to keep audit logs for a set period of time rather than using auditd's special rotation (from /etc/audit/auditd.conf). I have changed the max_log_file_action to IGNORE in that file. The following is my logrotate…
Linux2012
  • 21
  • 1
  • 3
2
votes
1 answer

How would I be able to take a snapshot of a CentOS 5 server and compare it later on?

I have a consultant that was hired to install some custom software to a CentOS 5 server. After she's done, I'd like to review her changes to possibly automate or optimize them. I was thinking of: Somehow, snapshot the system before handing it over…
Belmin Fernandez
  • 10,799
  • 27
  • 84
  • 148
2
votes
2 answers

What would cause ifconfig NIC frame drop counts to increase SLOWLY (90-100 frames per day)?

I have a web appliance running CentOS 5.11. It sees a fair amount of traffic (apologies, I don't have specific numbers but I know it's in use). For some reason, I'm seeing ifconfig error counts slowly incrementing on it. eth0 Link…
Mike B
  • 11,871
  • 42
  • 107
  • 168
2
votes
1 answer

200 OK blank page setting up Wordpress on restore test VM

I'm testing a partial backup of a frankly rather outdated (legacy, what can you do?) CentOS/Apache/MySQL/PHP/Wordpress server by restoring to a VM with a fresh copy of the relevant packages. After many trials and tribulations, I've gotten to the…
Nathan Tuggy
  • 124
  • 1
  • 1
  • 10
2
votes
1 answer

Could not load file or assembly fastcgi-mono-server4

I am trying to host an ASP.NET Web Forms application using Mono. I have installed Mono 3.0.7 and XSP 2.10.2 from source into the /usr/bin directory. I then started the mono server with the following command: fastcgi-mono-server4…
2
votes
2 answers

Intermittent full system hang on VM server running CentOS 5.10

CentOS 5.10 / VMWare ESX 5.1 I've got an older email server running CentOS 5.10 (with SendMail) and it's experiencing intermittent hangs wherein the system becomes completely unresponsive. During these times, I can't connect to it at all and the…
Mike B
  • 11,871
  • 42
  • 107
  • 168
2
votes
2 answers

Install php53 on CentOS 5.10 without httpd dependency

I would like to install php53 on CentOS 5.10 64-bit without the httpd dependency. The reason being the production server has a custom compiled binary of a newer version of httpd. Is installing php53 on CentOS5 without the httpd dependency even…
superbarney
  • 73
  • 1
  • 7
2
votes
3 answers

Possible to re-enable IPv6 without rebooting?

I have a machine running CentOS 5.8. IPv6 was disabled by creating a file /etc/modprobe.d/disable-ipv6 with the following contents: options ipv6 disable=1 Removing the file and rebooting the machine should re-enable IPv6. Is there a way to enable…
hcsteve
  • 341
  • 2
  • 7
2
votes
1 answer

How to use a different version of python duing NPM install?

Salam (means Hello) :) I have terminal access to a VPS running centos 5.9 and default python 2.4.3 installed. I also installed python 2.7.3 via these commands: (I used make altinstall instead of make install) wget…
2
votes
1 answer

How to open a port below 1024 in Cent OS for socket.io?

I'm trying to open port 843 in my Cent OS 5.2, I added following line to etc\sysconfig\iptables : -A INPUT -p tcp --dport 843 -j ACCEPT and then updated my iptables service. I need to listen to that port in my node.js application which is running…