개발실

Memurai 실행 오류

copycd 2021. 8. 31. 17:41
반응형
memurai.exe

아래와 같이 권한이 없다고 나온다.

관리자 권한으로 명령프롬프트를 실행하고 해도 결과는 동일하다.



[20992] 31 Aug 17:26:38.479 # --- Memurai is starting ---
[20992] 31 Aug 17:26:38.479 # Memurai Developer version=2.0.3, API=5.0.10, instance-name=, pid=20992, just started
[20992] 31 Aug 17:26:38.481 # Memurai Developer Edition automatically shuts down after 10 days. For more details see: https://www.memurai.com/faq
[20992] 31 Aug 17:26:38.482 # Warning: no config file specified, using the default config. In order to specify a config file use memurai.exe /path/to/memurai.conf
[20992] 31 Aug 17:26:38.485 # Could not create server TCP listening socket *:6379: bind: Permission denied





인터넷 보면, 아래와 같이 cli를 실행한후, 

shutdown을 하라고 하는데,



나는 아래와 같이 실행하면 저런 오류가 난다.

memurai-cli

Could not connect to Memurai at 127.0.0.1:6379: Unknown error (10061)

 

 

이건, 옛날버전을 다운받아서 동일한 PC에서 실행했더니, 아래와 같다.

D:\temp\Redis-x64-3.2.100>redis-server.exe
[24120] 31 Aug 17:57:25.002 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server.exe /path/to/redis.conf
[24120] 31 Aug 17:57:25.007 # Creating Server TCP listening socket *:6379: bind: No such file or directory

D:\temp\Redis-x64-3.2.100>redis-cli.exe
Could not connect to Redis at 127.0.0.1:6379: 대상 컴퓨터에서 연결을 거부했으므로 연결하지 못했습니다.
Could not connect to Redis at 127.0.0.1:6379: 대상 컴퓨터에서 연결을 거부했으므로 연결하지 못했습니다.







D:\temp\Redis-x64-3.2.100>redis-server.exe redis.windows.conf
[26580] 31 Aug 18:05:02.411 # Creating Server TCP listening socket 127.0.0.1:6379: bind: No error

D:\temp\Redis-x64-3.2.100>redis-cli.exe
Could not connect to Redis at 127.0.0.1:6379: 대상 컴퓨터에서 연결을 거부했으므로 연결하지 못했습니다.
Could not connect to Redis at 127.0.0.1:6379: 대상 컴퓨터에서 연결을 거부했으므로 연결하지 못했습니다.
not connected> exit

 

결론은, 포트번호를 후반부로 해서 실행했더니 된다.

memurai --port 50000

 

반응형