yeonghoon.kim

  • 게시판
  • 갤러리
  • aws

오라클 클라우드 arm 환경에서 Palworld 서버 구축

김영훈 2024.01.29 13:51 조회 수 : 1506

리눅스 초보자를 위한 Palworld 게임 서버 구축 매뉴얼

 

주의사항

  • 이 과정은 오라클 클라우드 ARM 서버와 Ubuntu 22.04 환경에 맞춰져 있습니다.
  • 서버의 포트(기본값은 8211/udp)가 열려 있어야 합니다.
  • 오라클 리눅스에서는 알려진 문제가 있으니, 이를 참고하세요.

 

 

1. 시스템 업데이트

시스템을 최신 상태로 업데이트합니다.

$ sudo apt-get update -y    

 

 

2. Docker 설치

Docker와 관련된 필요 패키지들을 설치합니다.

$ sudo apt-get install apt-transport-https ca-certificates curl software-properties-common -y    

 

Docker의 공식 저장소를 시스템에 추가합니다.

$ sudo add-apt-repository "deb [arch=arm64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"    

 

패키지 리스트를 업데이트하고 Docker CE를 설치합니다.

$ sudo apt-get update 
$ sudo apt-get install docker-ce docker-ce-cli -y    

 

 

3. Docker Compose 설치

Docker Compose를 다운로드하고 실행 가능하게 설정합니다.

$ sudo curl -L "https://github.com/docker/compose/releases/download/v2.24.3/docker-compose-linux-aarch64" -o /usr/local/bin/docker-compose 
$ sudo chmod +x /usr/local/bin/docker-compose    

 

 

4. Palworld 게임 서버 구축

원하는 폴더에 docker-compose.yml 파일을 만듭니다.

$ mkdir palworld 
$ chown -R 1000:1000 palworld
$ cd palworld  
  

 

docker-compose.yml 파일을 생성하고, 아래 내용을 입력합니다.

version: '3.9'
services:
  palworld-server:
    image: 'nitrog0d/palworld-arm64:latest'
    container_name: 'palworld-server'
    ports:
      - '8211:8211/udp'
    environment:
      - ALWAYS_UPDATE_ON_START=true
      - MULTITHREAD_ENABLED=true
      - COMMUNITY_SERVER=false
    restart: 'unless-stopped'
    volumes:
      - './palworld:/palworld'
 


    

5. Palworld 게임 서버 실행

Docker Compose를 이용해 Palworld 게임 서버를 백그라운드에서 실행합니다.

$ docker-compose up -d --build   

 

첫 실행 후, 서버를 중지하고 palworld/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini에서 설정을 완료한 후 서버를 다시 시작합니다.

이 매뉴얼은 리눅스 초보자도 쉽게 따라 할 수 있도록 단계별로 설명하고 있으며, 필요한 명령어와 그 목적을 명확히 안내합니다. Palworld 게임 서버 설정과 관련된 추가적인 정보나 도움이 필요하다면 언제든지 질문해주세요!


  • 추천 0

  • 비추천 0
이 게시물을
목록

댓글 11

  • 김영훈

    2024.01.29 13:54

    -palworld arm64 깃허브 저장소

    https://github.com/nitrog0d/palworld-arm64

     

     

    추천0 비추천0 댓글

  • 마구루

    2024.01.31 10:36

    안그래도 찾던 정보인지라 정보 공유해주셔서 너무 감사합니다.

    글에 적어주신 순서대로 진행을 했는데

    docker-compose up -d --build   

    를 하면

    Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

    이렇게 나오는데 뭐가 잘못된 걸까요?

    추천0 비추천0 댓글 수정 삭제

  • 김영훈

    2024.01.31 11:21

    sudo usermod -aG docker ubuntu가 빠진 것 같습니다.

     

    아니면 sudo docker-compose up -d --build  이렇게 진행해주시면 됩니다.

    추천0 비추천0 댓글

  • 마구루

    2024.01.31 15:25

    sudo usermod -aG docker $USER

    이렇게 하고 로그아웃후 다시 접속해야하네요.

    우선 지금 이것저것 해봐서 서버는 실행중인데 접속이 가능한지는 나중에 체크해봐야겠네요.

    오늘 테스트 해보고 oci에서 인스턴스 지우고 다시 처음부터 설정해서 정리해서 저도 공유하겠습니다.

    답변주셔서 감사합니다!

    추천0 비추천0 댓글 수정 삭제

  • 지하

    2024.01.31 13:36

    docker 가 실행이 안된거 같습니다...

     

    sudo systemctl start docker

     

    부팅시 자동시작설정

    sudo systemctl enable docker

    추천0 비추천0 댓글 수정 삭제

  • 마구루

    2024.01.31 18:54

    게임켜고 접속하려니 안되네요... 혹시 몰라서 docker logs와 오라클 방화벽 설정 남겨봅니다.

    답변을 해주시면 좋겠네요. 꼭 돌리고 싶은데..ㅜㅜ

     

    Checking for SteamCMD updates...
    Redirecting stderr to '/home/steam/Steam/logs/stderr.txt'
    ILocalize::AddFile() failed to load file "public/steambootstrapper_english.txt".
    [  0%] Checking for available update...
    [----] Downloading update (0 of 59782 KB)...
    [  0%] Downloading update (0 of 59782 KB)...
    [  0%] Downloading update (0 of 59782 KB)...
    [  0%] Downloading update (3114 of 59782 KB)...
    [  5%] Downloading update (6830 of 59782 KB)...
    [ 11%] Downloading update (9305 of 59782 KB)...
    [ 15%] Downloading update (11672 of 59782 KB)...
    [ 19%] Downloading update (14223 of 59782 KB)...
    [ 23%] Downloading update (16561 of 59782 KB)...
    [ 27%] Downloading update (18855 of 59782 KB)...
    [ 31%] Downloading update (21161 of 59782 KB)...
    [ 35%] Downloading update (23492 of 59782 KB)...
    [ 39%] Downloading update (25822 of 59782 KB)...
    [ 43%] Downloading update (28124 of 59782 KB)...
    [ 47%] Downloading update (30746 of 59782 KB)...
    [ 51%] Downloading update (33143 of 59782 KB)...
    [ 55%] Downloading update (35537 of 59782 KB)...
    [ 59%] Downloading update (37929 of 59782 KB)...
    [ 63%] Downloading update (40330 of 59782 KB)...
    [ 67%] Downloading update (42401 of 59782 KB)...
    [ 70%] Downloading update (43669 of 59782 KB)...
    [ 73%] Downloading update (44826 of 59782 KB)...
    [ 74%] Downloading update (45965 of 59782 KB)...
    [ 76%] Downloading update (47128 of 59782 KB)...
    [ 78%] Downloading update (48416 of 59782 KB)...
    [ 80%] Downloading update (49520 of 59782 KB)...
    [ 82%] Downloading update (50670 of 59782 KB)...
    [ 84%] Downloading update (51835 of 59782 KB)...
    [ 86%] Downloading update (53100 of 59782 KB)...
    [ 88%] Downloading update (54270 of 59782 KB)...
    [ 90%] Downloading update (55424 of 59782 KB)...
    [ 92%] Downloading update (56576 of 59782 KB)...
    [ 94%] Downloading update (57850 of 59782 KB)...
    [ 96%] Downloading update (58964 of 59782 KB)...
    [ 98%] Downloading update (59782 of 59782 KB)...
    [100%] Download Complete.
    [----] Applying update...
    [----] Extracting package...
    [----] Extracting package...
    [----] Extracting package...
    [----] Extracting package...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Cleaning up...
    [----] Update complete, launching...
    CWorkThreadPool::~CWorkThreadPool: work processing queue not empty: 6 items discarded.
    tid(27) burning pthread_key_t == 0 so we never use it
    Redirecting stderr to '/home/steam/Steam/logs/stderr.txt'
    Logging directory: '/home/steam/Steam/logs'
    /tmp/dumps insufficient permissions - delete and recreate
    [  0%] Checking for available updates...
    [----] Verifying installation...
    [  0%] Downloading update...
    [  0%] Checking for available updates...
    [----] Download complete.
    [----] Extracting package...
    [----] Extracting package...
    [----] Extracting package...
    [----] Extracting package...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Installing update...
    [----] Cleaning up...
    [----] Update complete, launching Steamcmd...
    tid(39) burning pthread_key_t == 0 so we never use it
    Redirecting stderr to '/home/steam/Steam/logs/stderr.txt'
    Logging directory: '/home/steam/Steam/logs'
    [  0%] Checking for available updates...
    [----] Verifying installation...
    Steam Console Client (c) Valve Corporation - version 1705108307
    -- type 'quit' to exit --
    Loading Steam API...dlmopen steamservice.so failed: steamservice.so: cannot open shared object file: No such file or directory
    OK
    Server not found! Installing... (Do not panic if it looks stuck)
    tid(62) burning pthread_key_t == 0 so we never use it
    Redirecting stderr to '/home/steam/Steam/logs/stderr.txt'
    Logging directory: '/home/steam/Steam/logs'
    [  0%] Checking for available updates...
    [----] Verifying installation...
    Steam Console Client (c) Valve Corporation - version 1705108307
    -- type 'quit' to exit --
    Loading Steam API...dlmopen steamservice.so failed: steamservice.so: cannot open shared object file: No such file or directory
    OK

    Connecting anonymously to Steam Public...OK
    Waiting for client config...OK
    Waiting for user info...OK
     Update state (0x3) reconfiguring, progress: 0.00 (0 / 0)
     Update state (0x3) reconfiguring, progress: 0.00 (0 / 0)
     Update state (0x61) downloading, progress: 8.99 (202082782 / 2248045559)
     Update state (0x61) downloading, progress: 12.72 (285900471 / 2248045559)
     Update state (0x61) downloading, progress: 17.90 (402403270 / 2248045559)
     Update state (0x61) downloading, progress: 21.70 (487848083 / 2248045559)
     Update state (0x61) downloading, progress: 23.45 (527062500 / 2248045559)
     Update state (0x61) downloading, progress: 25.31 (569055104 / 2248045559)
     Update state (0x61) downloading, progress: 27.22 (611931291 / 2248045559)
     Update state (0x61) downloading, progress: 29.76 (668950715 / 2248045559)
     Update state (0x61) downloading, progress: 32.34 (727017546 / 2248045559)
     Update state (0x61) downloading, progress: 33.79 (759523402 / 2248045559)
     Update state (0x61) downloading, progress: 35.37 (795173935 / 2248045559)
     Update state (0x61) downloading, progress: 36.75 (826213171 / 2248045559)
     Update state (0x61) downloading, progress: 38.21 (858885756 / 2248045559)
     Update state (0x61) downloading, progress: 39.79 (894608574 / 2248045559)
     Update state (0x61) downloading, progress: 41.19 (926075990 / 2248045559)
     Update state (0x61) downloading, progress: 42.73 (960680200 / 2248045559)
     Update state (0x61) downloading, progress: 44.17 (992878321 / 2248045559)
     Update state (0x61) downloading, progress: 45.69 (1027225330 / 2248045559)
     Update state (0x61) downloading, progress: 47.23 (1061704614 / 2248045559)
     Update state (0x61) downloading, progress: 48.70 (1094735771 / 2248045559)
     Update state (0x61) downloading, progress: 49.82 (1119923212 / 2248045559)
     Update state (0x61) downloading, progress: 51.75 (1163444372 / 2248045559)
     Update state (0x61) downloading, progress: 53.26 (1197254642 / 2248045559)
     Update state (0x61) downloading, progress: 54.75 (1230827058 / 2248045559)
     Update state (0x61) downloading, progress: 56.29 (1265446039 / 2248045559)
     Update state (0x61) downloading, progress: 58.17 (1307665902 / 2248045559)
     Update state (0x61) downloading, progress: 59.66 (1341246002 / 2248045559)
     Update state (0x61) downloading, progress: 61.15 (1374785163 / 2248045559)
     Update state (0x61) downloading, progress: 62.60 (1407290891 / 2248045559)
     Update state (0x61) downloading, progress: 64.13 (1441752217 / 2248045559)
     Update state (0x61) downloading, progress: 65.47 (1471795935 / 2248045559)
     Update state (0x61) downloading, progress: 66.92 (1504365635 / 2248045559)
     Update state (0x61) downloading, progress: 68.41 (1537837386 / 2248045559)
     Update state (0x61) downloading, progress: 69.90 (1571391750 / 2248045559)
     Update state (0x61) downloading, progress: 71.39 (1604946816 / 2248045559)
     Update state (0x61) downloading, progress: 73.09 (1643027098 / 2248045559)
     Update state (0x61) downloading, progress: 74.53 (1675536634 / 2248045559)
     Update state (0x61) downloading, progress: 76.03 (1709197216 / 2248045559)
     Update state (0x61) downloading, progress: 77.48 (1741703099 / 2248045559)
     Update state (0x61) downloading, progress: 79.04 (1776800498 / 2248045559)
     Update state (0x61) downloading, progress: 80.55 (1810847228 / 2248045559)
     Update state (0x61) downloading, progress: 82.00 (1843312428 / 2248045559)
     Update state (0x61) downloading, progress: 83.91 (1886403465 / 2248045559)
     Update state (0x61) downloading, progress: 85.36 (1918838281 / 2248045559)
     Update state (0x61) downloading, progress: 86.94 (1954484352 / 2248045559)
     Update state (0x61) downloading, progress: 88.35 (1986055253 / 2248045559)
     Update state (0x61) downloading, progress: 89.93 (2021556705 / 2248045559)
     Update state (0x61) downloading, progress: 91.73 (2062062313 / 2248045559)
     Update state (0x61) downloading, progress: 93.35 (2098579191 / 2248045559)
     Update state (0x61) downloading, progress: 94.98 (2135197048 / 2248045559)
     Update state (0x61) downloading, progress: 96.81 (2176429687 / 2248045559)
     Update state (0x61) downloading, progress: 98.39 (2211889834 / 2248045559)
     Update state (0x61) downloading, progress: 100.00 (2248045559 / 2248045559)
     Update state (0x81) verifying update, progress: 13.89 (312280127 / 2248045559)
     Update state (0x81) verifying update, progress: 28.09 (631409880 / 2248045559)
     Update state (0x81) verifying update, progress: 42.21 (948795108 / 2248045559)
     Update state (0x81) verifying update, progress: 56.62 (1272839314 / 2248045559)
     Update state (0x81) verifying update, progress: 71.12 (1598743314 / 2248045559)
     Update state (0x81) verifying update, progress: 85.44 (1920644102 / 2248045559)
     Update state (0x81) verifying update, progress: 99.89 (2245682968 / 2248045559)
    Success! App '2394010' fully installed.
    Checking for updates... (Do not panic if it looks stuck)
    tid(118) burning pthread_key_t == 0 so we never use it
    Redirecting stderr to '/home/steam/Steam/logs/stderr.txt'
    Logging directory: '/home/steam/Steam/logs'
    [  0%] Checking for available updates...
    [----] Verifying installation...
    Steam Console Client (c) Valve Corporation - version 1705108307
    -- type 'quit' to exit --
    Loading Steam API...dlmopen steamservice.so failed: steamservice.so: cannot open shared object file: No such file or directory
    OK

    Connecting anonymously to Steam Public...OK
    Waiting for client config...OK
    Waiting for user info...Checking for SteamCMD updates...
    tid(15) burning pthread_key_t == 0 so we never use it
    Redirecting stderr to '/home/steam/Steam/logs/stderr.txt'
    Logging directory: '/home/steam/Steam/logs'
    Looks like steam didn't shutdown cleanly, scheduling immediate update check
    [  0%] Checking for available updates...
    [----] Verifying installation...
    Steam Console Client (c) Valve Corporation - version 1705108307
    -- type 'quit' to exit --
    Loading Steam API...dlmopen steamservice.so failed: steamservice.so: cannot open shared object file: No such file or directory
    OK
    Checking for updates... (Do not panic if it looks stuck)
    tid(38) burning pthread_key_t == 0 so we never use it
    Redirecting stderr to '/home/steam/Steam/logs/stderr.txt'
    Logging directory: '/home/steam/Steam/logs'
    [  0%] Checking for available updates...
    [----] Verifying installation...
    Steam Console Client (c) Valve Corporation - version 1705108307
    -- type 'quit' to exit --
    Loading Steam API...dlmopen steamservice.so failed: steamservice.so: cannot open shared object file: No such file or directory
    OK

    Connecting anonymously to Steam Public...OK
    Waiting for client config...OK
    Waiting for user info...OK
     Update state (0x3) reconfiguring, progress: 0.00 (0 / 0)
     Update state (0x5) verifying install, progress: 10.77 (242083221 / 2248045559)
     Update state (0x5) verifying install, progress: 25.09 (564083859 / 2248045559)
     Update state (0x5) verifying install, progress: 39.94 (897814123 / 2248045559)
     Update state (0x5) verifying install, progress: 54.80 (1232022193 / 2248045559)
     Update state (0x5) verifying install, progress: 69.72 (1567277350 / 2248045559)
     Update state (0x5) verifying install, progress: 84.41 (1897676147 / 2248045559)
     Update state (0x5) verifying install, progress: 99.24 (2230881423 / 2248045559)
    Success! App '2394010' fully installed.
    Starting server... You can safely ignore Steam errors! (Also the server has pretty much 0 logging, so just try connecting to it)
    dlopen failed trying to load:
    steamclient.so
    with error:
    steamclient.so: cannot open shared object file: No such file or directory
    [S_API] SteamAPI_Init(): Loaded '/home/steam/.steam/sdk64/steamclient.so' OK.  (First tried local 'steamclient.so')
    Shutdown handler: initalize.
    - Existing per-process limit (soft=1048576, hard=1048576) is enough for us (need only 1048576)
    Increasing per-process limit of core file size to infinity.
    - Existing per-process limit (soft=18446744073709551615, hard=18446744073709551615) is enough for us (need only 18446744073709551615)
    CAppInfoCacheReadFromDiskThread took 26 milliseconds to initialize
    Setting breakpad minidump AppID = 2394010
    [S_API FAIL] Tried to access Steam interface SteamUser021 before SteamAPI_Init succeeded.
    [S_API FAIL] Tried to access Steam interface SteamFriends017 before SteamAPI_Init succeeded.
    [S_API FAIL] Tried to access Steam interface STEAMAPPS_INTERFACE_VERSION008 before SteamAPI_Init succeeded.
    [S_API FAIL] Tried to access Steam interface SteamNetworkingUtils004 before SteamAPI_Init succeeded.
     

     

     

    방화벽.PNG.jpg

    • 방화벽.PNG.jpg [File Size:76.2KB/Download:60]

    추천0 비추천0 댓글 수정 삭제

  • 김영훈

    2024.02.01 07:00

    port.png.jpg

     

    방화벽은 위와 같이 설정했습니다.

     

    로그상으로는 문제없이 구동된 것 같습니다.

     

    sudo ps -ef | grep Pal을 입력했을 때 정상적으로 구동되고 있다면 게임 구동까지는 문제가 없을 것 같아요.

    • port.png.jpg [File Size:44.1KB/Download:71]

    추천0 비추천0 댓글

  • 마구루

    2024.02.01 07:57

    ubuntu@instance-20240131-0821:~$ sudo ps -ef | grep Pal
    opc         1522    1231  0 10:01 ?        00:00:00 /usr/bin/FEXInterpreter /home/steam/.fex-emu/RootFS/Ubuntu_22_04/bin/sh -c ./PalServer.sh  -useperfthreads -NoAsyncLoadingThread -UseMultithreadForDS
    opc         1523    1522  0 10:01 ?        00:00:00 /usr/bin/FEXInterpreter ./PalServer.sh -useperfthreads -NoAsyncLoadingThread -UseMultithreadForDS
    opc         1530    1523 72 10:01 ?        09:23:04 /usr/bin/FEXInterpreter /palworld/Pal/Binaries/Linux/PalServer-Linux-Test Pal -useperfthreads -NoAsyncLoadingThread -UseMultithreadForDS
    ubuntu      3369    3344  0 22:55 pts/0    00:00:00 grep --color=auto Pal
    ubuntu@instance-20240131-0821:~$ docker ps
    CONTAINER ID   IMAGE                            COMMAND                  CREATED        STATUS        PORTS                                       NAMES
    0b660581b930   nitrog0d/palworld-arm64:latest   "/bin/sh -c /home/st…"   17 hours ago   Up 13 hours   0.0.0.0:8211->8211/udp, :::8211->8211/udp   palworld-server
     

    이렇게 나오는데요. 그럼 지금 구동은 문제 없다는거죠?

    그렇다면 나중에 퇴근하고 방화벽 설정을 보여주신데로 바꿔서 다시 해봐야겠네요.

    해보고 다시 댓글 달겠습니다. 답변주셔서 감사합니다!

    추천0 비추천0 댓글 수정 삭제

  • 마구루

    2024.02.01 19:35

    방화벽이 문제였네요. 보여주신데로 고치니 잘 됩니다.

    지금 만들었던 서버 지우고 다시 만들어보겠습니다.

    너무 감사합니다!!!

    추천0 비추천0 댓글 수정 삭제

  • 마구루

    2024.02.01 23:21

    이렇게 해서 성공했습니다. 참고하시라고 적는데... 필요 없다면 지우셔도 됩니다.

     

    다른데서 하던 리눅스 세이브 파일(보통은 구글 클라우드에서 운영하던)도 옮겨서 그대로 할 수 있습니다.

    OCI

    1. sudo apt-get update -y
      - 시스템 업데이트
    2. sudo apt-get install apt-transport-https ca-certificates curl software-properties-common -y
      - docker 설치
    3. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
      - docker key 추가
    4. sudo add-apt-repository "deb [arch=arm64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
      - docker 공식 저장소를 시스템에 추가
    5. sudo apt-get update
      - 시스템 업데이트 
    6. sudo apt-get install docker-ce docker-ce-cli -y
      - docker CE 설치
    7. sudo usermod -aG docker $USER
      - docker 권한주기
    8. 로그아웃 후 재접속
      - putty 면 프로그램 종료했다가 다시 접속
    9. systemctl status docker
      - docker 정상 동작 확인 active (running) 라고 나오면 정상.
      - :q 로 빠져 나옴
    9. sudo curl -L "https://github.com/docker/compose/releases/download/v2.24.3/docker-compose-linux-aarch64" -o /usr/local/bin/docker-compose
      - Docker Compose 설치
    10. sudo chmod +x /usr/local/bin/docker-compose
      - docker-compose 권한 주기
    11. mkdir palworld
    12. chmod 777 palworld
    13. chown -R 1000:1000 palworld/
    14. vi docker-compose.yml
      - i 누르고 ----- 안의 내용 복사 후 붙여넣기
    -------------------
    version: '3.9'
    services:
      palworld-server:
        image: 'nitrog0d/palworld-arm64:latest'
        container_name: 'palworld-server'
        ports:
          - '8211:8211/udp'
        environment:
          - ALWAYS_UPDATE_ON_START=true
          - MULTITHREAD_ENABLED=true
          - COMMUNITY_SERVER=false
        restart: 'unless-stopped'
        volumes:
          - './palworld:/palworld'
    -------------------
      - ESC 키 입력
      - :wq!
    15. docker-compose up -d --build
    16. docker ps 
      - CONTAINER_ID 복사해서 어디에 남겨두세요.
      - 이 아래 부분 [CONTAINER_ID] 에 복사한거 넣어주시면 됩니다.
    17. docker logs [CONTAINER_ID]
      - 로그 확인 로그 마지막에  [S_API FAIL] Tried to access Steam interface SteamNetworkingUtils004 before SteamAPI_Init succeeded.
        되어 있어야 함.
    18. docker stop [CONTAINER_ID]
      - palworld 서버 중지
    19. cd ./palworld/Pal/Saved/Config
      - 폴더 이동
    20. sudo chmod 777 LinuxServer
      - LinuxServer 폴더 권한 주기
    21. cd LinuxServer
      - 폴더 이동
    22. - i 누르고 
      - DedicatedServerName=449E4861224541BA8ABB166B8C34AD87
      으로 변경. 저건 세이브 폴더의 폴더명으로 변경하면 됨. 그래야 세이브 파일을 기존꺼로 쓸수 있음.
      - ESC 키
      - :wq!
    23. vi PalWorldSettings.ini
      - ----------------- 안의 내용 복사
    -------------------------------------------
    [/Script/Pal.PalGameWorldSettings]
    OptionSettings=(Difficulty=None,DayTimeSpeedRate=1.000000,NightTimeSpeedRate=1.000000,ExpRate=1.000000,PalCaptureRate=1.000000,PalSpawnNumRate=1.000000,PalDamageRateAttack=1.000000,PalDamageRateDefense=1.000000,PlayerDamageRateAttack=1.000000,PlayerDamageRateDefense=1.000000,PlayerStomachDecreaceRate=1.000000,PlayerStaminaDecreaceRate=1.000000,PlayerAutoHPRegeneRate=1.000000,PlayerAutoHpRegeneRateInSleep=1.000000,PalStomachDecreaceRate=1.000000,PalStaminaDecreaceRate=1.000000,PalAutoHPRegeneRate=1.000000,PalAutoHpRegeneRateInSleep=1.000000,BuildObjectDamageRate=1.000000,BuildObjectDeteriorationDamageRate=1.000000,CollectionDropRate=1.000000,CollectionObjectHpRate=1.000000,CollectionObjectRespawnSpeedRate=1.000000,EnemyDropItemRate=1.000000,DeathPenalty=Item,bEnablePlayerToPlayerDamage=False,bEnableFriendlyFire=False,bEnableInvaderEnemy=True,bActiveUNKO=False,bEnableAimAssistPad=True,bEnableAimAssistKeyboard=False,DropItemMaxNum=3000,DropItemMaxNum_UNKO=100,BaseCampMaxNum=128,BaseCampWorkerMaxNum=15,DropItemAliveMaxHours=1.000000,bAutoResetGuildNoOnlinePlayers=False,AutoResetGuildTimeNoOnlinePlayers=72.000000,GuildPlayerMaxNum=20,PalEggDefaultHatchingTime=1.000000,WorkSpeedRate=1.000000,bIsMultiplay=False,bIsPvP=False,bCanPickupOtherGuildDeathPenaltyDrop=False,bEnableNonLoginPenalty=True,bEnableFastTravel=True,bIsStartLocationSelectByMap=True,bExistPlayerAfterLogout=False,bEnableDefenseOtherGuildPlayer=False,CoopPlayerMaxNum=4,ServerPlayerMaxNum=32,ServerName="Default Palworld Server",ServerDescription="",AdminPassword="",ServerPassword="",PublicPort=8211,PublicIP="",RCONEnabled=False,RCONPort=25575,Region="",bUseAuth=True,BanListURL="https://api.palworldgame.com/api/banlist.txt")
    -------------------------------------------
      - i 누르고 붙여넣기 
      - ESC 키
      - :wq!
    24. cd
      - 루트 폴더로 이동
    25. cd ./palworld/Pal/Saved/SaveGames
      - 폴더 이동
    26. cd 0
      - 폴더 이동
    27. 세이브 폴더 복사 처리(FileZilla 이용)
      - 세이브 폴더를 0 폴더 안에 복사 처리
    28. sudo chown -R 1000:1000 [세이브폴더]
      - 세이브 폴더에 사용 권한 주기
      - 이거 안하면 docker 무한 실행 되면서 제대로 게임 안됨.
    29. docker start [CONTAINER_ID]
      - docker 실행
    30. docker logs  [CONTAINER_ID]
      - 마지막에 [S_API FAIL] Tried to access Steam interface SteamNetworkingUtils004 before SteamAPI_Init succeeded.
        또는
        Engine crash handling finished; re-raising signal 0 for the default handler. Good bye.
        이면 정상임.
    31. 게임 들어가서 접속

    추천1 비추천0 댓글 수정 삭제

  • 김영훈

    2024.02.02 09:31

    정리해주셔서 감사합니다.

    추천0 비추천0 댓글

사진 및 파일 첨부

여기에 파일을 끌어 놓거나 왼쪽의 버튼을 클릭하세요.

파일 용량 제한 : 0MB (허용 확장자 : *.*)

업로드 중... (0%)

0개 첨부 됨 ( / )
 
번호 제목 글쓴이 날짜 조회 수
공지 2025 일본 여행 계획 김영훈 2024.10.10 983
공지 현금, 저축, 투자, 지출, 예산, 보험 내역(2024-05-30) 김영훈 2024.03.10 636
265 BPFDoor 악성코드 통합 점검 스크립트 (KISA 가이드 기반) 김영훈 2025.05.16 114
264 error: invalid conversion from ‘char’ to ‘char*’ [-fpermissive] 김영훈 2025.05.08 63
263 prometheus, grafana, node-exporter 임시 김영훈 2025.01.03 299
262 MegaCli64 Hotspare 구성 김영훈 2024.11.11 518
261 12월 기타큐슈 2박 3일 관련 김영훈 2024.11.08 444
260 rockylinux8 php7.2 -> php7.4 업그레이드 : dnf module 기능 이용 김영훈 2024.10.14 592
259 rockylinux8 apache-2.4.16, php-5.3.29 설치 file 김영훈 2024.10.11 616
258 정보보안기사 오답노트 김영훈 2024.10.01 439
257 달력 이미지(chatgpt) file 김영훈 2024.09.05 643
256 백업된 디스크 복구 김영훈 2024.06.13 549
255 openai api를 이용한 챗봇 구현 샘플 김영훈 2024.06.11 562
254 Dev-C++ 5.11 설치 매뉴얼 file 김영훈 2024.03.09 861
» 오라클 클라우드 arm 환경에서 Palworld 서버 구축 [11] 김영훈 2024.01.29 1506
252 리눅스 공인 아이피 확인 - curl ipinfo.io 김영훈 2024.01.29 562
251 Oracle 9i cx_Oracle 클라이언트 연결 방법 [1] 김영훈 2024.01.12 660
250 error: rpmdb: BDB2034 unable to allocate memory for mutex; resize mutex region [1] 김영훈 2024.01.08 710
249 마크다운 TIL 템플릿 김영훈 2024.01.03 560
248 Stable Diffusion 설치 - rockylinux9 [테스트 - 나 / 정리 -chatgpt] [1] 김영훈 2024.01.02 738
247 AttributeError: module 'tarfile' has no attribute 'data_filter' 에러 김영훈 2024.01.02 718
246 2023년 월간 소비 비중 file 김영훈 2024.01.01 359
쓰기 태그
 첫 페이지 1 2 3 4 5 6 7 8 9 10 끝 페이지