CentOS is a Linux distribution aiming for 100% binary compatibility with RHEL.

learn more… | top users | synonyms

0
votes
1answer
47 views

Encrypting string with bash

I use CentOS5. I'm trying to read a username and a password in a bash script so I can create a new unix user. useradd -p $password $login the problem here is that the password is not encrypted ...
0
votes
1answer
25 views

Debugging Stuck Ruby Process - Workling\Starling

We have a rails app that about every 24 hours runs the load average on the machine well beyond 5. It looks like a stuck Ruby process specifically related to a background process running to manage ...
0
votes
0answers
14 views

error: zlib not found on system or in local libs [migrated]

I'm trying to install gpac on my server and when I run ./configure I get the following error. error: zlib not found on system or in local libs I have checked and I have zlib installed, or at ...
-1
votes
0answers
26 views

Centos 5.9 ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen [closed]

I found message in /var/log/messages May 7 00:03:49 svr kernel: ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen May 7 00:03:49 svr kernel: ata1.00: cmd ...
0
votes
0answers
24 views

PHP can't connect to the database after upgrading php and mysql, both to 5.5 on CentOS 5

I recently upgraded php from 5.2 to 5.5 on my server running CentOS 5.5. Then I also upgraded mysql from 5.1 to 5.5. Everething worked fine for a few days until now. Now any application installed on ...
0
votes
1answer
25 views

Problems with PHP time zone wrongly set

I have a problem with PHP not reflecting correctly the actual time, an as a result all server's scripts are always 5 hours in the future. If I run this in thecommand line I got. (Centos5) .. ...
0
votes
0answers
113 views

vsftp virtual users setup configuration

I can't get vsftp virtual user to work… I'm trying to setup a virtual user for web developers that are restricted to only the apache document root folder. CentOS 5.9(Final), vsftpd 2.0.5, pam ...
1
vote
2answers
60 views

gitolite setup getting FATAL: fingerprinting failed for '/tmp/Q3pnE4WVbu'

I am installing gitolite on a CentOS 5.9 server. I have created the git user, then after su - git I have managed to get my public key into the ~/.ssh/ directory, I have successfully cloned the ...
0
votes
2answers
44 views

How to capture href link in BASH

I have an output line that I regexed that looks like this: <a href="google.com">"test link"</a><br> how do I go about capturing google.com without quotes into a variable? Given ...
1
vote
3answers
55 views

How to run the other version of python I have installed on my Centos 5.3 [closed]

I have two different versions of python installed on my Centos 5.3 Final. The default version which is 2.4.3 and the new one which is 2.6.8. [root@localhost bin]# ls py* pydoc pydoc26 pygtk-demo ...
0
votes
0answers
23 views

Kloxo : remove the customer/client name from the website address

I'm using Kloxo for hosting management (my server is using CentOS 5). I created 2 clients : domain1 and domain2 which located at /home/domain1 and /home/domain2. Everything worked fine except this: ...
0
votes
1answer
165 views

I cant install NODEJS in CENTOS… why?

Ive wget a version that have .configure of NODEJS (node-v0.8.3) Be couse the latest version doesnt have .configue o make or makeintall.. (Just found "how to" with ./configue)... My server is CENTOS ...
-1
votes
1answer
30 views

error while installing postgresql in centos5 [closed]

I am newbie in linux and I am having a problem about installing PostgreSQL in CentOS. Anyone has an idea about fixing this error? Code for installing postgresql: yum install postgresql When I ...
0
votes
0answers
35 views

centos 5.6 shows only blue screen after installation [closed]

I am not able to go to text mode using Ctrl+Alt+F1... I am stuck with blue screen only. When I boot with init level 3 The lspci command shows: 00:02.0 VGA compatible controller: Intel Corporation ...
-1
votes
1answer
85 views

Can't Install gdal on CentOS 5 [closed]

I'm really struggling with installing gdal on CentOS 5 -- I have searched and searched. Here is the output I get: [root@1-free-fonts ~]# yum install gdal Loaded plugins: fastestmirror Loading mirror ...
0
votes
1answer
43 views

Ceph: mount failed: Numerical argument out of domain

Due to this problem, my friend found the Open Fusion repo that included the ceph. ceph-fuse is installed without problem: # ceph -v ceph version 0.27.1 ...
0
votes
1answer
70 views

Compiling Ceph on CentOS 5: `doc_DATA' is used but `docdir' is undefined?

Has anyone sucessfully compiled Ceph on the CentOS 5? [user@host ceph-0.56.4]# make ... checking boost/spirit.hpp usability... src/Makefile.am:1115: `doc_DATA' is used but `docdir' is undefined ...
0
votes
1answer
390 views

Libtool library used but `LIBTOOL' is undefined?

Im trying to install ffmpeg on my server. Im unsing centos 5. When I try to install libfdk_aac I get the following error autoreconf: Entering directory.' autoreconf: configure.ac: not using Gettext ...
0
votes
0answers
63 views

centos 5.9 install vim-enhanced, but syntax failed in root; what is that 'select all' command

centos 5.9, with normal user, vim-enhanced works; but failed in root; any advise, thanks what is that 'select all' command for vi, those ggVG or $y are not working... thanks
1
vote
1answer
93 views

Determine python version in Easy Install

I wan't to install 'twisted' module on CentOS 5.9 . There is python 2.4 by default on it and because of other program dependencies I can't remove python 2.4 . I have installed Python 2.7 by yum ...
0
votes
1answer
55 views

Some qns regarding indexing of Apache Solr

I have installed Solr 3.6.2 and drupal 7 on xampp for linux on my server. i have also installed solr integration module apachesolr-7.x-1.1.zip 1) when i index a file say book.csv where is this file ...
0
votes
1answer
52 views

rpmbuild of php fails on make test

I am trying to build php from rpm source and it fails on centos 5 32bit. building of php 5.2.6. I get error as follows: Checking for unpackaged file(s): /usr/lib/rpm/check-files ...
1
vote
2answers
76 views

Why does sudo behave like this when the command has a variable assignment and what can I do?

I'm debugging a bash script and I have boiled down my problem to this very simple script. It runs in CentOS 5.7: # tmp.sh function do_as_someuser { sudo -u someuser -i "$1" } do_as_someuser "ls ...
0
votes
1answer
132 views

Postfix not able to receive mails from external domains

Problem is that I able to send mails from my myname@mydomain.com to outside domains but all mails coming from outside (myname@gmail.com) are is not reaching my domain mail ids. I am not sure where I ...
0
votes
1answer
53 views

MONO 3 - 403 error

im running mono 3.0 via fastcgi... my htaccess is like this: Action mono-cgi /home/vamola/public_html/cgi-bin/mono-cgi AddHandler mono-cgi .aspx .asmx .ashx .ascx .asax .axd .config .cs mono-cgi: ...
-1
votes
1answer
34 views

I renamed bin directory in centos in can not login anymore [closed]

I know Im crazy boy! I did rename bin directory in my centos and now I can not login with my account. is there any way to fix it?
0
votes
1answer
395 views

Rubygems Unable to convert “\x88” from ASCII-8BIT to UTF-8

I'm try this but not working. I have update rdoc Nothing to update. [root@namehost sqlite-3.7.0.1]# locale LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" ...
0
votes
0answers
91 views

OpenCV build error with Python

I'm getting a weird syntax error when trying to build OpenCV 2.4.4 on CentOS 5.8. Generating pyopencv_generated_funcs.h, pyopencv_generated_func_tab.h, pyopencv_generated_types.h, ...
0
votes
0answers
320 views

php Unable to load dynamic library mssql cannot open shared object file on centos

I am compiling on centos 5 32 bit, php version 5.2.4 configure options: './configure' '--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' ...
1
vote
1answer
161 views

Disable cache links issue

I have a site for download files (.pdf, .rar, .jpg,...). I have a big problem with server and I think it related to apache: For example i linked to 12.pdf for download it: <a ...
2
votes
2answers
148 views

linux random function

I am using Linux random() function to generate random message in CentOS 5.2. I want to reset the seed after 3 random calls. In other words I want the same output in 1st call and the 4th call. Is there ...
-1
votes
1answer
96 views

Does not add user in centOS 5.5

When I run a shell script. It shows some errors. I run script on centOS 5.5. This is the part of my shell script where its show error. PART OF CODE if ! id service >/dev/null 2>&1 then ...
0
votes
0answers
140 views

Error execute mule studio on Centos (JVM terminated. Exit code=13)

Hi i tried execute mule studio (MuleStudio-CE-for-linux-32bit-1.3.2-201212121943.tar.gz) on centos 5 this is my environment actually is a eclipse problem but is the file downloaded from the mulesoft ...
0
votes
1answer
112 views

How to force NFS mounted disk to sync to current state that was updated by a different machine?

I am running into an issue as follows in my C++ application running on Centos 5: On machine A there is an NFS mounted drive from machine C that contains a file: ...
4
votes
2answers
195 views

Using WebKitGTK+ on Centos 5.8?

I'm trying to build an embedded simple web browser for an embedded device and I've decided to use WebKit / WebKitGTK+. However, our device uses a Linux environment somewhat based on CentOS 5.8. I ...
0
votes
1answer
208 views

Installing Zend Framework 2 using pyrus

I'm getting an error when trying to download Zend Framework2 view pyrus. Here is the error: # php pyrus.phar . install zf2/Zend_Framework#Standard Using PEAR installation found at ...
0
votes
1answer
216 views

configuration of xdebug on centos with php-5.2.8

I followed the link http://xdebug.org/wizard.php to install xdebug2.2.1 for netbeans7.2 php in my centos5.8 but I dnt have phpize for which i need to install php5-dev and I need to work on php ...
0
votes
2answers
703 views

keyctl commands throw 'undefined symbol: dlopen' errors

I am running Centos 5.8 on a production server. I have an application that needs to use the keyctl command, but everytime the app calls (or I call) the command, I have some errors. The first error ...
0
votes
1answer
100 views

ftp_login() error

I have a big error. This is my ftp_connect() PHP code.This code work my localhost but does not work my host (Centos 5.8) $ftp_username="username"; $ftp_password="pass"; $ftp_host="212.***.***.149"; ...
-1
votes
1answer
118 views

How to install urwfonts-8.71.tar.bz2 in Linux? [closed]

I have downloaded this free set of 80 standard fonts, but I'm not sure how to install it in my Linux box (CentOS 5.4). Any suggestion would be greatly appreciated! Thanks!!
0
votes
0answers
174 views

CentOS 5.3 Remove temporary files created while archiving process

Please help getting rid of these temp files. Actually, I installed it in VMWare Player with 15 GB HARD DISK. There was ONLY 3-4 GB space left on the hard disk when I tried to create archive. I tried ...
-3
votes
1answer
96 views

SSH login root user different from group [closed]

i think i did a mess: I changed my ssh username server from root to another. Saved the passwd file in etc and then I realize that i didn't change the group. Now I'm not able to access the server as ...
0
votes
0answers
210 views

GDM Login Screen customization (Centos 5.8)

How to do it and whether it can be done or not. If you can, how and where to start. I want to add a button to execute a command (eg service mysql status check), but the button is placed on Centos ...
0
votes
2answers
146 views

Can't install Couchbase PHP client library v.1.1.1 to CentOS 5.6

I have two servers dev and production, they are pretty simillar. Both have CentOS 5.6 PHP 5.2.17 Here is installed list: yum list installed | egrep 'couch|php|mem' couchbase-server.x86_64 ...
0
votes
0answers
27 views

CentOS 5 where is libbb.h and the busybox object files?

using a CentOS 5.8 box here. I am trying to build a simple C program which uses some functions of the libbb.h file (BusyBox) - specifically the update_passwd() function. I have installed the busybox ...
1
vote
1answer
53 views

How can i copy Couchbase data from disk to memory, due to memory increasing?

Some time ago our Couchbase cluster started to read data from disk, because memory was full. We increased memory amount, but the Couchbase still reads from the disk. Disk reads greatly increases the ...
2
votes
0answers
222 views

GhostScript on CentOS 5.3 - Unable to process JPXDecode data

I'm trying to get our server to convert PDFs to image files. It's a CentOS 5.3 system and the latest version of ghostscript that can be (8.70), has been installed. When I try to convert a PDF I get ...
1
vote
2answers
121 views

drupal mod_rewrite not working

I have a problem with drupal in Clean Url Module. In my apache conf I have: LoadModule rewrite_module modules/mod_rewrite.so Uncomment. When I run #/usr/sbin/httpd -M I get the module: ...
0
votes
1answer
1k views

How to open port 2195 in iptables centos for activating the APNS

I tried this solution: iptables -I OUTPUT -p tcp --dport 2195 -j ACCEPT /etc/init.d/iptables stop /etc/init.d/iptables start but still can't access the port. If there are more ports that i have to ...
0
votes
0answers
56 views

Skypekit - virtual functions but non-virtual destructor

I have been trying to build this all night. I am running cent OS 5 and trying to build the videortphost-loopback for skypekit Below is what happens when I enter the commands: 1. cd ...

1 2 3 4 5