오류 새로운 Ubuntu 서버를 세팅하고 난 후 apt update 명령어를 사용하니 다음과 같은 오류가 발생하였다. E: The repository 'file:/cdrom focal Release' no longer has a Release file. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. 이 오류 내용은 Ubuntu 서버에서 apt를 사용하여 패키지를 업데이트하려고 할 때 특정 소스가 더 이상 유효하지 않거나 접근할 수..
좀보이드 테스트 플레이 진행중에 "서버에서 추방 되었습니다." 라는 멘트와 함께 플레이중인 유저가 서버에서 튕기는 현상이 생겼다. 로그 확인 결과 gameserver.kick> the player test was kicked. the reason was ui_policy_kick, type21 ui_policy_kick의 이유로 추방되었고, type은 21이라는 걸 확인가능했다. # test라는 유저의 추방 로그 gameserver.kick> the player test was kicked. the reason was ui_policy_kick, type21 원인을 찾아보니 Servername.ini 파일안에 있는 안티치트 "true" 설정이 문제였다. 설정을 모두 "true" 에서 "false"로 변경..
오류 npm install 실행 후 멈춤 현상 해결 방법 파일 실행 권한 확인 후 변경 -R 옵션은 하위폴더에 동일한 권한을 부여하고 싶은 경우 사용한다. 권한 변경 후에 npm install 명령어 다시 실행 # 권한 변경 chmod 파일명 0774 -R chmod test 0775 -R
npm install시 발생하는 exited with error code: 128 오류 오류 npm install 명령어 오류 npm ERR! Error while executing: npm ERR! /bin/git ls-remote -h -t ssh://git@github.com/barrysteyn/node-scrypt.git npm ERR! npm ERR! fatal: failed to stat '.': ?? ?? npm ERR! npm ERR! exited with error code: 128 npm ERR! A complete log of this run can be found in: 해결방법 npm install -g npm -g (global) 어디서든 사용할 수 있게 해주는 옵션을 추가하고 ..

오류 nodeos를 아래 옵션으로 실행한 후에 재시작을 할 경우에 net_plugin::plugin_startup failed to bind to port 'port number' 오류가 발생했다. ./nodeos -e -p eosio --plugin eosio::chain_api_plugin --plugin eosio::history_api_plugin --replay-blockchain --hard-replay-blockchain 해결 방법 ps -ef | grep nodeos 로 실행중인 nodeos 포트 번호 확인 가능 kill -9 [포트 번호] 실행 중인 port number kill을 한 후에 nodeos 재실행하면 정상적으로 동작
node 테스트를 위해 command로 EOS를 실행하니 Database dirty flag set 오류 발생 ./nodeos -e -p eosio --plugin eosio::chain_api_plugin --plugin eosio::history_api_plugin 오류 warn 2022-03-21T06:33:22.186 nodeos chain_plugin.cpp:1321 plugin_initialize ] 13 N5boost10wrapexceptISt12system_errorEE: Database dirty flag set rethrow Database dirty flag set: {"what":"Database dirty flag set"} nodeos chain_plugin.cpp:1321 pl..