ВСТУПЛЕНИЕ
Это краткий курс как понимать и читать ваши краш-логи в Minecraft!
1. Для работы с краш-логами нам потребуется только начальные строчки, начинающиеся на at
2. Запомните, краш-логи читаются снизу — вверх, т.е. самая последняя at считается самой первой!
3. Ваши краш-логи находятся по адресу: Имя_пользователя/AppData/Roaming/.minecraft/crash-reports
Если вы играете с модами и игра не запускается/вылетает, то в краш-логе можно найти название конфликтного мода. В нашем случае (пример выше под спойлером) краш вызвал мод JEI, это можно понять по строчкам at mezz.jei. Если краш произошел в ванильном майнкрафте, то в краш-логе будет указана конкретная причина.
Если вы не понимаете, что случилось и хотите отправить краш-лог в интернет, то не стоит копировать нижнюю часть Краш-лога, начинающуюся с: — Affected level — Почему? В этой части указываются все ваши данные, такие как: Настройки системы, конфигурация вашего лаунчера, ваш ник и вся информация по игровому миру. Несмотря на это там же указывается список модов, но он не важен для нахождения ошибки.
Теперь вы знаете 90% информации, необходимой для понимания ваших краш-логов. Для полного понимания краш-лога вы должны быть продвинутым пользователем и знать все ошибки майнкрафта, что очень трудно и не играет важной роли.
Спасибо за прочтение статьи!
Rent your own prepaid Minecraft server on nitrado.net
Overview
Many times when modifying a server, you may experience issues with the server crashing. These crashes are generally caused by either mods, the world, or the server jar. When a server crashes, it generates a crash report in the server files.
These crash reports break down why the server crashes and can help you get a better understanding of what’s wrong and how to fix it. At first look, it may seem confusing, but all crash reports are similar and once you know what to look for, you will be able to accurately read Minecraft crash reports.
Understanding a Crash Report
Where to find the crash reports
1. Head to your server Web Interface and to the left side of the page, press File Browser under TOOLS.
2. Once in the File Browser, open your Minecraft server folder, then you will see a folder named `crash-reports`. Go ahead and open it. Looking inside that directory, you will notice a file or multiple files.
3. Every file is written with the date (2019-08-17) which makes it easy to know when each report was made. When there are several files it’s always best to look at the latest and most recent crash to identify the issue.
4. To read the crash report, click on the file name, this will open an editing view.
Reading the crash report
---- Minecraft Crash Report ---- // Everything's going to plan. No, really, that was supposed to happen. Time: 1/24/20 7:25 AM Description: Exception in server tick loop Missing Mods: unknown : need [1.5.2,): have missing net.minecraftforge.fml.common.MissingModsException: Mod thaumcraft (Thaumcraft) requires [[email protected][1.5.2,)] at net.minecraftforge.fml.common.Loader.sortModList(Loader.java:266) at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:572) at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) at java.lang.Thread.run(Thread.java:748)
This is the top portion of the report where it will have the date, time and stack trace. The stack trace is a report of when a program runs at a certain time in its execution. This will be primarily where we will discover the error that is causing the server or client to crash.
In this example, we can tell that a mod is missing due to part of the stack trace saying «Missing Mods: unknown : need [1.5.2,): have missing». If we go down to the next line we can see that it tells «net.minecraftforge.fml.common.MissingModsException: Mod thaumcraft (Thaumcraft) requires [[email protected][1.5.2,)]» which translates to the mod Thaumcraft needs the mod Baubles version 1.5.2 in order to run properly.
A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Linux (amd64) version 3.10.0-957.27.2.el7.x86_64 Java Version: 1.8.0_222, Oracle Corporation Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 1474787976 bytes (1406 MB) / 2075918336 bytes (1979 MB) up to 2075918336 bytes (1979 MB) JVM Flags: 4 total; -Xmx2048M -Xms2048M -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.42 Powered by Forge 14.23.5.2847 5 mods loaded, 5 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored | State | ID | Version | Source | Signature | |:----- |:---------- |:------------ |:-------------------------------- |:--------- | | L | minecraft | 1.12.2 | minecraft.jar | None | | L | mcp | 9.42 | minecraft.jar | None | | L | FML | 8.0.99.99 | forge1122.jar | None | | L | forge | 14.23.5.2847 | forge1122.jar | None | | L | thaumcraft | 6.1.BETA26 | Thaumcraft-1.12.2-6.1.BETA26.jar | None | Loaded coremods (and transformers): Profiler Position: N/A (disabled) Is Modded: Definitely; Server brand changed to 'fml,forge' Type: Dedicated Server (map_server.txt)
The second half of the crash report will go over your system details and the states of the mods loading in. With this, you can find out what version of Java they are running, how much ram they have allocated and the versions of the mods to be able to assist them. One of the best tools with crash reports is knowing the States in which a mod loads in. These states are as follows: ‘U’ = Unloaded ‘L’ = Loaded ‘C’ = Constructed ‘H’ = Pre-initialized ‘I’ = Initialized ‘J’ = Post-initialized ‘A’ = Available ‘D’ = Disabled ‘E’ = Errored
You can see these states to the left of each mod. In this example, they only made it to the loaded state. So if you have a mod that was UCE that would mean the mod Unloaded, Constructed and then Errored which means there was an error with loading that particular mod causing it to crash, so you now know what the exact mod causing the issue is and can look into why it’s occurring.
Conclusion
There are hundreds of different reasons that your server may crash, it can be from a world issue, server jar, mods, and far more. As long as you can narrow down what the reason is, the solution should come easier. If you can narrow down it’s a world issue, you can Google the error line to see if there are any solutions, or you can restore a backup. With so many different solutions to so many different problems, there isn’t a way to break down each individual error you can get.
This guide will show you where to find crash reports and how to read them so
you can find out what is going wrong with your server. A crash report is
generated every time the server has to end unexpectedly with information about
when the crash happened, what caused it, and a message that can help you fix
it.
Contents
- How to Find Crash Reports
- Finding Out What Went Wrong
- How To Fix The Problem
- Further Reading & External Links
- Support
How To Find Crash Reports
-
Log into Multicraft and select the server that you want to view crash
reports for. -
In the menu on the left side of the page, in the
Files
section,
clickCrash Reports
. -
All the crash reports generated by the server will be in the list below,
sorted by date and time that they were generated. - Click on the name of the crash report you would like to look at.
Note: You can also find crash reports in the
crash-reports
folder if you are using FTP to browse the server
files.
Finding Out What Went Wrong
Finding out what went wrong with the server to generate the crash report is
highlighted almost right at the top of the crash report. Below you can see a
snippet of a crash report generated by a server. The cause of the error has
been highlighted for easier visibility. If you want to figure out how to fix
the crash yourself, you will need to use this error description to locate info
on how to fix it.
---- Minecraft Crash Report ----
// My bad.
Time: 15/03/19 8:41 PM
Description: Watching Server
Note: Crash reports will be longer than this. This was just a shortened
version to make it easier to read.
How To Fix The Problem
One of the most common problems we see with servers is
Ticking Tile Entity
, which we have a guide about
how to fix these ticking tile entities.
There are so many different errors that if we were to list all of the possible
options here, it would never end. As with every new update, more possible
errors can happen. Your best bet on fixing the error may be to
reach out our support team if you can’t
figure out how to fix it.
Further Reading & External Links
- How To: Fixing A Ticking Tile Entity Error
StickyPiston Support
Whether you own a server with StickyPiston or don’t, we are always
happy to help with any and all issues you may be having. Open a
support ticket with our team and we will be in touch.
Open Support Ticket
Как читать краш репорт майнкрафт
Чтение краш-репорта в Minecraft может быть довольно сложным, но следуя этой пошаговой инструкции, должно стать проще:
1. Откройте Minecraft Launcher и выберите игру, которую вы пытаетесь запустить.
2. Нажмите на кнопку «Edit Profile» (Изменить профиль) под выбранной игрой.
3. В разделе «Launcher Visibility» установите флажок «Keep the launcher open» (Оставить лаунчер открытым).
4. Нажмите на кнопку «Save Profile» (Сохранить профиль).
5. Запустите выбранную игру, которая должна открыться в отдельном окне.
6. Запустите процесс, который вызывает краш игры.
7. После краша игры зайдите в папку игры и найдите файл с именем crash-report.
8. Откройте файл crash-report в текстовом редакторе, таком как блокнот.
9. В файле crash-report найдите секцию «—- Minecraft Crash Report —-» и начните его чтение с этой строки.
10. Прочитайте отчет и проанализируйте его, ища описание ошибок и проблем, связанных с запуском игры.
11. Если вам нужна дополнительная помощь, вы можете обратиться к сообществу Minecraft или к службе поддержки игры.
Дополнительные советы:
— Если вы не можете найти файл crash-report, попробуйте использовать поиск файлов в операционной системе.
— Если вам нужно отправить отчет о краше другу или специалисту технической поддержки, скопируйте текст отчета в новый документ или вставьте его в Интернет-сервис для обмена текстом, такой как pastebin. com, и поделитесь этой ссылкой со своим другом или специалистом.
— Если вы не знаете, как решить проблему, связанную с крашем, попробуйте обновить или переустановить Minecraft, проверить ваше интернет-подключение, убедиться, что ваш компьютер соответствует минимальным системным требованиям, или обратитесь к службе поддержки игры за помощью.
- баг
- вылет
- вылет при запуске
- вылетает
- вылетает из игры
- закрылся лаунчер
- краш
- Статус темы:
-
Закрыта.
-
Всем привет! Наконец у меня дошли руки написать этот огромный гайд, как починить свой майнкрафт.
Для начала вам нужно понять, где находится лог-файл в который майнкрафт пишет стадии загрузки и подробную информацию о своей работе.
!!!
Если вы играете на сервере версии 1.6.4 , то вам нужно найти файл, который называется
ForgeModLoader-client-0
Обычно он находится по пути:диск С —>
папка .borealis
папка с названием сервера ( crashlanding или perfectsky ) —> файл ForgeModLoader-client-0Этот файл нам нужно открыть блокнотом либо другим редактором текста.
В самом низу этого файла обычно майнкрафт пишет ошибку при вылете, краше и остальных проблемах.
Ниже будут написаны ЧАСТЫЕ проблемы , которые возникают у игроков и пути их решения.
!!!
Если вы играете на сервере версии 1.7.10 , то вам нужно найти файл, который называется
fml-client-latest
Обычно он находится по пути:диск С —>
папка .borealis —>
папка logs —> файл fml-client-latestЭтот файл нам нужно открыть блокнотом либо другим редактором текста.
В самом низу этого файла обычно майнкрафт пишет ошибку при вылете, краше и остальных проблемах.
Ниже будут написаны ЧАСТЫЕ проблемы , которые возникают у игроков и пути их решения.
!!!
Если вы играете на сервере версии 1.12.2 , то вам нужно найти файл, который называется
latest
Обычно он находится по пути:диск С —> папка .borealis —> папка logs —> файл latest
Этот файл нам нужно открыть блокнотом либо другим редактором текста.
В самом низу этого файла обычно майнкрафт пишет ошибку при вылете, краше и остальных проблемах.
Ниже будут написаны ЧАСТЫЕ проблемы, которые возникают у игроков и пути их решения.
Последнее редактирование: 2 ноя 2019
spiddi и SkillsMr нравится это.
-
После того как вы открыли блокнотом этот файл, вы можете пролистать в самый низ и попробовать понять в чем проблема. Либо воспользоваться моей небольшой инструкцией.
Рассмотрим поиск проблемы с помощью программы » блокнот «
1. Открываем файл, который вы нашли блокнотом.
2. Нажимаем кнопку F3 , у вас откроется поле поиска.
3. Пишем туда одну из частых проблем, которые написаны ниже, например OutOfMemoryError и нажимаем поиск.
4. Если такие строчки вы нашли, значит у вас именно эта ошибка.
5. Открываете спойлер ошибки и начинаете исправлять.
6. Если такой ошибки нет, пробуете следующую, либо можете прикрепить свой файл ниже и мы постараемся вам помочь.Частые ошибки:
!!!
Пример такой ошибки.Вашей игре не хватает оперативной памяти.
—>
Решение:
1. Установить в настройках лаунчера больше памяти (1536 или 2048 )Если вы не можете установить такое число , обратите внимание какая джава у вас установлена и сколько всего памяти у вас в компьютере.
Так же важный фактор какой разрядности ваша система — т.е.
Если у вас система х64 , то и джава должна быть установлена х64
Если система х32 , то джаву х64 не нужно устанавливать !!!!!! НЕ ПУТАЙТЕ ОБЪЕМ ЖЕСТКОГО ДИСКА И ОПЕРАТИВНУЮ ПАМЯТЬ !!!
!!!
Для начала давайте узнаем какой разрядности ваша система:Вам нужно нажать пуск —> нажать на компьютер или мой компьютер правой кнопкой и выбрать там свойства
Скачать джаву для х64 систем — если у вас не установлена.
Скачать джаву можно тут: https://www.java.com/ru/download/manual.jsp
2. Закрыть лишние программы ( скайп, хром, стим, все что может бесполезно работать )Последнее редактирование: 9 янв 2019
-
резерв . вдруг меня попрет писать
- Статус темы:
-
Закрыта.