Questions tagged [centos6]

GENERAL SUPPORT QUESTIONS MAY BE ASKED ON SERVER FAULT https://serverfault.com CentOS is a Linux distribution aiming for 100% binary compatibility with RHEL.

is a free operating system distribution based upon the Linux kernel.

Version 6 was released on 2011-07-10 and uses kernel version 2.6.32-71.

1576 questions
3
votes
1 answer

How can i install php5-dev in Centos 6

I am using centos 6. i want to install php5-dev on my cloud server. Because in my server I got phpize error. This is not working on my server. My PHP version is 5.3.3. I need to pecl install mongo
3
votes
2 answers

PHP Solr install not working

I've running to the error of trying to install solr with the pecl extension. I've read this one: Trying to install pecl Solr extension but it needs curl (Server Fault) I'm using php 5.3.3 on a centos 6 server. And both times I get the same…
Devin Dixon
  • 11,553
  • 24
  • 86
  • 167
2
votes
2 answers

Can't commit large file to svn

We have installed svn in an centos 6 system. We are accessing it through tortoise svn on windows systems. When I tried to commit a flash FLA file of 5MB, I got this error: Commit failed (details follow): PUT…
harilalkm
  • 456
  • 1
  • 4
  • 15
2
votes
1 answer

JBOSS 7 AS standalone.sh unable to access jboss-modules.jar

I'm a bit at wit's end here trying to figure out what's going on. I'm trying to setup JBOSS 7 on CentOS 6 and I keep getting: ========================================================================= JBoss Bootstrap Environment JBOSS_HOME:…
FloppyDisk
  • 1,693
  • 16
  • 25
2
votes
3 answers

PHP 5.3.8, JSON & CentOS 6

We're running CentOS 6 and PHP 5.3.8 (as an apache module) which should have JSON as part of it's core (I'm told). Looking at # php -i on the command line I can see under Configure Command '--enable-json=shared' ... great! However, looking at…
BrochanGuMor
  • 710
  • 1
  • 9
  • 16
2
votes
3 answers

Why there is no kdevelop on CentOS 6

I tried to use kdevelop on CentOS 6, but unlike CentOS 5.*, I couldn't find such an option under Programming. I searched through the package list, no mention of KDevelop either, does anybody have any idea what happened to kdevelop on CentOS 6? Is…
Hank
  • 21
  • 1
  • 3
2
votes
1 answer

How to install PyQt4 to Python 2.7 in Centos 6?

I managed to install PyQt4 but it install under Python 2.6. How do I get it installed under Python 2.7?
hexacool
  • 71
  • 1
  • 6
2
votes
0 answers

relocation error: libc.so.6: symbol _dl_starting_up, version GLIBC_PRIVATE not defined in file ld-linux-x86-64.so.2 with link time reference

Our company made one application which work on electron version 1.8.2. When someone open the application on Centos 6.x below error is occur Segmentation fault (core dumped) I made a script with the help of link: #!/bin/bash LDDVERSION="$(ldd…
Zubair Latif
  • 33
  • 1
  • 4
2
votes
0 answers

Can't mount tmpfs to container

I'm trying to start kubernetes worker on CentOS 6.8 with docker 1.12.6. There is no success when weave container starting, it cannot get token from mounted tmpfs volume. I tried to start container in console with that same volume and don't see files…
ekorn
  • 21
  • 2
2
votes
2 answers

How to set the document root in Virtualmin sub server?

I have a Centos 6.10 server running Webmin/Virtualmin in a dedicated box. I have a few subdomains running under a main parent domain. These sub domains - sub servers as they are called under Virtualmin serve the main page. I have edited the…
Wordsmith
  • 51
  • 3
2
votes
1 answer

how to create crontab for auto run command "service php-fpm restart" in centos 6?

I want to run command "service php-fpm restart" each 1 minute and I tried to using contab. I tried this code in contab file: 0/1 * * * * service php-fpm restart In the file crontab from /var/spool/con/root, I put these code: 0 2 * * * chown -R…
2
votes
2 answers

Issue installing puppet on centos 6.5

Previously I had been installing puppet on my centos 6.5 instances with the following code # Install & configure puppet rpm -ivh http://yum.puppetlabs.com/puppetlabs-release-el-6.noarch.rpm yum -y install puppet I am now getting the following…
BillMan
  • 9,434
  • 9
  • 32
  • 52
2
votes
1 answer

Who determine GLIBCXX_version when build a binary using g++?

I am building an self-made shared library using G++ 4.9.3 on Centos 6.8. This library uses boost::interprocess::file_lock and version of boost is 1.41.0. I am not working on multiple environment.. I just use a device and I've never changed build…
Jinoh Kim
  • 45
  • 5
2
votes
0 answers

How to run LibreOffice 6.2 on CentOS6 / RHEL6?

I can install LO RPMs but when I try to run the process I get this: /opt/libreoffice6.2/program/oosplash: /lib64/libz.so.1: version `ZLIB_1.2.3.4' not found (required by /opt/libreoffice6.2/program/oosplash) /opt/libreoffice6.2/program/oosplash:…
2
votes
1 answer

bash script- printing the absolute path of all running jar

To printing all running jar on the server, the command is below: ps -aux|grep java But I want to get the output like below so that I can know the absolute path of running jars in the system: Running_jar Absolute_path test.jar …