Linux application upgrade ways

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Linux application upgrade ways
# 1  
Old 12-14-2011
Linux application upgrade ways

Hello. I need upgrade memcached. This software is installed throuth yum. In official repositories isn`t newest version of memcached, but this one is vulnerable. So looks like I need built it from source, but I dont really want to install c libraries un compilers on system.

1.) So can I compile memcached on similar Linux Centos 5 system and copy over only libs? Which libs, what are the main directories where to copy and how that could be performed?

2.) How you guys actually doing application upgrades on linux systems?
With package managers - apt, yum thats not possible to keep applications updated.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

Application behaving in 3 different ways on 3 different machines

Hello. During the holidays I've been developing an application on my desktop computer at home. I setup a repository on github, so when I got back to work I cloned the repo to my laptop. It wouldn't work. The app is comprised of a client and a server, strangely enough the server would segfault... (10 Replies)
Discussion started by: erupter
10 Replies

2. UNIX for Dummies Questions & Answers

Typical steps to be followed while applying an application patch upgrade on linux

what are the typical steps used by system adminstrators while applying an application patch upgrade (1 Reply)
Discussion started by: ramky79
1 Replies

3. UNIX for Dummies Questions & Answers

What are the two ways the hardware clock can be configured under Linux?

What are the two ways the hardware clock can be configured under Linux? Thanks (3 Replies)
Discussion started by: lemon_06
3 Replies

4. Red Hat

Linux - update/upgrade

Hi, I'm interesting do you have a some solution/good practice how upgrade/update OS with possibility to back previously release (something like Live upgrade in Solaris) ? thanks. (2 Replies)
Discussion started by: deivo
2 Replies

5. Linux

Slight Linux Upgrade

Hello Ya'all: I hope Zaxxon is still around. I read a posting about compiling/updating the kernel from source. I'm doing a very specific upgrade, and am wondering if there is anything different or if there's an easy way to do this: I am using kernel version 2.6.18-92, and have done some... (1 Reply)
Discussion started by: Statue
1 Replies

6. Shell Programming and Scripting

How to Upgrade Jdk After install in linux

hii... i want to upgrade my java version 1.4.2 to 1.6 in linux plateform after installing JDK. so what are the steps & commands in linux to upgrade it . Please Help me ... (1 Reply)
Discussion started by: rinkugarg
1 Replies

7. Red Hat

util-linux upgrade with interruption?

Hi All, I have util-linux upgrade that I need to do on redhat 4 ent. Does this going to interruption with the operation of the OS or application? Or this will be straight forward upgrade that will not make a harm or downtime of the OS. Thank you for any comments you may add. (3 Replies)
Discussion started by: itik
3 Replies

8. UNIX for Dummies Questions & Answers

Linux Kernel upgrade

Hi everyone, I am trying to have a second kernel in my Red hat 2.4.18. I downloaded the 2.4.9 version and did all the extract and stuff. when I run the command make bzImage I get the following error: devlist.h:6931: __devices_b1b3 causes a section type conflict > devlist.h:6934:... (1 Reply)
Discussion started by: bashirpopal
1 Replies
Login or Register to Ask a Question
MEMCACHED-TOOL(1)					      General Commands Manual						 MEMCACHED-TOOL(1)

NAME
memcached-tool - stats and management tool for memcached SYNOPSIS
memcached-tool <host[:port] | /path/to/socket> [mode] DESCRIPTION
memcached-tool is a Perl script used to print statistics from a running memcached instance. The first parameter specifies the address of the daemon either by a hostname, optionally followed by the port number (the default is 11211), or a path to UNIX domain socket. The second parameter specifies the mode in which the tool should run. MODES
display Print slab class statistics. This is the default mode if no mode is specified. The printed columns are: # Number of the slab class. Item_Size The amount of space each chunk uses. One item uses one chunk of the appropriate size. Max_age Age of the oldest item in the LRU. Pages Total number of pages allocated to the slab class. Count Number of items presently stored in this class. Expired items are not automatically excluded. Full? Yes if there are no free chunks at the end of the last allocated page. Evicted Number of times an item had to be evicted from the LRU before it expired. Evict_Time Seconds since the last access for the most recent item evicted from this class. OOM Number of times the underlying slab class was unable to store a new item. stats Print general-purpose statistics of the daemon. Each line contains the name of the statistic and its value. dump Make a partial dump of the cache written in the add statements of the memcached protocol. SEE ALSO
memcached(1), http://www.memcached.org AUTHOR
The memcached-tool script was written by Brad Fitzpatrick <brad@danga.com> Jul 2, 2013 MEMCACHED-TOOL(1)