Info received windows console close event shutting log core down

Windows: Shutdown/Reboot Event IDs – Get Logs

While troubleshooting an issue that causes an unexpected reboot or shutdown of a Windows machine, it is important to know which event IDs are related to system reboot/shutdown and how to find the appropriate logs.

In this note i am publishing all the event IDs related to reboots/shutdowns.

I am also showing how to display the shutdown events with date and time, using a Windows Event Viewer or from the command-line using a PowerShell.

Cool Tip: How to boot Windows in Safe Mode! Read more →

Shutdown Event IDs

The list of the Windows event IDs, related to the system shutdown/reboot:

Event ID Description
41 The system has rebooted without cleanly shutting down first.
1074 The system has been shutdown properly by a user or process.
1076 Follows after Event ID 6008 and means that the first user with shutdown privileges logged on to the server after an unexpected restart or shutdown and specified the cause.
6005 The Event Log service was started. Indicates the system startup.
6006 The Event Log service was stopped. Indicates the proper system shutdown.
6008 The previous system shutdown was unexpected.
6009 The operating system version detected at the system startup.
6013 The system uptime in seconds.

Display Shutdown Logs in Event Viewer

The shutdown events with date and time can be shown using the Windows Event Viewer.

Start the Event Viewer and search for events related to the system shutdowns:

  1. Press the Win keybutton, search for the eventvwr and start the Event Viewer
  2. Expand Windows Logs on the left panel and go to System
  3. Right-click on System and select Filter Current Log.
  4. Type the following IDs in the field and click OK :

Cool Tip: Get history of previously executed commands in PowerShell! Read more →

Find Shutdown Logs using PowerShell

For example, to filter the 10000 most recent entries in the System Event Log and display only events related to the Windows shutdowns, run:

Cool Tip: Start/Stop a service in Windows from the CMD & PowerShell! Read more →

Форум Pawn-Wiki.Ru — Воплоти мечту в реальность!: Крашит сервер — Форум Pawn-Wiki.Ru — Воплоти мечту в реальность!

  • Pawn скриптинг
  • Первая помощь
  • Вопросы по скриптингу
  • Правила форума
  • Просмотр новых публикаций
Читайте также:  Google reader для windows

  • (3 Страниц)
  • 1
  • 2
  • 3
  • >
  • Вы не можете создать новую тему
  • Тема закрыта

  • Группа: Активные пользователи
  • Сообщений: 45
  • Регистрация: 21 октября 17

Пишет в log-core лог с таким сообщением и после этого вырубает сервер

Это не всегда случается, но часто при заходе игрока на сервер или при перезапуске сервера (постоянно)

Сообщение отредактировал tchd467: 19 января 2018 — 21:14

  • Группа: Активные пользователи
  • Сообщений: 202
  • Регистрация: 03 июля 17

tchd467 (19 января 2018 — 21:10) писал:

Пишет в log-core лог с таким сообщением и после этого вырубает сервер

Это не всегда случается, но часто при заходе игрока на сервер или при перезапуске сервера (постоянно)

Сообщение отредактировал Andrewsolomon: 19 января 2018 — 22:29

  • Группа: Активные пользователи
  • Сообщений: 45
  • Регистрация: 21 октября 17

Andrewsolomon (19 января 2018 — 22:28) писал:

На линуксе, mysql_log нету, вот всё что связано с логами

Сообщение отредактировал tchd467: 20 января 2018 — 06:39

Info received windows console close event shutting log core down

maddinat0r released this Aug 12, 2019

Breaking changes

  • parameter level in function CreateLog has been removed, as log levels are now handled by the log-core YAML config file
  • function SetLogPluginLogLevel has been removed, specify the plugins/log-plugin logger settings in the log-config.yml config instead
  • function SetLogLevel has been removed, specify the related logger setting in the log-config.yml config instead

  • log-core has been updated to v0.5, refer to the log-core release page for all features and changes
  • added support for redirecting console output to a logger; add logplugin_capture_serverlog 1 to your server.cfg to enable this feature (refer to this on why you’d want to enable this feature)
  • added more format specifiers to Log :
specifier description
s string
d/i decimal number
o octal number
x hex number (lowercase)
X hex number (uppercase)
b binary number
f float
F float with uppercase «NAN» and «INF»
e float (exponential notation)
E float (exponential notation with uppercase «E»)
g float (general format; combination of «f» and «e»)
G float (general format, uppercase)
  • general improvements

maddinat0r released this Jul 12, 2017

This release breaks compatibility to all older versions! This means you can’t use this version with the MySQL plugin version R41-2 or lower!

log-plugin

  • added log-plugin plugin log (lol): this plugin now logs its own errors, warnings and debug messages; you can set the log level through native SetLogPluginLogLevel(E_LOGLEVEL:level); (it’s set to error and warning by default)
  • general improvements

log-core

  • catch SIGINT instead of SIGTERM on Linux
  • general improvements

maddinat0r released this Dec 4, 2016

log-core

This release breaks compatibility to all older versions! This means you can’t use this version with the MySQL plugin version R41 or lower!

Breaking changes: renamed server configuration variable logplugin_debuginfo to logcore_debuginfo

New feature: log lines now print a full call trace

maddinat0r released this Aug 6, 2016

log-core: bug-fix: undefined behavior when reading empty server config file line

maddinat0r released this Aug 5, 2016

  • new server configuration variable logplugin_debuginfo : if set to 0 , all AMX debug functionality will be disabled (all debug retrieval functions will return false ), even if the AMX file is compiled with debug symbols
  • complete interface redesign:
    • compatibility with C
    • noticeable performance improvements
    • new init/exit functions samplog_Init and samplog_Exit : these have to be called in Load() and Unload() respectively
  • major crash handling improvements:
    • guaranteed crash-safety
    • compatibility with other crash handlers (like the crashdetect plugin)
      NOTE: load the crashdetect plugin before any other plugin which uses the log-core to ensure compatibility
    • log-core now detects the console close event on Windows (when you press the red X in the upper right corner of the console window)
    • in case of a crash log-core now creates a log-core.log file and logs that crash, e.g.:
      [31/07/2016 13:44:23] [ERROR] exception 0XC0000005 (ACCESS_VIOLATION) from Unhandled Exception Handler catched; shutting log-core down (crash on Windows due to a bug in another plugin)
  • bug-fix: carriage return isn’t stripped from read server.cfg file (thanks to @ziggi for his PR)
  • ensure compatibility between upcoming MySQL plugin release
  • added new parameter debuginfo to CreateLog , which controls printing debug info on a per-log basis
  • code-breaking change: SetLogLevel has no enable parameter anymore, specify the whole log level like that: SetLogLevel(logger, ERROR | WARNING | INFO);

Почему ломается база MYSQL и как решить проблему?

Проект у меня на ларавел. Каждый день база ломается, пропадает. Вот что показывает phpmyadmin.

Пробовал восстановить, так:

получаю это:
keycheck_ru_db.WARNING OK

Сервер впс 1гиг, 1 озу. Mysql -8v
настройки мускуля.

в логах только такие ошибки:

Восстанавливаю из дампа, работает нормально день, дальше что-то случается и с утра я вижу картинку как на картинке выше.

  • Вопрос задан 18 нояб. 2020
  • 193 просмотра

neol Спасибо. А я логи читаю, настройкиверчю, а внутрь бд не глядел, ну варнинг и варниг, а что внутри не читал, пригляделся после ваших слов, а там ( )_( ). Спасибо.

От.. мудаки, там воровать то нечего, проект на стадии разработки, филейной частью светит, чтобы с локалки к БД можно было подключить.

Осталось понять как закрыть дырку в мускуле, на хостинге допустим если делаешь доступ к БД из вне, то её не ломают. Что-то нужно в файрволе настроить не подскажите?

Может это баг в мускуле 8.

feniksdv, ну если доступ по сети нужен, то стоит убедится, что у всех пользователей mysql заданы пароли. Желательно более стойкие, чем 12345.

Ограничить фаерволом доступ только с вашего IP можно, если он у вас статический, иначе не самый удобный вариант.

Как вариант — оставить mysql только для localhost и пробросить доступ через ssh, как-то так https://www.linode.com/docs/guides/create-an-ssh-t.
Если пользуетесь phpstorm, то он умеет делать такие туннели самостоятельно.

От.. мудаки, там воровать то нечего, проект на стадии разработки

Info received windows console close event shutting log core down

Описание системы.
Система полета камерой представляет собой возможность перемещаться в пространстве игры по всем осям (X, Y, Z) путем нажатия кнопок на клавиатуре.

Подключение системы.
1. Система написана в отдельном файле — include. Вам необходимо скачать этот файл и добавить в папку, находящейся в следующей директории:
«..\pawno\include» 2. Затем Вам следует открыть свой игровой мод и в начале, после всех инклудов, дописать следующую строку:
#include
Работа с системой.
В систему полета камерой включены две функции:
1.
SetPlayerFlyStatus(playerid, status = 2) /* playerid — ID игрока, которого Вы хотите «отправить» в режим полета status — режим полета* * предусмотрено три режима полета: CAMERA_MODE_NONE (0) — выключить режим полета, CAMERA_MODE_FLY (1) — включить режим полета, CAMERA_MODE_REVERSE (2) — сменить режим на реверсивный */ 2.
IsPlayerFlying(playerid) /* playerid — ID игрока, пребывание в состоянии полета которого Вы хотите проверить *данная функция возвращает: CAMERA_MODE_NONE (0), если игрок не находится в состоянии полета, CAMERA_MODE_FLY (1), если игрок находится в состоянии полета */ При помощи данных функций Вы можете управлять пребыванием игрока в режиме полета, а также получать информацию о том, «летает» ли игрок в тот или иной момент.

Особенности системы.
Системой полета предусмотрено, что игрок, выходящий из режима полета, появится именно там, где вышел. Так, если Вы покидаете режим полета, пребывая в озере, то появление игрока будет именно в этом озере.

Пример использования.
CMD:fly(playerid, params[]) < static const MSG_USE_CMD[] = !"» Usage the command: /fly [mode 0-2]"; if(isnull(params)) return SendClientMessage(playerid, -1, MSG_USE_CMD) & 0; new mode; if(sscanf(params, "d", mode)) return SendClientMessage(playerid, -1, MSG_USE_CMD) & 0; else if(!(0

Здравствуйте. не видно обичным игрокам Textdraws помогите куда этот код поставить ? при команде /sp видно. нужно чтобы всегда было видно заранее спасибо

Требуется сменить фон во время регистрации/авторизации
так как брал за основу мод Аризоны у них стоит кастомный фон при авторизации вот — ссылка на фото
как поменять данный кастомный фон на свой или вернуть его к базовому

Приветствую чилавеки!
Первый мой пост про текстдравы и вообще самый первый, ладно перейдем к самому коду!

Логотип красивый и достаточно приемлемый для открытия своего проекта.

Работает на IPS Community Suite 4
2017 — н.в. PAWNO-RUS.RU
При копировании материалов с сайта ссылка на наш форум обязательна!

Читайте также:  Очистка папки темп windows 10
Оцените статью