dldisud217 9f7de8d1b69848e3b6858e01b27b1400
이해도 | 입문자(아무것도 몰라요) |
---|---|
게임버전 (JE) | 1.18.2 |
게임버전 (BE) | 관련없음 |
기존에는 포지 인스톨러에서 서버다운을 하면 jar파일 두개와 라이브러리 폴더가 다운받아졌는데
지금은 라이브러리 폴더 하나와 실행 파일 run.bat ,run.sh,user_jvm_args.txt 만 다운됩니다.
여기서 run.bat를 한번 실행시켜서 eula를 수정하면 그전처럼 잘되긴합니다. 여기까지는 바뀐것이 없습니다.
문제는 서버에 할당하는 램을 수정하고 싶은데 run.bat의 내용이
REM Forge requires a configured set of both JVM and program arguments.
REM Add custom JVM arguments to the user_jvm_args.txt
REM Add custom program arguments {such as nogui} to this file in the next line before the %* or
REM pass them to this script directly
java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.18.2-40.1.60/win_args.txt %*
pause
이렇게 기존과 다르게 바뀌어져 있어 서버의 램 할당을 늘리고 싶어도 방법을 모르겠습니다
다른 파일의 내용들은
run.sh 내용
#!/usr/bin/env sh
# Forge requires a configured set of both JVM and program arguments.
# Add custom JVM arguments to the user_jvm_args.txt
# Add custom program arguments {such as nogui} to this file in the next line before the "$@" or
# pass them to this script directly
java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.18.2-40.1.60/unix_args.txt "$@"
user_jvm_args.txt내용
# Xmx and Xms set the maximum and minimum RAM usage, respectively.
# They can take any number, followed by an M or a G.
# M means Megabyte, G means Gigabyte.
# For example, to set the maximum to 3GB: -Xmx3G
# To set the minimum to 2.5GB: -Xms2500M
# A good default for a modded server is 4GB.
# Uncomment the next line to set it.
# -Xmx4G
뭐를 수정해야 서버램을 늘릴수 있나요?
lanthanide
2022.07.17파일 내용을 읽어보시면 알 수 있듯이 맨 마지막 파일의 # -Xmx4G 를 -Xmx4G 로 바꾸시면 램이 최대 4기가로 할당되실겁니다.
이야녕
2022.07.17#때문에 비활성화 된줄알았는데 아니었군요