Open tuwid opened 8 years ago
Test you environment setup (MONGO_URL) and connection to mongodb from seyren container, but for me last version which works correctly was 1.3.0 + mongo:3.0.1 . Newer version failing on many different mongodb errors (indexes, ...)
Same problem, and still not solved though I have changed to 1.3.0 + mongo 3.0.1. Is there any thing extra to do before
wget https://github.com/scobal/seyren/releases/download/1.3.0/seyren-1.3.0.jar
export GRAPHITE_URL=http://graphite.foohost.com:80
java -jar seyren-1.5.0.jar
open http://localhost:8080
and
sudo mongod
?
Hi
I had have the same error. This is caused by setting bad the variable MONGO_URL, which must be like follow:
MONGO_URL=mongodb://localhost:27017/seyren
mongodb -> Protocol (do not change). localhost -> IP or hostname in which MongoDB is running. 2701: -> Mongodb listen port seyren -> Database used by Seyren jar (do not change).
I have this error when I tried to switch form 1.3.0 to either 1.5.0 or then 1.4.0. I even delete a mongo delete of all my checks (in a test env.) and it still gives the same error:
"...Caused by: com.mongodb.MongoCommandException: Command failed with error -1: 'index not found with name [checkId_1_target_1]' on server localhost:27017. The full response is { "nIndexesWas" : 3, "ok" : 0.0, "errmsg" : "index not found with name [checkId_1_target_1]" }..."
my seyren+mongo on 16.04.4 with 1.3.0.jar from years ago does run (but every so often I get a 100% CPU by Mongo and I have to stop and start Mongo....
Ubuntu 14.04 trusty and seyren 1.5
any ideas ?