antiblock
https://arwen2.global/
  • Chatbox

    Did you check out our Discord? https://discord.gg/FFdvMjk9xA
    You don't have permission to chat.
    Load More
  • 0
Sign in to follow this  
Luffy

Erro Syserr Ajuda

Question


Syserr Ch

SYSERR: Dec  7 22:35:29.65173 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
SYSERR: Dec  7 23:12:36.314159 :: pid_init: 
Start of pid: 866

Syserr Db

SYSERR: Dec  7 22:35:29.74947 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
SYSERR: Dec  7 22:35:29.278835 :: pid_deinit: 
End of pid

SYSERR: Dec  7 23:12:25.652406 :: pid_init: 
Start of pid: 860

SYSERR: Dec  7 23:12:25.653742 :: Start: TABLE_POSTFIX not configured use default
SYSERR: Dec  7 23:12:30.433471 :: DirectQuery: AsyncSQL::DirectQuery : mysql_query error: Table 'common.priv_settings' doesn't exist
query: DELETE FROM priv_settings WHERE value <= 0 OR duration <= NOW();
SYSERR: Dec  7 23:12:30.500164 :: DirectQuery: AsyncSQL::DirectQuery : mysql_query error: Table 'common.priv_settings' doesn't exist
query: SELECT priv_type, id, type, value, UNIX_TIMESTAMP(duration) FROM priv_settings
SYSERR: Dec  7 23:12:31.653889 :: Load:  DirectQuery failed(SELECT IP_FROM, IP_TO, COUNTRY_NAME FROM iptocountry)

 

Share this post


Link to post
Share on other sites

19 answers to this question

  • 0

esse syserr da db esta a dizer que nao tens a table 'priv_settings' da base de dados do 'common'

Share this post


Link to post
Share on other sites
antiblock
Cyphriun
  • 0
19 minutos atrás, THEGAMER disse:

esse syserr da db esta a dizer que nao tens a table 'priv_settings' da base de dados do 'common'

Tem alguma query para eu adicionar a table priv_settings?

Share this post


Link to post
Share on other sites
  • 0
1 minuto atrás, Luffy disse:

Tem alguma query para eu adicionar a table priv_settings?

eu no meu servidor nao tenho essa tabela mas ve se as tuas server files tem algo por ai ou pesquisa por essa tabela deve haver algo por ai 

Share this post


Link to post
Share on other sites
  • 0

tu adicionaste algum sistema de drop rate nao foi?

Share this post


Link to post
Share on other sites
  • 0
8 minutos atrás, THEGAMER disse:

eu no meu servidor nao tenho essa tabela mas ve se as tuas server files tem algo por ai ou pesquisa por essa tabela deve haver algo por ai 

no /var/db/mysql/common tem apenas esse arquivo priv_settings.frm falta os MYD e MYI

Eu poderia colocar de outro servidor?

4 minutos atrás, THEGAMER disse:

tu adicionaste algum sistema de drop rate nao foi?

Na vdd ainda não adicionei nd e um sf que gostei e queria testar para ver se vale a pena para iniciar um projeto

Share this post


Link to post
Share on other sites
  • 0
4 minutos atrás, Luffy disse:

no /var/db/mysql/common tem apenas esse arquivo priv_settings.frm falta os MYD e MYI

Eu poderia colocar de outro servidor?

Na vdd ainda não adicionei nd e um sf que gostei e queria testar para ver se vale a pena para iniciar um projeto

eu penso que seja um sistema que tenham metido, eu encontrei este topico do elitepvpers e pode ser que isso te ajude porque penso que isso seja o um sistema de drop rate que vi .

nas servers files que sacas-te ve se te esqueceste de nada da db ou alguma query que esteja por ai.

Share this post


Link to post
Share on other sites
  • 0
49 minutos atrás, THEGAMER disse:

eu penso que seja um sistema que tenham metido, eu encontrei este topico do elitepvpers e pode ser que isso te ajude porque penso que isso seja o um sistema de drop rate que vi .

nas servers files que sacas-te ve se te esqueceste de nada da db ou alguma query que esteja por ai.

é possivel eliminar priv_settings.frm vejo que tem mts server files que não tem essa table

Edited by Luffy (see edit history)

Share this post


Link to post
Share on other sites
  • 0
5 minutos atrás, Luffy disse:

é possivel eliminar priv_settings.frm vejo que tem mts server files que não tem essa table

sim podes eliminar a vontade mas o erro vai permanecer porque na source tens uma mysql query que precisa dessa tabela.

faz na source do server uma pesquisa global por esta query.

DELETE FROM priv_settings WHERE value <= 0 OR duration <= NOW();

e verifica se a query nao esta ligada a um sistema provavelmente ate dá para desativar no 'service.h' o define se for um sistema implementado.

Share this post


Link to post
Share on other sites
  • 0
2 horas atrás, THEGAMER disse:

eu penso que seja um sistema que tenham metido, eu encontrei este topico do elitepvpers e pode ser que isso te ajude porque penso que isso seja o um sistema de drop rate que vi .

nas servers files que sacas-te ve se te esqueceste de nada da db ou alguma query que esteja por ai.

Tava olhando esse tutorial e esta implementado na source usei a query para criar a priv_settings

Query

CREATE TABLE `priv_settings` (
`priv_type`  enum('PLAYER','GUILD','EMPIRE') NOT NULL DEFAULT 'EMPIRE' COMMENT 'GUILD and PLAYER are untested.' ,
`id`  int UNSIGNED NOT NULL DEFAULT 0 COMMENT 'this is for empire_id, player_id or guild_id' ,
`type`  int UNSIGNED NOT NULL DEFAULT 4 COMMENT '1:item_drop, 2:gold_drop, 3:gold10_drop, 4:exp (1~4)' ,
`value`  int NOT NULL DEFAULT 0 COMMENT '0~1000%' ,
`duration`  datetime NOT NULL DEFAULT 0 ,
PRIMARY KEY (`priv_type`, `id`, `type`)
)
;

Depois adicionei

INSERT INTO `priv_settings` VALUES ('EMPIRE', '0', '1', '200', '2014-08-07 14:26:03');
INSERT INTO `priv_settings` VALUES ('EMPIRE', '0', '2', '66', '2014-08-07 14:26:03');
INSERT INTO `priv_settings` VALUES ('EMPIRE', '0', '3', '1', '2014-08-07 14:26:03');
INSERT INTO `priv_settings` VALUES ('EMPIRE', '0', '4', '15', '2014-08-07 14:26:03');

Porem servidor ainda não entra no cliente

Db erro sem nem ligar o servidor

Citar

SYSERR: Dec  8 00:45:54.746474 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
SYSERR: Dec  8 00:45:54.803131 :: pid_deinit: 
End of pid

Ch1 erro sem nem ligar servidor

Citar

SYSERR: Dec  8 00:45:54.742663 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
 

Depois de ligar

Ch 1

SYSERR: Dec  8 00:45:54.742663 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
SYSERR: Dec  8 15:55:38.235830 :: pid_init: 
Start of pid: 1200

SYSERR: Dec  8 15:56:29.756971 :: ReadVnumMapper: dragon_soul_table.txt need VnumMapper.
SYSERR: Dec  8 15:56:29.757055 :: Boot: cannot load DragonSoulTable: locale/portugal/dragon_soul_table.txt
SYSERR: Dec  8 15:56:31.981166 :: locale_find: LOCALE_ERROR: "%s의 %s이 %d%% 증가했습니다!";
SYSERR: Dec  8 15:56:31.984825 :: locale_find: LOCALE_ERROR: "%s의 %s이 %d%% 증가했습니다!";
SYSERR: Dec  8 15:56:31.986244 :: locale_find: LOCALE_ERROR: "%s의 %s이 %d%% 증가했습니다!";
SYSERR: Dec  8 15:56:31.987569 :: locale_find: LOCALE_ERROR: "%s의 %s이 %d%% 증가했습니다!";
SYSERR: Dec  8 15:56:31.990260 :: heart_idle: losing 50 seconds. (lag occured)

Db

SYSERR: Dec  8 00:45:54.746474 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
SYSERR: Dec  8 00:45:54.803131 :: pid_deinit: 
End of pid

SYSERR: Dec  8 15:55:27.953844 :: pid_init: 
Start of pid: 1194

SYSERR: Dec  8 15:55:27.954602 :: Start: TABLE_POSTFIX not configured use default
SYSERR: Dec  8 15:55:29.10624 :: Load:  DirectQuery failed(SELECT IP_FROM, IP_TO, COUNTRY_NAME FROM iptocountry)

Print Server ligando

https://uploaddeimagens.com.br/imagens/46BZvPA

Print Server no PS

https://uploaddeimagens.com.br/imagens/XEnpoNE

Share this post


Link to post
Share on other sites
  • 0
1 hora atrás, Luffy disse:

Tava olhando esse tutorial e esta implementado na source usei a query para criar a priv_settings

Query


CREATE TABLE `priv_settings` (
`priv_type`  enum('PLAYER','GUILD','EMPIRE') NOT NULL DEFAULT 'EMPIRE' COMMENT 'GUILD and PLAYER are untested.' ,
`id`  int UNSIGNED NOT NULL DEFAULT 0 COMMENT 'this is for empire_id, player_id or guild_id' ,
`type`  int UNSIGNED NOT NULL DEFAULT 4 COMMENT '1:item_drop, 2:gold_drop, 3:gold10_drop, 4:exp (1~4)' ,
`value`  int NOT NULL DEFAULT 0 COMMENT '0~1000%' ,
`duration`  datetime NOT NULL DEFAULT 0 ,
PRIMARY KEY (`priv_type`, `id`, `type`)
)
;

Depois adicionei


INSERT INTO `priv_settings` VALUES ('EMPIRE', '0', '1', '200', '2014-08-07 14:26:03');
INSERT INTO `priv_settings` VALUES ('EMPIRE', '0', '2', '66', '2014-08-07 14:26:03');
INSERT INTO `priv_settings` VALUES ('EMPIRE', '0', '3', '1', '2014-08-07 14:26:03');
INSERT INTO `priv_settings` VALUES ('EMPIRE', '0', '4', '15', '2014-08-07 14:26:03');

Porem servidor ainda não entra no cliente

Db erro sem nem ligar o servidor

Ch1 erro sem nem ligar servidor

Depois de ligar

Ch 1


SYSERR: Dec  8 00:45:54.742663 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
SYSERR: Dec  8 15:55:38.235830 :: pid_init: 
Start of pid: 1200

SYSERR: Dec  8 15:56:29.756971 :: ReadVnumMapper: dragon_soul_table.txt need VnumMapper.
SYSERR: Dec  8 15:56:29.757055 :: Boot: cannot load DragonSoulTable: locale/portugal/dragon_soul_table.txt
SYSERR: Dec  8 15:56:31.981166 :: locale_find: LOCALE_ERROR: "%s의 %s이 %d%% 증가했습니다!";
SYSERR: Dec  8 15:56:31.984825 :: locale_find: LOCALE_ERROR: "%s의 %s이 %d%% 증가했습니다!";
SYSERR: Dec  8 15:56:31.986244 :: locale_find: LOCALE_ERROR: "%s의 %s이 %d%% 증가했습니다!";
SYSERR: Dec  8 15:56:31.987569 :: locale_find: LOCALE_ERROR: "%s의 %s이 %d%% 증가했습니다!";
SYSERR: Dec  8 15:56:31.990260 :: heart_idle: losing 50 seconds. (lag occured)

Db


SYSERR: Dec  8 00:45:54.746474 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
SYSERR: Dec  8 00:45:54.803131 :: pid_deinit: 
End of pid

SYSERR: Dec  8 15:55:27.953844 :: pid_init: 
Start of pid: 1194

SYSERR: Dec  8 15:55:27.954602 :: Start: TABLE_POSTFIX not configured use default
SYSERR: Dec  8 15:55:29.10624 :: Load:  DirectQuery failed(SELECT IP_FROM, IP_TO, COUNTRY_NAME FROM iptocountry)

Print Server ligando

https://uploaddeimagens.com.br/imagens/46BZvPA

Print Server no PS

https://uploaddeimagens.com.br/imagens/XEnpoNE

erro que tens ai do ch1 ele nao tem o ficheiro dragon_soul_table.txt e no erro da db tambem parece que nao tens a tabela do iptocountry.

e quais servers files que estas a usar elas parecem terem muito problema secalhar mais vale usares umas boas e tiras o dessa os sistemas ou o que for dessas.

Share this post


Link to post
Share on other sites
  • 0
7 minutos atrás, THEGAMER disse:

erro que tens ai do ch1 ele nao tem o ficheiro dragon_soul_table.txt e no erro da db tambem parece que nao tens a tabela do iptocountry.

e quais servers files que estas a usar elas parecem terem muito problema secalhar mais vale usares umas boas e tiras o dessa os sistemas ou o que for dessas.

ficheiro dragon_soul_table.txt esta limpo 

tem como me ajudar a resolver quero testa a sf

https://cyber-gamers.org/topic/50969-serverfiles-metin2/

Share this post


Link to post
Share on other sites
  • 0
7 minutos atrás, Luffy disse:

ficheiro dragon_soul_table.txt esta limpo 

tem como me ajudar a resolver quero testa a sf

https://cyber-gamers.org/topic/50969-serverfiles-metin2/

pois tens de arranjar os ficheiro dessa nao sei se e igual aos outros servers ou nao podem ter modificado.

essa server files parece ter muitos problemas tenta pesquisar em outros forums tambem se existe essa mas mais completa porque coisas basicas dessas estao em falta e vai dar muito trabalho a resolver.

Share this post


Link to post
Share on other sites
  • 0
2 minutos atrás, THEGAMER disse:

pois tens de arranjar os ficheiro dessa nao sei se e igual aos outros servers ou nao podem ter modificado.

essa server files parece ter muitos problemas tenta pesquisar em outros forums tambem se existe essa mas mais completa porque coisas basicas dessas estao em falta e vai dar muito trabalho a resolver.

Blz vou dar uma procurada em outros fóruns obg por tentar ajudar 

Share this post


Link to post
Share on other sites
  • 0
Agora, Luffy disse:

Blz vou dar uma procurada em outros fóruns obg por tentar ajudar 

de nada muitas coisas vais arranjar por aqui neste forume outras no google mas eu como te disse existe server files melhores e mais fáceis com tudo completo e suporte.

Share this post


Link to post
Share on other sites
  • 0
6 minutos atrás, THEGAMER disse:

de nada muitas coisas vais arranjar por aqui neste forume outras no google mas eu como te disse existe server files melhores e mais fáceis com tudo completo e suporte.

Vou procurar outras para ver

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this