public void init(String[] arguments) {
// Here open the configuration files, create the trace file, create the ServerSockets, the Threads
if (arguments.length!=1) {
throw new RuntimeException("The minimum number of argument is 1 (the directory).");
}
main = new Main(arguments);
try {
// bind
main.init();
} catch (Exception ex) {
ex.printStackTrace();