sudo gdebi kiln_0.5.1_amd64.deb로 Debian Linux에 Kiln을 설치했지만 UI가 브라우저에서 열리지 않습니다.어떡해?
-
-
루프백이 활성화되지 않은 경우`http ://127.0.0.1 : 8000`을 사용해 보셨습니까?또한 systemd 서비스가 활성 상태이고 오류없이 실행 중임을 표시합니까?`journalctl -u kiln -ef`를 사용하여 로그를 볼 수도 있습니다.Have you tried `http://127.0.0.1:8000` in case your loopback is not enabled? Also, is the systemd service showing that it's active and running without error? You can also look at logs with `journalctl -u kiln -ef`
- 0
- 2019-04-19
- Elliot Cameron
-
-로그는 Fri 2019-04-19 10:22:48 CEST에 시작됩니다.- 4 월 19 일 23:15:14 user systemd [1] : kiln.service : 장치가 실패 상태로 들어갔습니다. 4 월 19 일 23:15:14 사용자 systemd [1] : kiln.service : 'exit-code'결과로 실패했습니다. 4 월 19 일 23:15:19 사용자 systemd [1] : kiln.service : 서비스 보류 시간이 초과되었습니다.-- Logs begin at Fri 2019-04-19 10:22:48 CEST. -- Apr 19 23:15:14 user systemd[1]: kiln.service: Unit entered failed state. Apr 19 23:15:14 user systemd[1]: kiln.service: Failed with result 'exit-code'. Apr 19 23:15:19 user systemd[1]: kiln.service: Service hold-off time over, scheduling restart.
- 0
- 2019-04-19
- ciTEZen
-
4 월 19 일 23:15:19 user systemd [1] : Kiln 중지. 4 월 19 일 23:15:19 user systemd [1] : Kiln 시작. 4 월 19 일 23:15:19 사용자 run-kiln [19660] : 공유 해제 : 공유 해제 실패 : 작업이 허용되지 않음 Apr 19 23:15:19 user systemd [1] : kiln.service : Mainprocessexited,code=exited,status=1/FAILURE over and over againApr 19 23:15:19 user systemd[1]: Stopped Kiln. Apr 19 23:15:19 user systemd[1]: Started Kiln. Apr 19 23:15:19 user run-kiln[19660]: unshare: unshare failed: Operation not permitted Apr 19 23:15:19 user systemd[1]: kiln.service: Main process exited, code=exited, status=1/FAILURE over and over again
- 0
- 2019-04-19
- ciTEZen
-
어떤 버전의 Ubuntu?What version of Ubuntu?
- 0
- 2019-04-21
- Elliot Cameron
-
데비안을 사용하고 있습니다.우분투는 단지 데비안의 리 패키지가 아닙니까?Fredcy는 데비안 사용을 권장합니다 ...I am using Debian. Isn't Ubuntu just a repackage of Debian? Fredcy recommends using Debian...
- 0
- 2019-04-22
- ciTEZen
-
죄송 해요.나는 지금 제목에서 그것을 본다.I'm sorry. I see that in the title now.
- 0
- 2019-04-23
- Elliot Cameron
-
1 대답
- 투표
-
- 2019-04-23
Kiln 0.5.1 버전에는 데비안에서 작동하지 않는 데비안 패키지 (.deb)가 있습니다.Ubuntu에서만 작동합니다.Ubuntu는 기본적으로 사용자 네임 스페이스를 활성화하지만 Debian은 그렇지 않기 때문입니다.다음의 "영구"지침에 따라 Debian에서 수동으로 활성화 할 수 있습니다. https://unix.stackexchange.com/a/303214/197651
echo 'kernel.unprivileged_userns_clone=1' > /etc/sysctl.d/userns.conf
다음 릴리스에서 설치 프로그램이이 단계를 수행하도록하여이 문제를 해결해야합니다.
Version 0.5.1 of Kiln has a Debian package (.deb) that, ironically, doesn't work on Debian. It only works on Ubuntu. This is because Ubuntu enables user namespaces by default but Debian does not. You can manually enable them on Debian by following the "permanent" instructions here: https://unix.stackexchange.com/a/303214/197651
echo 'kernel.unprivileged_userns_clone=1' > /etc/sysctl.d/userns.conf
This should be fixed in an upcoming release by having the installer do this step for you.
-
큰!이것은 효과가 있었다.당신 정말 대단하네요!정말 고맙습니다.Great! This worked. You are amazing! Thank you so much.
- 0
- 2019-04-23
- ciTEZen
-
노드가 로컬에서 다운로드 할 수있는 것보다 더 커졌습니다. 즉,"보너스"질문입니다. 외부 저장 매체 (400GB SSD 드라이브)의 디렉토리를 사용하도록 Kiln을 구성하는 방법은 무엇입니까??Just noticed, that the node has grown bigger than what I can download locally :-( So, "bonus" question, I guess: how do I configure Kiln to use a directory on my external storage medium, which is a 400 GB SSD drive?
- 0
- 2019-04-24
- ciTEZen
-
`--kiln-data-dir=/path/to/another/place`를 Kiln에 전달해야합니다.deb 패키지의 경우 https://gitlab.com/obsidian.systems/tezos-bake-monitor/blob/develop/docs/distros/ubuntu.md#configuring-the-ubuntu- 지침에 따라 사용자 지정 인수를 구성 할 수 있습니다.꾸러미 예를 들어당신은`echo 'KILNARGS="-kiln-data-dir=/path/to/location"'>/etc/kiln/args`You need to pass `--kiln-data-dir=/path/to/another/place` to Kiln. For the deb package you can configure custom arguments by following instructions here: https://gitlab.com/obsidian.systems/tezos-bake-monitor/blob/develop/docs/distros/ubuntu.md#configuring-the-ubuntu-package So, e.g. you'd `echo 'KILNARGS="--kiln-data-dir=/path/to/location"' > /etc/kiln/args`
- 0
- 2019-04-24
- Elliot Cameron
-
물론 다시 사용하려면 이전 데이터 디렉토리를이 새 위치로 이동해야합니다.실제로 디스크 공간이 부족한 경우 노드가 유효하지 않은 블록 (수동 개입이 필요함)에 갇혀서 처음부터 시작하는 것이 더 쉬울 수 있습니다.You will also, of course, need to move the old data directory to this new location if you want to reuse it. If you actually ran out of disk space then your node might be stuck on invalid blocks (which requires some manual intervention) so it might be easier to just start from scratch.
- 0
- 2019-04-24
- Elliot Cameron
-
감사!이전 노드를 중지 및 제거하고,인수를 변경하고,kiln을 다시 시작하고,새 노드를 만든 다음이 문제가 발생한 후 다시 중지했습니다. https://i.imgur.com/w4vcSIy.png : Kiln에 데이터가 표시되지 않습니다.데이터 폴더.Thanks! I stopped and removed the old node, changed the args, restarted kiln, created a new node and then stopped it again after this this happened https://i.imgur.com/w4vcSIy.png: no data is showing up in the Kiln Data folder.
- 0
- 2019-04-24
- ciTEZen
-
@ciTEZen 가장 쉬운 방법 : 폴더 이름 (및 부모)에서 공백을 제거합니다.그렇지 않으면`KILNARGS="-kiln-data-dir='/path/to/folder with space'"`와 같이 경로 자체를 따옴표로 묶어야합니다.구성을 변경 한 후`sudo systemctl restart kiln`도 필요합니다.나는 전에 그 부분을 언급하는 것을 무시했습니다.@ciTEZen Easiest way: Remove spaces from your folder name (and parents). Otherwise, you need to add quotes around the path itself like `KILNARGS="--kiln-data-dir='/path/to/folder with space'"`. You will need to also `sudo systemctl restart kiln` after changing the config. I neglected to mention that part before.
- 0
- 2019-04-25
- Elliot Cameron
-
안타깝게도 kiln은 파일 시스템의 일부 영역에만 액세스 할 수 있기 때문에이 옵션은 데비안 설치 (kiln 0.5.1 기준)에서 작동하지 않습니다. 해결 방법으로`/var/lib/kiln/data-dir` 경로에 외부 디스크를 마운트 할 수 있습니다.Unfortunately this option will not work with debian installation (as of kiln 0.5.1), because the kiln has access to only some areas of the filesystem. As a workaround you can mount your external disk on the path `/var/lib/kiln/data-dir`
- 0
- 2019-05-01
- dfordivam
Kiln이 설치되고 활성화 된 것 같습니다.최소한 그것이 바로 systemctl list-unit-files --type=service|grep kiln은 "kiln.serviceenabled"를 표시합니다.여러 번 재부팅했지만 Firefox에서 http ://localhost : 8000 을 입력하면 항상 "연결할 수 없습니다"라는 메시지가 표시됩니다.그 원인은 무엇일까요? Ubuntu는 Debian을 기반으로하므로 .deb 파일이 작동합니다.먼저 dpkg를 통해 설치를 시도했지만 실패했습니다.gdebi를 사용하면 문제가 해결 된 것 같았 기 때문에 종속성 문제라고 생각합니다.내 브라우저에서 실행하려면 Ubuntu 특정 항목을 수동으로 설치해야 할 수 있습니까?