Difference between revisions of "Common Errors"

Line 1: Line 1:
== Too many open files (Linux) ==
+
== Windows ==
 +
=== Form of the specified string is not suitable for e-mail address ===
 +
This is caused by an invalid configuration in IIS.
 +
# Log in to your server's remote desktop.
 +
# Go to Start > Administrative Tools > IIS Manager.
 +
# Select the server node on the left.
 +
# Double click on the "SMTP E-mail" icon.
 +
: Set E-mail address blank
 +
: Check Deliver e-mail to SMTP server
 +
: Set SMTP Server blank.
 +
: Use localhost unchecked
 +
: Port 25
 +
: Autentication Settings: Not required.
 +
 
 +
== Linux ==
 +
=== Too many open files ===
 
Execute the following commands and you will see a certain limit set for the number of open files.
 
Execute the following commands and you will see a certain limit set for the number of open files.
  
Line 18: Line 33:
 
'''If your game servers have the same error message you will have to do the same steps for tcagame '''
 
'''If your game servers have the same error message you will have to do the same steps for tcagame '''
  
== Login form is not loaded correctly (Linux) ==
+
=== Login form is not loaded correctly ===
 
This can happen when you are missing some dependencies. The mono installer should install them automatically but if it didn't you can check for missing dependencies with this command. Install them according to your distro:
 
This can happen when you are missing some dependencies. The mono installer should install them automatically but if it didn't you can check for missing dependencies with this command. Install them according to your distro:
 
  ldd /opt/mono-2.10.2/lib/libgdiplus.so
 
  ldd /opt/mono-2.10.2/lib/libgdiplus.so
Line 27: Line 42:
 
After installing the missing dependencies restart your monitor:
 
After installing the missing dependencies restart your monitor:
 
  /home/tcadmin/Monitor/monitor-service restart
 
  /home/tcadmin/Monitor/monitor-service restart
 
== Form of the specified string is not suitable for e-mail address (Windows) ==
 
This is caused by an invalid configuration in IIS.
 
# Log in to your server's remote desktop.
 
# Go to Start > Administrative Tools > IIS Manager.
 
# Select the server node on the left.
 
# Double click on the "SMTP E-mail" icon.
 
: Set E-mail address blank
 
: Check Deliver e-mail to SMTP server
 
: Set SMTP Server blank.
 
: Use localhost unchecked
 
: Port 25
 
: Autentication Settings: Not required.
 

Revision as of 14:55, 29 June 2011

Windows

Form of the specified string is not suitable for e-mail address

This is caused by an invalid configuration in IIS.

  1. Log in to your server's remote desktop.
  2. Go to Start > Administrative Tools > IIS Manager.
  3. Select the server node on the left.
  4. Double click on the "SMTP E-mail" icon.
Set E-mail address blank
Check Deliver e-mail to SMTP server
Set SMTP Server blank.
Use localhost unchecked
Port 25
Autentication Settings: Not required.

Linux

Too many open files

Execute the following commands and you will see a certain limit set for the number of open files.

su tcadmin
ulimit -n

To increase this limit add the following lines to the end of /etc/security/limits.conf

tcadmin soft nofile 10240
tcadmin hard nofile 10240

To see if the new limits are applied execute the following commands.

su tcadmin
ulimit -Hn
ulimit -Sn

Restart the monitor for the changes to take effect.

If your game servers have the same error message you will have to do the same steps for tcagame

Login form is not loaded correctly

This can happen when you are missing some dependencies. The mono installer should install them automatically but if it didn't you can check for missing dependencies with this command. Install them according to your distro:

ldd /opt/mono-2.10.2/lib/libgdiplus.so

On Debian this command should automatically install missing dependencies after installing mono:

apt-get install -f

After installing the missing dependencies restart your monitor:

/home/tcadmin/Monitor/monitor-service restart
Retrieved from "https://help.tcadmin.com/index.php?title=Common_Errors&oldid=385"