Request dedicated server on raspberry pi 3

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
G

Guyo

Guest
Hello, I'd tried to make a server on a raspberry pi 3 100% dedicated to this task .
the contents of zip download on lunching at FTB been
to transfer on my raspberry pi 3 in /home/minecraft/ chmod 750 and the rights given to the entire file . For the group , I must not have everything included , root: pi or pi: pi .

I would play only with a single person, the raspberry is not very powerful, but 2 people would agree that it seems ? so I allocate -Xms512m -Xmx1000M ram ( raspberry is 1GB )

the script ServerStart.sh contained :

Code:
#!/bin/sh

cd "$(dirname "$0")"
. ./settings.sh

# makes things easier if script needs debugging
if [ x$FTB_VERBOSE = xyes ]; then
    set -x
fi

# cleaner code
eula_false() {
    grep -q 'eula=false' eula.txt
    return $?
}

start_server() {
    "$JAVACMD" -server -Xms512M -Xmx1000M -XX:PermSize=256M -XX:+UseParNewGC -XX:+CMSIncrementalPacing -XX:+CMSClassUnloadingEnabled -XX:ParallelGCThreads=2 -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10 -jar FTBServer-1.7.10-1614.jar nogui
}

# run install script if MC server or launchwrapper s missing
if [ ! -f $JARFILE -o ! -f libraries/$LAUNCHWRAPPER ]; then
    echo "Missing required jars. Running install script!"
    sh ./FTBInstall.sh
fi

# check if there is eula.txt and if it has correct content
if [ -f eula.txt ] && eula_false ; then
    echo "Make sure to read eula.txt before playing!"
    echo "To exit press <enter>"
    read ignored
    exit
fi

# inform user if eula.txt not found
if [ ! -f eula.txt ]; then
    echo "Missing eula.txt. Startup will fail and eula.txt will be created"
    echo "Make sure to read eula.txt before playing!"
    echo "To continue press <enter>"
    read ignored
fi

echo "Starting server"
rm -f autostart.stamp
start_server

while [ -e autostart.stamp ] ; do
    rm -f autostart.stamp
    echo "If you want to completely stop the server process now, press Ctrl+C before the time is up!"
    for i in 5 4 3 2 1; do
        echo "Restarting server in $i"
        sleep 1
    done
    echo "Rebooting now!"
    start_server
    echo "Server process finished"
done

Once this script is launched and kill my server does not. in short, is that people with raspebbry 3 could tell me how to proceed ? Thank you to all :)
 
Last edited:

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
The following advice is while assuming it is even possible (I wouldn't be surprised it isn't) and I understand correctly that your sh file doesn't start the server. It is also not written by someone who owns a pi but does use Linux as his main OS (If I am not mistaken the pi uses raspbian which is build on top of Debian which is the distro that I use)

First problem: The pi has 1 GB of RAM, the OS also needs some RAM. This leaves the actual server with very little to use, especially when you take into consideration that I would recommend to allocate 4GB of RAM to the server which means the pi already has not enough to begin with.

Another problem: You need java, I am not sure if there is a java version for the pi.
To check if you have java installed you should be able to open a terminal and execute "java -version" without the quotes.
It should return something like:
java -version
java version "1.7.0_101"

If it says the command can't be found or something among those lines, maybe this can help to install it.
 
G

Guyo

Guest
Hello,
I have the latest version of Java , namely 1.8.0_65 and began to date my package .

I also thought like you by providing less RAM, 900M but still the same , kill the script after a while ...
If the trouble would come from the ram seveur 'd be ok .. but laggy out there , it does this not even start .

in any case I continue to study your response and thank you !


Edit :

Then, my worries could come my rights / home / minecrfat / that you advise me ?
 
Last edited:

jikuja

legacy FTB Launcher developer
Launcher Developer
Global Moderator
Dec 17, 2013
1,134
111
99
First problem: The pi has 1 GB of RAM, the OS also needs some RAM. This leaves the actual server with very little to use, especially when you take into consideration that I would recommend to allocate 4GB of RAM to the server which means the pi already has not enough to begin with.

Also note that JVM itself will use more memory thta you allocate with -Xmx argument.
 
G

Guyo

Guest
sorry but I do not understand , I do not speak English natively :) and I do not allocate more than 800M, but now I get errors , for simplicity I should log filed here ? but it is long ...
 
G

Guyo

Guest
suddenly, it's not so long as that, I post it here and if this is too long and disturbing called me I would delete :)
Code:
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 357957632 bytes for committing reserved memory.
# Possible reasons:
#   The system is out of physical RAM or swap space
#   In 32 bit mode, the process size limit was hit
# Possible solutions:
#   Reduce memory load on the system
#   Increase physical memory or swap space
#   Check if swap backing store is full
#   Use 64 bit Java on a 64 bit OS
#   Decrease Java heap size (-Xmx/-Xms)
#   Decrease number of Java threads
#   Decrease Java thread stack sizes (-Xss)
#   Set larger code cache with -XX:ReservedCodeCacheSize=
# This output file may be truncated or incomplete.
#
#  Out of Memory Error (os_linux.cpp:2627), pid=1634, tid=1980830816
#
# JRE version:  (8.0_65-b17) (build )
# Java VM: Java HotSpot(TM) Server VM (25.65-b01 mixed mode linux-arm )
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#

---------------  T H R E A D  ---------------

Current thread (0x75f07400):  JavaThread "Unknown thread" [_thread_in_vm, id=1635, stack(0x760c2000,0x76112000)]

Stack: [0x760c2000,0x76112000]

---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )

Other Threads:

=>0x75f07400 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=1635, stack(0x760c2000,0x76112000)]

VM state:not at safepoint (not fully initialized)

VM Mutex/Monitor currently owned by a thread: None

GC Heap History (0 events):
No events

Deoptimization events (0 events):
No events

Internal exceptions (0 events):
No events

Events (0 events):
No events


Dynamic libraries:
00008000-00009000 r-xp 00000000 b3:02 14935      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/bin/java
00010000-00011000 rw-p 00000000 b3:02 14935      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/bin/java
0188e000-018d6000 rw-p 00000000 00:00 0          [heap]
4186f000-418c5000 rw-p 00000000 00:00 0
418c5000-419ff000 ---p 00000000 00:00 0
419ff000-4c4a0000 rw-p 00000000 00:00 0
4c4a0000-524a0000 ---p 00000000 00:00 0
67a00000-73a00000 ---p 00000000 00:00 0
73a00000-73a21000 rw-p 00000000 00:00 0
73a21000-73b00000 ---p 00000000 00:00 0
73c00000-73c21000 rw-p 00000000 00:00 0
73c21000-73d00000 ---p 00000000 00:00 0
73d45000-73d46000 ---p 00000000 00:00 0
73d46000-73dc5000 rwxp 00000000 00:00 0          [stack:1637]
73dc5000-73dc6000 ---p 00000000 00:00 0
73dc6000-73e45000 rwxp 00000000 00:00 0          [stack:1636]
73e45000-73e4b000 rw-p 00000000 00:00 0
73e4b000-73ec5000 ---p 00000000 00:00 0
73ec5000-74045000 rwxp 00000000 00:00 0
74045000-75ec5000 ---p 00000000 00:00 0
75ec5000-75edc000 r-xp 00000000 b3:02 15038      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/libzip.so
75edc000-75ee3000 ---p 00017000 b3:02 15038      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/libzip.so
75ee3000-75ee4000 rw-p 00016000 b3:02 15038      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/libzip.so
75ee4000-75eef000 r-xp 00000000 b3:02 3216       /lib/arm-linux-gnueabihf/libnss_files-2.19.so
75eef000-75efe000 ---p 0000b000 b3:02 3216       /lib/arm-linux-gnueabihf/libnss_files-2.19.so
75efe000-75eff000 r--p 0000a000 b3:02 3216       /lib/arm-linux-gnueabihf/libnss_files-2.19.so
75eff000-75f00000 rw-p 0000b000 b3:02 3216       /lib/arm-linux-gnueabihf/libnss_files-2.19.so
75f00000-75f33000 rw-p 00000000 00:00 0
75f33000-76000000 ---p 00000000 00:00 0
76016000-7601f000 r-xp 00000000 b3:02 3224       /lib/arm-linux-gnueabihf/libnss_nis-2.19.so
7601f000-7602e000 ---p 00009000 b3:02 3224       /lib/arm-linux-gnueabihf/libnss_nis-2.19.so
7602e000-7602f000 r--p 00008000 b3:02 3224       /lib/arm-linux-gnueabihf/libnss_nis-2.19.so
7602f000-76030000 rw-p 00009000 b3:02 3224       /lib/arm-linux-gnueabihf/libnss_nis-2.19.so
76030000-76041000 r-xp 00000000 b3:02 3213       /lib/arm-linux-gnueabihf/libnsl-2.19.so
76041000-76050000 ---p 00011000 b3:02 3213       /lib/arm-linux-gnueabihf/libnsl-2.19.so
76050000-76051000 r--p 00010000 b3:02 3213       /lib/arm-linux-gnueabihf/libnsl-2.19.so
76051000-76052000 rw-p 00011000 b3:02 3213       /lib/arm-linux-gnueabihf/libnsl-2.19.so
76052000-76054000 rw-p 00000000 00:00 0
76054000-7605b000 r-xp 00000000 b3:02 3214       /lib/arm-linux-gnueabihf/libnss_compat-2.19.so
7605b000-7606a000 ---p 00007000 b3:02 3214       /lib/arm-linux-gnueabihf/libnss_compat-2.19.so
7606a000-7606b000 r--p 00006000 b3:02 3214       /lib/arm-linux-gnueabihf/libnss_compat-2.19.so
7606b000-7606c000 rw-p 00007000 b3:02 3214       /lib/arm-linux-gnueabihf/libnss_compat-2.19.so
7607f000-760a2000 r-xp 00000000 b3:02 15013      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/libjava.so
760a2000-760aa000 ---p 00023000 b3:02 15013      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/libjava.so
760aa000-760ab000 rw-p 00023000 b3:02 15013      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/libjava.so
760ab000-760b1000 r-xp 00000000 b3:02 3243       /lib/arm-linux-gnueabihf/librt-2.19.so
760b1000-760c0000 ---p 00006000 b3:02 3243       /lib/arm-linux-gnueabihf/librt-2.19.so
760c0000-760c1000 r--p 00005000 b3:02 3243       /lib/arm-linux-gnueabihf/librt-2.19.so
760c1000-760c2000 rw-p 00006000 b3:02 3243       /lib/arm-linux-gnueabihf/librt-2.19.so
760c2000-760c5000 ---p 00000000 00:00 0
760c5000-76112000 rwxp 00000000 00:00 0          [stack:1635]
76112000-7617b000 r-xp 00000000 b3:02 3205       /lib/arm-linux-gnueabihf/libm-2.19.so
7617b000-7618b000 ---p 00069000 b3:02 3205       /lib/arm-linux-gnueabihf/libm-2.19.so
7618b000-7618c000 r--p 00069000 b3:02 3205       /lib/arm-linux-gnueabihf/libm-2.19.so
7618c000-7618d000 rw-p 0006a000 b3:02 3205       /lib/arm-linux-gnueabihf/libm-2.19.so
7618d000-76921000 r-xp 00000000 b3:02 15043      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/server/libjvm.so
76921000-76928000 ---p 00794000 b3:02 15043      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/server/libjvm.so
76928000-7697d000 rw-p 00793000 b3:02 15043      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/server/libjvm.so
7697d000-76da3000 rw-p 00000000 00:00 0
76da3000-76dc0000 r-xp 00000000 b3:02 3190       /lib/arm-linux-gnueabihf/libgcc_s.so.1
76dc0000-76dcf000 ---p 0001d000 b3:02 3190       /lib/arm-linux-gnueabihf/libgcc_s.so.1
76dcf000-76dd0000 rw-p 0001c000 b3:02 3190       /lib/arm-linux-gnueabihf/libgcc_s.so.1
76dd0000-76efb000 r-xp 00000000 b3:02 3175       /lib/arm-linux-gnueabihf/libc-2.19.so
76efb000-76f0b000 ---p 0012b000 b3:02 3175       /lib/arm-linux-gnueabihf/libc-2.19.so
76f0b000-76f0d000 r--p 0012b000 b3:02 3175       /lib/arm-linux-gnueabihf/libc-2.19.so
76f0d000-76f0e000 rw-p 0012d000 b3:02 3175       /lib/arm-linux-gnueabihf/libc-2.19.so
76f0e000-76f11000 rw-p 00000000 00:00 0
76f11000-76f13000 r-xp 00000000 b3:02 3184       /lib/arm-linux-gnueabihf/libdl-2.19.so
76f13000-76f22000 ---p 00002000 b3:02 3184       /lib/arm-linux-gnueabihf/libdl-2.19.so
76f22000-76f23000 r--p 00001000 b3:02 3184       /lib/arm-linux-gnueabihf/libdl-2.19.so
76f23000-76f24000 rw-p 00002000 b3:02 3184       /lib/arm-linux-gnueabihf/libdl-2.19.so
76f24000-76f38000 r-xp 00000000 b3:02 15041      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/jli/libjli.so
76f38000-76f40000 ---p 00014000 b3:02 15041      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/jli/libjli.so
76f40000-76f41000 rw-p 00014000 b3:02 15041      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/jli/libjli.so
76f41000-76f55000 r-xp 00000000 b3:02 3240       /lib/arm-linux-gnueabihf/libpthread-2.19.so
76f55000-76f65000 ---p 00014000 b3:02 3240       /lib/arm-linux-gnueabihf/libpthread-2.19.so
76f65000-76f66000 r--p 00014000 b3:02 3240       /lib/arm-linux-gnueabihf/libpthread-2.19.so
76f66000-76f67000 rw-p 00015000 b3:02 3240       /lib/arm-linux-gnueabihf/libpthread-2.19.so
76f67000-76f69000 rw-p 00000000 00:00 0
76f6a000-76f73000 r-xp 00000000 b3:02 15037      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/libverify.so
76f73000-76f7b000 ---p 00009000 b3:02 15037      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/libverify.so
76f7b000-76f7c000 rw-p 00009000 b3:02 15037      /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/lib/arm/libverify.so
76f7c000-76f81000 r-xp 00000000 b3:02 11674      /usr/lib/arm-linux-gnueabihf/libarmmem.so
76f81000-76f90000 ---p 00005000 b3:02 11674      /usr/lib/arm-linux-gnueabihf/libarmmem.so
76f90000-76f91000 rw-p 00004000 b3:02 11674      /usr/lib/arm-linux-gnueabihf/libarmmem.so
76f91000-76fb1000 r-xp 00000000 b3:02 3139       /lib/arm-linux-gnueabihf/ld-2.19.so
76fb2000-76fba000 rw-s 00000000 b3:02 264041     /tmp/hsperfdata_pi/1634
76fba000-76fbb000 r--p 00000000 00:00 0
76fbb000-76fbe000 rw-p 00000000 00:00 0
76fbe000-76fc0000 rw-p 00000000 00:00 0
76fc0000-76fc1000 r--p 0001f000 b3:02 3139       /lib/arm-linux-gnueabihf/ld-2.19.so
76fc1000-76fc2000 rw-p 00020000 b3:02 3139       /lib/arm-linux-gnueabihf/ld-2.19.so
7ea74000-7ea95000 rwxp 00000000 00:00 0          [stack]
7ee0a000-7ee0b000 r-xp 00000000 00:00 0          [sigpage]
7ee0b000-7ee0c000 r--p 00000000 00:00 0          [vvar]
7ee0c000-7ee0d000 r-xp 00000000 00:00 0          [vdso]
ffff0000-ffff1000 r-xp 00000000 00:00 0          [vectors]

VM Arguments:
jvm_args: -Xms512M -Xmx800M -XX:PermSize=256M -XX:+UseParNewGC -XX:+CMSIncrementalPacing -XX:+CMSClassUnloadingEnabled -XX:ParallelGCThreads=2 -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10
java_command: FTBServer-1.7.10-1614.jar nogui
java_class_path (initial): FTBServer-1.7.10-1614.jar
Launcher Type: SUN_STANDARD

Environment Variables:
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games
SHELL=/bin/bash

Signal Handlers:
SIGSEGV: [libjvm.so+0x707a9c], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGBUS: [libjvm.so+0x707a9c], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGFPE: [libjvm.so+0x59b294], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGPIPE: [libjvm.so+0x59b294], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGXFSZ: [libjvm.so+0x59b294], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGILL: [libjvm.so+0x59b294], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none
SIGUSR2: [libjvm.so+0x59b3f8], sa_mask[0]=00000000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO
SIGHUP: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none
SIGINT: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none
SIGTERM: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none
SIGQUIT: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none


---------------  S Y S T E M  ---------------

OS:PRETTY_NAME="Raspbian GNU/Linux 8 (jessie)"
NAME="Raspbian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"

uname:Linux 4.4.11-v7+ #888 SMP Mon May 23 20:10:33 BST 2016 armv7l
libc:glibc 2.19 NPTL 2.19
rlimit: STACK 8192k, CORE 0k, NPROC 7336, NOFILE 65536, AS infinity
load average:0.96 0.43 0.16

/proc/meminfo:
MemTotal:         947748 kB
MemFree:           16152 kB
MemAvailable:     190860 kB
Buffers:            4624 kB
Cached:           198704 kB
SwapCached:            0 kB
Active:           734196 kB
Inactive:         162536 kB
Active(anon):     639152 kB
Inactive(anon):    66740 kB
Active(file):      95044 kB
Inactive(file):    95796 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:        102396 kB
SwapFree:         102396 kB
Dirty:                52 kB
Writeback:             0 kB
AnonPages:        693720 kB
Mapped:            87176 kB
Shmem:             12192 kB
Slab:              17724 kB
SReclaimable:       8692 kB
SUnreclaim:         9032 kB
KernelStack:        1840 kB
PageTables:         4444 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:      576268 kB
Committed_AS:    1811860 kB
VmallocTotal:    1114112 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
CmaTotal:           8192 kB
CmaFree:            3736 kB


CPU:total 4 (ARMv7), vfp, vfp3-32, simd

/proc/cpuinfo:
processor    : 0
model name    : ARMv7 Processor rev 4 (v7l)
BogoMIPS    : 76.80
Features    : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
CPU implementer    : 0x41
CPU architecture: 7
CPU variant    : 0x0
CPU part    : 0xd03
CPU revision    : 4

processor    : 1
model name    : ARMv7 Processor rev 4 (v7l)
BogoMIPS    : 76.80
Features    : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
CPU implementer    : 0x41
CPU architecture: 7
CPU variant    : 0x0
CPU part    : 0xd03
CPU revision    : 4

processor    : 2
model name    : ARMv7 Processor rev 4 (v7l)
BogoMIPS    : 76.80
Features    : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
CPU implementer    : 0x41
CPU architecture: 7
CPU variant    : 0x0
CPU part    : 0xd03
CPU revision    : 4

processor    : 3
model name    : ARMv7 Processor rev 4 (v7l)
BogoMIPS    : 76.80
Features    : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
CPU implementer    : 0x41
CPU architecture: 7
CPU variant    : 0x0
CPU part    : 0xd03
CPU revision    : 4

Hardware    : BCM2709
Revision    : a02082
Serial        : 000000002d1ef952


Memory: 4k page, physical 947748k(16152k free), swap 102396k(102396k free)

vm_info: Java HotSpot(TM) Server VM (25.65-b01) for linux-arm-vfp-hflt JRE (1.8.0_65-b17), built on Oct  6 2015 15:57:36 by "java_re" with gcc 4.7.2 20120910 (prerelease)

time: Thu Jun  9 10:42:51 2016
elapsed time: 0 seconds (0d 0h 0m 0s)

and obviously I also have concerns permisson :

Code:
Starting server
Java HotSpot(TM) Server VM warning: ignoring option PermSize=256M; support was r                                                                                                                                                             emoved in 8.0
Java HotSpot(TM) Server VM warning: Using the ParNew young collector with the Se                                                                                                                                                             rial old collector is deprecated and will likely be removed in a future release
2016-06-09 11:15:53,298 ERROR Cannot access RandomAccessFile {}) java.io.FileNotFoundException: logs/latest.log (Permission non accordée)

I 'm going to delete everything and re install from the original file! I too hack and if you agree I would table a log ( own )
 
Last edited:

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
The problem is listed right here Out of Memory Error (os_linux.cpp:2627), pid=1634, tid=1980830816

You don't have enough memory allocated, and as the pi has a very limited amount of RAM I fear you won't be able to run the server.
 
G

Guyo

Guest
I understand, but I must first of all you explain : I have so many things to test , allocated more or less memory ... I 'm not sure my log!
So I delete all and again on healthy bases !
because yesterday I did not have any of this kind of error , the server was directly kill ... In short, I see here and here (youtube ) Human play FTB ( admittedly with little modpack ...) on to old version of raspberry pi . What I mean is that the server should it launched , then yes you are right, it laguerais according mods because too can avail of memory ... but why I do not even run this mystery. .
I do not know if I am well placed to talk about that here? but I'd found the solution via your help :)

this will serve to the other .

thank you for everything already !
 

Azzanine

New Member
Jul 29, 2019
2,706
-11
0
Doesn't the game freak out if you allocate ram in numbers that aren't mutliples of 4? In other word if you want to allocate a gig it's gotta be 1024 meg? I remember back in the beta days you needed to make sure it was like that for the .bat otherwise it would just die on you or be more likely to crash.

Also if it's true that the Pi has only one gig of ram it's probably impossible to run. You need 4 gig of ram for the server client alone, you could probably get away with 2 for the client. However you will need to allocate ram for your player data, that's an extra gig.

However one would think the Pi would have an option to add more ram. It is marketed as a geek toy. A teeny computer for basic automation and tinkery. Geeky tech savvy folk really get sold on configurabilty.

Sent from my GT-I9100 using Tapatalk
 
G

Guyo

Guest
Hello, i "close" my post, I can not on my mac when everything works. it's not a memory worries, since the server crash, when he should at least then execute, age at stake ... but ... Too bad that's tutorial is plsu at all day!
I know yet make a Linux server, I already hosts ...

Thank you all for your help :)