Results 1 to 15 of 28
Thread: Found Unregistered Ident !
Hybrid View
-
23-04-2012, 08:30 #1
-= TeamSpeak User =-
- Join Date
- Aug 2011
- Posts
- 6
Found Unregistered Ident !
Please read post 6 > This is the answer and the fix.
http://forum.teamspeak.com/showthrea...144#post313144
I've only just updated my two server installations with the latest version 3.0.5.
And in both installations I get the message:
2012-04-23 07:09:22.676078 | WARNING | Variable | | loadFromDatabase () found identical unregistered: virtualserver_antiflood_points_needed_command_stop
2012-04-23 07:09:22.676134 | WARNING | Variable | | loadFromDatabase () found identical unregistered: virtualserver_antiflood_points_needed_ip_ban
No matter how often the server to run through or ts3server_minimal_runscript.sh ts3server_startscript.sh.
This, of course, I have made before:
! MySQL users, please your old table and extend server_properties the "value" field from VARCHAR (255) to VARCHAR (2048)
greetingLast edited by dante696; 29-06-2012 at 09:43.
-
23-04-2012, 08:33 #2
-= TeamSpeak Team =-
- Join Date
- Jun 2002
- Location
- Krün / Germany
- Posts
- 1,965
thats not a BUG... just ignore it.
Last edited by R. Ludwig; 23-04-2012 at 10:14.
-
23-04-2012, 08:37 #3
-= TeamSpeak User =-
- Join Date
- Aug 2011
- Posts
- 6
Ok!
But why then is there a warning.
That's a little confusing ?
-
23-04-2012, 08:40 #4
-= TeamSpeak Team =-
- Join Date
- Jun 2002
- Location
- Krün / Germany
- Posts
- 1,965
the changelog could give you a hint

if you change the server properties, this warning wont be displayed with next server start.Last edited by R. Ludwig; 23-04-2012 at 10:13.
-
23-04-2012, 10:00 #5
-= TeamSpeak User =-
- Join Date
- Aug 2011
- Posts
- 6
While I find nothing, but OK.
And I've started by the server several times and always got this error.
But before the update I had no such defects.
-
23-04-2012, 10:16 #6
-= TeamSpeak Team =-
- Join Date
- Jun 2008
- Posts
- 7,764
You have to edit your virtual server(s) once and the entry won't appear again.
just right-click your server and open the edit dialog. Now go into flood settings asan exmaple and change a number and now press apply.
You can change that value back to it' original afterwards.---------------------------------------------------------
Please don't send me private support questions.
They belong into the forum and maybe other users have these questions/problems too.
TeamSpeak FAQ || What should i report, when i open a client thread? || Report and upload your Crashdump here
NPL License (Registration)
-
29-05-2012, 03:41 #7
-= TeamSpeak User =-
- Join Date
- Sep 2011
- Posts
- 3
You're right it isn't a BUG, it's a ridiculous mistake on the part of Teamspeak that then wasn't handled properly.
That's really an unacceptable answer for the hosting providers of the world with several hundred servers on a machine, and thousands of serves in total. The warnings fill up our logs to the point they are almost useless since the messages keep repeating. It is not just on initial load a single time, but over and over again.
It is impossible for us to modify thousands of servers manually to make this "warning" go away. Care to provide the labor to click through thousands of servers manually for us to fix this now?
There were better solutions to this situation than simply "ignoring" it. This is created because Teamspeak didn't program the server correctly in the first place according to the published documentation spec in the 3.0.2 release. Now going forward this is going to be present until every server is eventually modified. I'm sure the programmer can deliver a more elegant fix. Accepting both ident names is not that complicated, I'm sure. Just deprecate the old one and don't make it available from the client, but eliminate the warnings please. This is unacceptable to generate these from a "known and expected condition".
-
29-05-2012, 16:50 #8
-= TeamSpeak Fanatic =-
- Join Date
- Jan 2010
- Location
- Germany
- Posts
- 2,039
If you are a hosting Company you certainly possess the knowledge to fix this elegantly! It's just as simple as running two SQL Queries against the Database and all the Problems are gone! Sure TeamSpeak Systems could've included those Queries as part of a query that gets run when the server is updated, but for some unknown Reason they don't do it, otherwise they'd also include the ALTER TABLE Statements which are sometimes required to be done (and in fact have been with 3.0.5 Server Release).
In any case like I said being a Hosting Company implies having employees some of which are Administrators taking care of the Systems, which should definitely have the knowledge to come up with the obvious and simple Solution below, if not something went very wrong!
Code:UPDATE server_properties SET ident = 'virtualserver_antiflood_points_needed_command_block' WHERE ident = 'virtualserver_antiflood_points_needed_command_stop'; UPDATE server_properties SET ident='virtualserver_antiflood_points_needed_ip_block' WHERE ident = 'virtualserver_antiflood_points_needed_ip_ban';
-
29-05-2012, 18:18 #9
-= TeamSpeak User =-
- Join Date
- Sep 2011
- Posts
- 3
The real point was that using a deprecation process for a command/ident would make this entire process much more seamless, and eliminate issues like this entirely. There's really no reason to hardline remove a command/ident and replace it with another without giving some time for a graceful transition between them by deprecation of the original command/ident. It would allow better transitions between client versions and other third party software people use. And then to generate thousands of warnings on top of it when it is hardline removed is then ridiculous, when it is known it just "broke" every server in existence. Ripping and tearing commands/idents requires the immediate modification and update to other software used, and also causes the existing server backups to also now be rejected unless modified. We are talking about a graceful transition here, is the point. I'm sure it is pretty easy to deprecate an ident (and make it set the new ident value if desired), and leave it in as accepted still for at least one release to allow smooth transition of third party software (control panels, etc) to the newer version also. Just about all software authors I know don't rip and tear complete commands out of their software APIs in a single minor release. I realize this is just the replacement of certain idents, but truly this ended up being a very disruptive minor change both from the original bugged implementation in 3.0.2 to the correction in 3.0.5 regarding changes required to other internal and third party software. It could have been done much more gracefully/elegantly, is the point of my comment, and I hope Teamspeak will start considering this in future releases that make changes to the command/ident API.
-
23-04-2012, 18:36 #10
-= TeamSpeak User =-
- Join Date
- Nov 2010
- Location
- Germany
- Posts
- 11
I Start my servers and in the log this errors/warnings:
where is the error?Code:2012-04-23 17:33:58.334090|INFO |ServerLibPriv | | TeamSpeak 3 Server 3.0.5 (2012-04-23 04:46:12) 2012-04-23 17:33:58.336601|INFO |DatabaseQuery | | dbPlugin name: MySQL plugin, (c)TeamSpeak Systems GmbH 2012-04-23 17:33:58.336698|INFO |DatabaseQuery | | dbPlugin version: 1 2012-04-23 17:33:58.652711|INFO |Accounting | | Your license was updated by the licensing server 2012-04-23 17:33:58.672825|INFO |Accounting | | Licensing Information 2012-04-23 17:33:58.672874|INFO |Accounting | | type : Non-profit 2012-04-23 17:33:58.672941|INFO |Accounting | | starting date : Mon Mar 14 00:00:00 2011 2012-04-23 17:33:58.672976|INFO |Accounting | | ending date : Thu Mar 15 00:00:00 2012 2012-04-23 17:33:58.673006|INFO |Accounting | | max virtualservers: 10 2012-04-23 17:33:58.673034|INFO |Accounting | | max slots : 512 2012-04-23 17:33:58.689431|INFO |FileManager | | listening on ***:30033 2012-04-23 17:33:58.723011|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:33:58.723134|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:33:58.811530|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:33:58.811587|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:33:58.877077|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:33:58.877132|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:33:58.950890|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:33:58.950948|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:33:59.031376|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:33:59.031433|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:33:59.104865|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:33:59.104926|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:33:59.223214|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:33:59.223271|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:33:59.312099|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:33:59.312154|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:33:59.574052|INFO |CIDRManager | | updated query_ip_blacklist ips: ***** 2012-04-23 17:33:59.574143|INFO |CIDRManager | | updated query_ip_whitelist ips: 127.0.0.1, **** 2012-04-23 17:33:59.574568|INFO |Query | | listening on ****:10011 2012-04-23 17:33:59.778139|INFO | | | License expired, but there is a new one available.. retrieving 2012-04-23 17:33:59.898411|INFO |Accounting | | Your license was updated by the licensing server 2012-04-23 17:34:00.104062|INFO |Accounting | | Licensing Information 2012-04-23 17:34:00.104179|INFO |Accounting | | type : Non-profit 2012-04-23 17:34:00.104224|INFO |Accounting | | starting date : Tue Mar 6 00:00:00 2012 2012-04-23 17:34:00.104265|INFO |Accounting | | ending date : Sat Sep 15 00:00:00 2012 2012-04-23 17:34:00.104294|INFO |Accounting | | max virtualservers: 10 2012-04-23 17:34:00.104321|INFO |Accounting | | max slots : 512 2012-04-23 17:34:06.847170|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:34:06.847311|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:34:06.848112|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:34:06.848183|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:34:06.848982|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:34:06.849051|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:34:06.849971|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:34:06.850045|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:34:06.850837|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:34:06.850931|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:34:06.851757|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:34:06.851825|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:34:06.852630|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:34:06.852706|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop 2012-04-23 17:34:06.853896|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban 2012-04-23 17:34:06.853983|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
My Tables in serverproperties is updated
-
23-04-2012, 20:29 #11
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- UK
- Posts
- 431
Thanks for the link SilentStorm, because my server started ok after the upgrade I didn't bother checking the logs, but they did have one instance of each warning. Following the instructions in your link have stopped them appearing
-
23-04-2012, 20:42 #12
-= TeamSpeak User =-
- Join Date
- Nov 2010
- Location
- Germany
- Posts
- 11
thx silent is fixxed
-
25-04-2012, 10:15 #13
-= TeamSpeak Team =-
- Join Date
- Jun 2008
- Posts
- 7,764
All threads starting with Benjamin_Price got moved into this thread.
---------------------------------------------------------
Please don't send me private support questions.
They belong into the forum and maybe other users have these questions/problems too.
TeamSpeak FAQ || What should i report, when i open a client thread? || Report and upload your Crashdump here
NPL License (Registration)
-
27-04-2012, 09:53 #14
-= TeamSpeak User =-
- Join Date
- Jan 2011
- Posts
- 14
Folks I am sure some of you have figured this out but do not forget if you have multi VS like I do you have to edit each one.
-
23-04-2012, 19:47 #15
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- germany
- Posts
- 56
same here:
2012-04-23 10:47:01.832301|INFO |ServerLibPriv | | TeamSpeak 3 Server 3.0.5 (2012-04-23 04:46:12)
2012-04-23 10:47:01.832641|INFO |DatabaseQuery | | dbPlugin name: SQLite3 plugin, Version 2, (c)TeamSpeak Systems GmbH
2012-04-23 10:47:01.832674|INFO |DatabaseQuery | | dbPlugin version: 3.7.3
2012-04-23 10:47:01.832918|INFO |DatabaseQuery | | checking database integrity (may take a while)
2012-04-23 10:47:02.579685|INFO |Accounting | | Licensing Information
2012-04-23 10:47:02.579744|INFO |Accounting | | type : Non-profit
2012-04-23 10:47:02.579788|INFO |Accounting | | starting date : Mon Dec 19 00:00:00 2011
2012-04-23 10:47:02.579808|INFO |Accounting | | ending date : Sat Dec 22 00:00:00 2012
2012-04-23 10:47:02.579824|INFO |Accounting | | max virtualservers: 10
2012-04-23 10:47:02.579839|INFO |Accounting | | max slots : 512
2012-04-23 10:47:02.596463|INFO |FileManager | | listening on 0.0.0.0:30033
2012-04-23 10:47:02.607290|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 10:47:02.607317|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 10:47:02.720650|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 10:47:02.720677|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 10:47:02.776106|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 10:47:02.776139|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 10:47:02.813912|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 10:47:02.813939|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 10:47:02.873556|INFO |CIDRManager | | updated query_ip_whitelist ips: 127.0.0.1, 85.25.120.233,
2012-04-23 10:47:02.874119|INFO |Query | | listening on 0.0.0.0:10011
2012-04-23 18:33:29.968331|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:33:29.968387|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:33:29.969007|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:33:29.969035|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:33:29.969585|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:33:29.969613|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:33:29.970193|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:33:29.970221|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:33:40.832548|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:33:40.832601|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:33:40.833147|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:33:40.833174|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:33:40.833731|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:33:40.833759|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:33:40.834264|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:33:40.834329|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:34:03.351475|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:34:03.351526|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:34:03.352070|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:34:03.352100|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:34:03.352624|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:34:03.352652|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:34:03.353191|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:34:03.353219|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:43:08.647725|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:43:08.647791|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:43:08.648339|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:43:08.648366|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:43:08.648892|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:43:08.648921|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:43:08.649417|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:43:08.649442|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:43:16.856614|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:43:16.856675|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:43:16.857260|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:43:16.857288|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:43:16.857815|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:43:16.857841|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
2012-04-23 18:43:16.858363|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_command_stop
2012-04-23 18:43:16.858419|WARNING |Variables | | loadFromDatabase() found unregistered ident: virtualserver_antiflood_points_needed_ip_ban
server works...but why this warnings?
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Unregistered To Admin
By DRGN.Skeeter in forum [TeamSpeak 2] Server SupportReplies: 1Last Post: 30-10-2006, 13:21 -
Unregistered users
By thezoo in forum [TeamSpeak 2] Server SupportReplies: 2Last Post: 28-06-2004, 11:57


Reply With Quote
