LSMCD not working on CentOS 6.8 and 7.2

#1
First try on CentOS 6.8 64bit

Code:
[root@kamile lsmcd]# make
CDPATH="${ZSH_VERSION+.}:" && cd . && aclocal-1.13
/bin/sh: aclocal-1.13: command not found
make: *** [aclocal.m4] Error 127
Second try on CentOS 7.2

This time compiled without errors. Next step according to https://github.com/litespeedtech/lsmcd

Code:
update the default configure "/usr/local/lsmcd/conf/node.conf"
Done that, used example 1

Next step, start deamon: service lsmcd start

Code:
[root@greta dist]# service lsmcd start
start lsmcd                             [       ERROR   ]
No logs, nothing...
 
#2
Hi

You will see following two entries in the configuration file
Code:
#LogLevel=dbg_medium
LogFile=/tmp/lsmcd.log
The log file is dumped after uncommented. There is an example configuration ./dist/conf/example1.conf, usually you just replace the dummy IP with your local IP. In the race case, if a port is being used, so daemon fails to start.
Please upload your configuration and log if you still run into issue.

In the term of compile issue on CentOS 6.8, we will reproduce it on clear environment.

Thanks

Ben Yang
 
Last edited by a moderator:
#3
Hi Ben

I have same problem with configuration

bellow i attach my config file
Code:
Repl.HeartBeatReq=30
Repl.HeartBeatRetry=3000
Repl.MaxTidPacket=2048000
Repl.GzipStream=YES
Repl.LbAddrs=<redis-uat-2.atm:6655>
Repl.ListenSvrAddr=<redis-uat-2.atm:6656>
Repl.DispatchAddr=<redis-uat-2.atm:6657>

Cached.Addr=<ip1:11211>
Cached.PriAddr=<ip1:port 3>
#default is 8, it can be bigger depending on cache data amount
Cached.Slices=8
Cached.Slice.Priority.0=100
Cached.Slice.Priority.1=100
Cached.Slice.Priority.2=100
Cached.Slice.Priority.3=100
Cached.Slice.Priority.4=100
Cached.Slice.Priority.5=100
Cached.Slice.Priority.6=100
Cached.Slice.Priority.7=100

Cached.ShmDir=/dev/shm/lsmcd

##this is the global setting, no need to have per slice configuration.
User=nobody
Group=nobody
#depends CPU core
CachedProcCnt=4
RepldSockPath=/path/repld.usock
CachedSockPath=/path/cached.usock.
TmpDir=/tmp/lsmcd
LogLevel=error
LogFile=/var/log/lsmcd/lsmcd.log
please take a look and help me
 
Last edited by a moderator:
Top