Сообщений: 104
Тем: 17
Зарегистрирован: Oct 2013
Репутация:
52
Всем привет. Перейду сразу к делу, а дела обстоят плохо ;[
Открываюсь я уже 2-ой раз на сборке l2jlovely и второй раз меня настигают неудачи.
Суть проблемы в том что через n-ое ( рандомное ) кл-во времени пропадает возможность бить мобов но и это не всё, пропадает возможность выделять нпц т.е. открывать диалоговые откна с НПЦ, отбрасывает персонажей назад ( бежали вы с точи X кликнув на точку Y - не добежав до точки Y вас отбрасывает на точку X ). Продолжается всё это дело до тех пор пока я не перезагружу сервер.
Смотрю логи сервера - пусто, абсолютно без ошибок. Смотрю логи мускула, как в воду =\
Единственный известный мне фактор проявления этой ошибки это нагрузка на сервере свыше 10 человек.
Если играет меньше людей, лаг не проявляется.
Железка стоит хорошая, 2-ва ксеона по 4 ядра с частотой по 2.6. 32 гб ОЗУ ( в схашнике под ГС выделено 16гб ). 2 ssd харда по 120гб.
Ребят как продебажить и узнать в чем проблема? Уже нет никаких идей.
p\s На сервере есть 2-ва кастом скрипта на дроп по пати быть может из-за них проблема?
party_drop
Код: package custom.core;
import ru.catssoftware.gameserver.model.actor.instance.L2NpcInstance;
import ru.catssoftware.gameserver.model.actor.instance.L2PcInstance;
import ru.catssoftware.gameserver.model.quest.Quest;
/**
* @author TpaM
* @Adapted for Lucera: SoFace
*/
public class PartyDrop extends Quest {
public static String qn = "9999_PartyDrop";
// ID Монстров (Разделяются запятой).
private int[] MONSTERS_ID = { 29020, 29028, 29068 };
// ID Предмета, который будет использован в качестве дропа.
private int ITEM_ID = 13017;
// Количество дропа.
private int ITEM_COUNT = 2;
// Давать награду всей пати ?
private boolean REWARD_PARTY = true;
// Давать хиро при убийстве моба ?
private boolean HERO_REWARD = false;
// Давать хиро всей пати при убийстве моба ?
private boolean HERO_REWARD_PARTY = false;
// Давать нублес при убийстве моба ?
private boolean NOBLESS_REWARD = false;
// Давать нублес всей пати при убийстве моба ?
private boolean NOBLESS_REWARD_PARTY = false;
public PartyDrop()
{
super(-1, qn, "PartyDrop");
for (int id : MONSTERS_ID)
addKillId(id);
}
@Override
public String onKill(L2NpcInstance npc, L2PcInstance killer, boolean isPet)
{
if(REWARD_PARTY)
{
if(killer.getParty() != null)
{
for(L2PcInstance member : killer.getParty().getPartyMembers())
{
member.addItem("ADD PARTY ITEM", ITEM_ID, ITEM_COUNT, member, true);
if(HERO_REWARD_PARTY) {
member.setHero(true); }
if(NOBLESS_REWARD_PARTY) {
member.setNoble(true); }
member.sendMessage("Вы получили награду за убийство РБ!");
}
}
else
{
killer.addItem("ADD PLAYER ITEM", ITEM_ID, ITEM_COUNT, killer, true);
if(HERO_REWARD) {
killer.setHero(true); }
if(NOBLESS_REWARD) {
killer.setNoble(true); }
killer.sendMessage("Вы получили награду за убийство РБ!");
}
}
else
{
killer.addItem("ADD PLAYER ITEM", ITEM_ID, ITEM_COUNT, killer, true);
if(HERO_REWARD) {
killer.setHero(true); }
if(NOBLESS_REWARD) {
killer.setNoble(true); }
killer.sendMessage("Вы получили награду за РБ!");
}
return null;
}
public static void main(String[] args)
{
new PartyDrop();
}
}
partydrop_v2
Код: package custom.core;
import ru.catssoftware.gameserver.model.actor.instance.L2NpcInstance;
import ru.catssoftware.gameserver.model.actor.instance.L2PcInstance;
import ru.catssoftware.gameserver.model.quest.Quest;
import java.util.Random;
public class PartyDropV2 extends Quest {
public static String qn = "10001_PartyDropV2";
// ID Монстров (Разделяются запятой).
private int[] MONSTERS_ID = { 29047, 25450, 25114 };
// ID Предмета, который будет использован в качестве дропа.
private int[] DROP_29047 = { 15001, 15002, 15007, 15006 ,15000, 15005, 15003,
9416, 9421, 9422, 9423, 9424, 9425, 9428, 9429, 9430, 9431, 9432, 10000, 10001, 10002,
9437, 9438, 9439, 9440, 15009, 10075, 10076, 13012, 10003, 10004, 10005, 10006, 10007,
15350, 15351, 15352, 15353, 15354, 15355, 15356, 10008, 10009, 10010, 10011, 10012,
15357, 9820, 9821, 9822, 9823, 9824, 9825, 9826, 9827, 9829, 9830, 9831, 9832, 9833, 9834, 9535, 9836, 9300, 9304, 9308, 9312, 9316, 9320, 9324, 9328, 9332, 9336, 9340 };
private int[] DROP_25114 = { 13017, 13016, 13020 };
// Количество дропа.
private int ITEM_COUNT = 1;
// Давать награду всей пати ?
private boolean REWARD_PARTY = true;
Random rand = new Random();
public PartyDropV2()
{
super(-1, qn, "PartyDropV2");
for (int id : MONSTERS_ID)
addKillId(id);
}
@Override
public String onKill(L2NpcInstance npc, L2PcInstance killer, boolean isPet)
{
if(REWARD_PARTY)
{
if(killer.getParty() != null)
{
for(L2PcInstance member : killer.getParty().getPartyMembers())
{
member.addItem("ADD PARTY ITEM", revardRoll(npc.getNpcId()), ITEM_COUNT, member, true);
member.sendMessage("Вы получили награду за убийство РБ!");
}
}
else
{
killer.addItem("ADD PLAYER ITEM", revardRoll(npc.getNpcId()), ITEM_COUNT, killer, true);
killer.sendMessage("Вы получили награду за убийство РБ!");
}
}
else
{
killer.addItem("ADD PLAYER ITEM", revardRoll(npc.getNpcId()), ITEM_COUNT, killer, true);
killer.sendMessage("Вы получили награду за убийство РБ!");
}
return null;
}
private int revardRoll(int mob_id)
{
switch(mob_id)
{
case 29047:
return DROP_29047[rand.nextInt(DROP_29047.length)];
case 25450:
return 13010;
case 25114:
return DROP_25114[rand.nextInt(DROP_25114.length)];
default:
}
return 0;
}
public static void main(String[] args)
{
new PartyDropV2();
}
}
Хотя мне уже говорили что не в скриптах дело но всё же.
Спасибо за внимание.
Сообщений: 1,432
Тем: 34
Зарегистрирован: Jul 2012
Репутация:
11,419
1) Мало ресурсов
2) Не оптимизирована сборка
Сообщений: 104
Тем: 17
Зарегистрирован: Oct 2013
Репутация:
52
Asmodiel Написал:1) Мало ресурсов
2) Не оптимизирована сборка Но как по мне железо достаточно хорошее что бы выдержать онлайн 10-100
Вот по поводу сборки конечно не могу ничего утверждать. Но знаю что на ней стояло несколько проектов с онлайном свыше 100 человек.
Сообщений: 693
Тем: 13
Зарегистрирован: Jul 2011
Репутация:
1,624
на таких конфигах держат от 1-2к онлайна, я бы посоветовал вам проверить настройки мускуля,кол-во под-ний и буфер (первое что пришло в голову)
Сообщений: 104
Тем: 17
Зарегистрирован: Oct 2013
Репутация:
52
SmileForMe Написал:на таких конфигах держат от 1-2к онлайна, я бы посоветовал вам проверить настройки мускуля,кол-во под-ний и буфер (первое что пришло в голову) Конфиг мускула по сути дефолтный я только max_connections поправил:
my.ini
Код: #
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# [url]http://dev.mysql.com/doc/mysql/en/server-system-variables.html[/url]
# This will be passed to all mysql clients
# It has been reported that passwords should be enclosed with ticks/quotes
# escpecially if they contain "#" chars...
# Remember to edit /etc/mysql/debian.cnf when changing the socket location.
[client]
port = 3306
socket = /var/run/mysqld/mysqld.sock
# Here is entries for some specific programs
# The following values assume you have at least 32M ram
# This was formally known as [safe_mysqld]. Both versions are currently parsed.
[mysqld_safe]
socket = /var/run/mysqld/mysqld.sock
nice = 0
[mysqld]
#
# * Basic Settings
#
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
#bind-address = 127.0.0.1
#
# * Fine Tuning
#
key_buffer = 16M
max_allowed_packet = 16M
thread_stack = 192K
thread_cache_size = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover = BACKUP
max_connections = 2000
#table_cache = 64
#thread_concurrency = 10
#
# * Query Cache Configuration
#
query_cache_limit = 1M
query_cache_size = 16M
#
# * Logging and Replication
#
# Both location gets rotated by the cronjob.
# Be aware that this log type is a performance killer.
# As of 5.1 you can enable the log at runtime!
#general_log_file = /var/log/mysql/mysql.log
#general_log = 1
#
# Error log - should be very few entries.
#
log_error = /var/log/mysql/error.log
#
# Here you can see queries with especially long duration
#log_slow_queries = /var/log/mysql/mysql-slow.log
#long_query_time = 2
#log-queries-not-using-indexes
#
# The following can be used as easy to replay backup logs or for replication.
# note: if you are setting up a replication slave, see README.Debian about
# other settings you may need to change.
#server-id = 1
#log_bin = /var/log/mysql/mysql-bin.log
expire_logs_days = 10
max_binlog_size = 100M
#binlog_do_db = include_database_name
#binlog_ignore_db = include_database_name
#
# * InnoDB
#
# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
# Read the manual for more InnoDB related options. There are many!
#
# * Security Features
#
# Read the manual, too, if you want chroot!
# chroot = /var/lib/mysql/
#
# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
#
# ssl-ca=/etc/mysql/cacert.pem
# ssl-cert=/etc/mysql/server-cert.pem
# ssl-key=/etc/mysql/server-key.pem
[mysqldump]
quick
quote-names
max_allowed_packet = 16M
[mysql]
#no-auto-rehash # faster start of mysql but no tab completition
[isamchk]
key_buffer = 16M
#
# * IMPORTANT: Additional settings that can override those from this file!
# The files must end with '.cnf', otherwise they'll be ignored.
#
!includedir /etc/mysql/conf.d/
Но опять таки я думаю что таких настроек вполне достаточно для онлайна ~100 человек и не вижу в этом проблемы.
А вот по поводу логов:
Код: 140301 12:23:54 [Note] /usr/sbin/mysqld: Normal shutdown
140301 12:23:54 [Note] Event Scheduler: Purging the queue. 0 events
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 378 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 377 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 376 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 375 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 374 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 366 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 326 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 295 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 294 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 293 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 173 user: 'root'
140301 12:23:56 InnoDB: Starting shutdown...
140301 12:23:57 InnoDB: Shutdown completed; log sequence number 10377088
140301 12:23:57 [Note] /usr/sbin/mysqld: Shutdown complete
140301 12:28:22 [Warning] Using unique option prefix myisam-recover instead of myisam-recover-options is deprecated and will be removed in a future release. Please use the full name instead.
140301 12:28:22 [Note] Plugin 'FEDERATED' is disabled.
140301 12:28:22 InnoDB: The InnoDB memory heap is disabled
140301 12:28:22 InnoDB: Mutexes and rw_locks use GCC atomic builtins
140301 12:28:22 InnoDB: Compressed tables use zlib 1.2.3.4
140301 12:28:22 InnoDB: Initializing buffer pool, size = 128.0M
140301 12:28:22 InnoDB: Completed initialization of buffer pool
140301 12:28:22 InnoDB: highest supported file format is Barracuda.
140301 12:28:22 InnoDB: Waiting for the background threads to start
140301 12:28:23 InnoDB: 5.5.35 started; log sequence number 10377088
140301 12:28:23 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
140301 12:28:23 [Note] - '0.0.0.0' resolves to '0.0.0.0';
140301 12:28:23 [Note] Server socket created on IP: '0.0.0.0'.
140301 12:28:23 [Note] Event Scheduler: Loaded 0 events
140301 12:28:23 [Note] /usr/sbin/mysqld: ready for connections.
Version: '5.5.35-0ubuntu0.12.04.1' socket: '/var/run/mysqld/mysqld.sock' port: 3306 (Ubuntu)
errorlog
Код: 140301 12:23:54 [Note] /usr/sbin/mysqld: Normal shutdown
140301 12:23:54 [Note] Event Scheduler: Purging the queue. 0 events
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 378 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 377 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 376 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 375 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 374 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 366 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 326 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 295 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 294 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 293 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 173 user: 'root'
140301 12:23:56 InnoDB: Starting shutdown...
140301 12:23:57 InnoDB: Shutdown completed; log sequence number 10377088
140301 12:23:57 [Note] /usr/sbin/mysqld: Shutdown complete
140301 12:28:22 [Warning] Using unique option prefix myisam-recover instead of myisam-recover-options is deprecated and will be removed in a future release. Please use the full name instead.
140301 12:28:22 [Note] Plugin 'FEDERATED' is disabled.
140301 12:28:22 InnoDB: The InnoDB memory heap is disabled
140301 12:28:22 InnoDB: Mutexes and rw_locks use GCC atomic builtins
140301 12:28:22 InnoDB: Compressed tables use zlib 1.2.3.4
140301 12:28:22 InnoDB: Initializing buffer pool, size = 128.0M
140301 12:28:22 InnoDB: Completed initialization of buffer pool
140301 12:28:22 InnoDB: highest supported file format is Barracuda.
140301 12:28:22 InnoDB: Waiting for the background threads to start
140301 12:28:23 InnoDB: 5.5.35 started; log sequence number 10377088
140301 12:28:23 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
140301 12:28:23 [Note] - '0.0.0.0' resolves to '0.0.0.0';
140301 12:28:23 [Note] Server socket created on IP: '0.0.0.0'.
140301 12:28:23 [Note] Event Scheduler: Loaded 0 events
140301 12:28:23 [Note] /usr/sbin/mysqld: ready for connections.
Version: '5.5.35-0ubuntu0.12.04.1' socket: '/var/run/mysqld/mysqld.sock' port: 3306 (Ubuntu)
По моему ничего сверхъестественного.
Уже не знаю что думать
Сообщений: 1,432
Тем: 34
Зарегистрирован: Jul 2012
Репутация:
11,419
desolator Написал:Конфиг мускула по сути дефолтный я только max_connections поправил:
my.ini
Код: #
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# [url]http://dev.mysql.com/doc/mysql/en/server-system-variables.html[/url]
# This will be passed to all mysql clients
# It has been reported that passwords should be enclosed with ticks/quotes
# escpecially if they contain "#" chars...
# Remember to edit /etc/mysql/debian.cnf when changing the socket location.
[client]
port = 3306
socket = /var/run/mysqld/mysqld.sock
# Here is entries for some specific programs
# The following values assume you have at least 32M ram
# This was formally known as [safe_mysqld]. Both versions are currently parsed.
[mysqld_safe]
socket = /var/run/mysqld/mysqld.sock
nice = 0
[mysqld]
#
# * Basic Settings
#
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
#bind-address = 127.0.0.1
#
# * Fine Tuning
#
key_buffer = 16M
max_allowed_packet = 16M
thread_stack = 192K
thread_cache_size = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover = BACKUP
max_connections = 2000
#table_cache = 64
#thread_concurrency = 10
#
# * Query Cache Configuration
#
query_cache_limit = 1M
query_cache_size = 16M
#
# * Logging and Replication
#
# Both location gets rotated by the cronjob.
# Be aware that this log type is a performance killer.
# As of 5.1 you can enable the log at runtime!
#general_log_file = /var/log/mysql/mysql.log
#general_log = 1
#
# Error log - should be very few entries.
#
log_error = /var/log/mysql/error.log
#
# Here you can see queries with especially long duration
#log_slow_queries = /var/log/mysql/mysql-slow.log
#long_query_time = 2
#log-queries-not-using-indexes
#
# The following can be used as easy to replay backup logs or for replication.
# note: if you are setting up a replication slave, see README.Debian about
# other settings you may need to change.
#server-id = 1
#log_bin = /var/log/mysql/mysql-bin.log
expire_logs_days = 10
max_binlog_size = 100M
#binlog_do_db = include_database_name
#binlog_ignore_db = include_database_name
#
# * InnoDB
#
# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
# Read the manual for more InnoDB related options. There are many!
#
# * Security Features
#
# Read the manual, too, if you want chroot!
# chroot = /var/lib/mysql/
#
# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
#
# ssl-ca=/etc/mysql/cacert.pem
# ssl-cert=/etc/mysql/server-cert.pem
# ssl-key=/etc/mysql/server-key.pem
[mysqldump]
quick
quote-names
max_allowed_packet = 16M
[mysql]
#no-auto-rehash # faster start of mysql but no tab completition
[isamchk]
key_buffer = 16M
#
# * IMPORTANT: Additional settings that can override those from this file!
# The files must end with '.cnf', otherwise they'll be ignored.
#
!includedir /etc/mysql/conf.d/
Но опять таки я думаю что таких настроек вполне достаточно для онлайна ~100 человек и не вижу в этом проблемы.
А вот по поводу логов:
Код: 140301 12:23:54 [Note] /usr/sbin/mysqld: Normal shutdown
140301 12:23:54 [Note] Event Scheduler: Purging the queue. 0 events
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 378 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 377 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 376 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 375 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 374 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 366 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 326 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 295 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 294 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 293 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 173 user: 'root'
140301 12:23:56 InnoDB: Starting shutdown...
140301 12:23:57 InnoDB: Shutdown completed; log sequence number 10377088
140301 12:23:57 [Note] /usr/sbin/mysqld: Shutdown complete
140301 12:28:22 [Warning] Using unique option prefix myisam-recover instead of myisam-recover-options is deprecated and will be removed in a future release. Please use the full name instead.
140301 12:28:22 [Note] Plugin 'FEDERATED' is disabled.
140301 12:28:22 InnoDB: The InnoDB memory heap is disabled
140301 12:28:22 InnoDB: Mutexes and rw_locks use GCC atomic builtins
140301 12:28:22 InnoDB: Compressed tables use zlib 1.2.3.4
140301 12:28:22 InnoDB: Initializing buffer pool, size = 128.0M
140301 12:28:22 InnoDB: Completed initialization of buffer pool
140301 12:28:22 InnoDB: highest supported file format is Barracuda.
140301 12:28:22 InnoDB: Waiting for the background threads to start
140301 12:28:23 InnoDB: 5.5.35 started; log sequence number 10377088
140301 12:28:23 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
140301 12:28:23 [Note] - '0.0.0.0' resolves to '0.0.0.0';
140301 12:28:23 [Note] Server socket created on IP: '0.0.0.0'.
140301 12:28:23 [Note] Event Scheduler: Loaded 0 events
140301 12:28:23 [Note] /usr/sbin/mysqld: ready for connections.
Version: '5.5.35-0ubuntu0.12.04.1' socket: '/var/run/mysqld/mysqld.sock' port: 3306 (Ubuntu)
errorlog
Код: 140301 12:23:54 [Note] /usr/sbin/mysqld: Normal shutdown
140301 12:23:54 [Note] Event Scheduler: Purging the queue. 0 events
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 378 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 377 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 376 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 375 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 374 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 366 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 326 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 295 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 294 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 293 user: 'root'
140301 12:23:56 [Warning] /usr/sbin/mysqld: Forcing close of thread 173 user: 'root'
140301 12:23:56 InnoDB: Starting shutdown...
140301 12:23:57 InnoDB: Shutdown completed; log sequence number 10377088
140301 12:23:57 [Note] /usr/sbin/mysqld: Shutdown complete
140301 12:28:22 [Warning] Using unique option prefix myisam-recover instead of myisam-recover-options is deprecated and will be removed in a future release. Please use the full name instead.
140301 12:28:22 [Note] Plugin 'FEDERATED' is disabled.
140301 12:28:22 InnoDB: The InnoDB memory heap is disabled
140301 12:28:22 InnoDB: Mutexes and rw_locks use GCC atomic builtins
140301 12:28:22 InnoDB: Compressed tables use zlib 1.2.3.4
140301 12:28:22 InnoDB: Initializing buffer pool, size = 128.0M
140301 12:28:22 InnoDB: Completed initialization of buffer pool
140301 12:28:22 InnoDB: highest supported file format is Barracuda.
140301 12:28:22 InnoDB: Waiting for the background threads to start
140301 12:28:23 InnoDB: 5.5.35 started; log sequence number 10377088
140301 12:28:23 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
140301 12:28:23 [Note] - '0.0.0.0' resolves to '0.0.0.0';
140301 12:28:23 [Note] Server socket created on IP: '0.0.0.0'.
140301 12:28:23 [Note] Event Scheduler: Loaded 0 events
140301 12:28:23 [Note] /usr/sbin/mysqld: ready for connections.
Version: '5.5.35-0ubuntu0.12.04.1' socket: '/var/run/mysqld/mysqld.sock' port: 3306 (Ubuntu)
По моему ничего сверхъестественного.
Уже не знаю что думать
Покупайте сборку или используйте только проверенные тимы.
Сообщений: 104
Тем: 17
Зарегистрирован: Oct 2013
Репутация:
52
Asmodiel Написал:Покупайте сборку или используйте только проверенные тимы.
Так я её и купил :redlol::redlol:
Ну хорошо, суть что вы мне хотели донести я понял
Спасибо.
Сообщений: 2,036
Тем: 37
Зарегистрирован: Jun 2011
Репутация:
10,597
desolator Написал:Так я её и купил :redlol::redlol:
Ну хорошо, суть что вы мне хотели донести я понял
Спасибо.
Берите aCis либо Lucera2 и будет Вам счастье.
P.S. Lovely - какашка динозавра.
Сообщений: 577
Тем: 41
Зарегистрирован: Nov 2012
Репутация:
1,886
Скоро "ловели" будет как "фрозены".
Все советуют её, а вот зачем не пойму.
Dеmon Написал:Берите aCis либо Lucera2 и будет Вам счастье.
P.S. Lovely - какашка динозавра. +++
Сообщений: 2,036
Тем: 37
Зарегистрирован: Jun 2011
Репутация:
10,597
Main Написал:Скоро "ловели" будет как "фрозены".
Все советуют её, а вот зачем не пойму.
Ну для школопроектов-однодневок нормально, там другое и не нужно.
Заметил, что нормальных проектов становится всё меньше и меньше, рунет забит каким-то дерьмом вроде "пэвэпэ сервир с унекальными дапалнениями х99999999". Печально, однако...
|