Elasticsearch 0.90.5 is out

Are you running the latest version Andy? I'm still on 0.90.5 but it's working and very stable, so I'm trying to hold off all the "latest" version updates as soon as they are released now.
 
I upgraded to 0.90.7: Overwrote the files and restarted elasticsearch:

# rcelasticsearch restart

# curl -XGET 'localhost:9200'
{
"ok" : true,
"status" : 200,
"name" : "Conquest",
"version" : {
"number" : "0.90.5",

"build_timestamp" : "2013-09-17T12:50:20Z",
"build_snapshot" : false,
"lucene_version" : "4.4"
},
"tagline" : "You Know, for Search"
}

Did your version number match the updated one?
 
I upgraded to 0.90.7: Overwrote the files and restarted elasticsearch:

# rcelasticsearch restart

# curl -XGET 'localhost:9200'


Did your version number match the updated one?
Last time I upgraded, you also need to remove the older versions of the files in the es directory, otherwise it will still use them.

eg:

Code:
-rw-r--r-- 1 root root 11000124 Jun 26 08:56 elasticsearch-0.90.2.jar
-rw-r--r-- 1 root root 10563221 Aug 23 17:07 elasticsearch-0.90.3.jar

It had both the new and old version in the /lib folder.
 
Hahaha, I did upgrade multiple times, and I keep remember the problems @MattW and I run into because we left the old files there.
I keep referring to the old post he made about doing it the right way. I have no problem using latest version.
 
Can someone tell me how to upgrade elasticsearch?

A long time ago I have installed with: dpkg -i elasticsearch-0.90.3.deb

Now i have download the file elasticsearch-0.90.7.deb

It is a debian wheezy server.
 
Top Bottom