InitialStepsWithMarauroa

来自gamedev
imported>2017060610292020年4月26日 (日) 20:46的版本 Create a MySQL database and user
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转到导航 跳转到搜索



好了,您已经成功编译了Marauroa,接下来要做什么呢?

  BUILD SUCCESSFUL
  Total time: 3 seconds

非常好! 基本上,如果你已经建立了一个Marauroa服务器,它必须是因为你想要自己玩一下服务器,或者因为你想运行自己的游戏服务器,或者因为你是一个想要开发自己游戏的开发者。

这不是一个跑 Stendhal Server 的教程. 你不需要单独运行marauroa来跑Stendhal Server, 请移步到 Host a Stendhal Server .

如果以上都不适用,你可能会寻找http://arianne.sourceforge.net来代替。

Configuration[编辑]

Create a MySQL database and user[编辑]

运行sql客户机(在windows noinstall package的bin/mysql.exe)。 用所需的值替换<user>和<password>,并将以下内容粘贴到打开的提示符中:

    create database marauroa;
    grant all on marauroa.* to <user>@localhost identified by '<password>';

它应该产生类似这样的输出:

  Welcome to the MySQL monitor.  Commands end with ; or \g.
  Your MySQL connection id is 1 to server version: 4.1.10
  
  Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
  
  mysql> create database marauroa;
  Query OK, 1 row affected (0.03 sec)
  
  mysql> grant all on marauroa.* to stendhal_user@localhost identified by 'stendhal_passwd';
  Query OK, 0 rows affected (0.00 sec)
  
  mysql>

Create server.ini file[编辑]

If you don't have a game yet, see Marauroa Tutorial for how to generate a minimum server.ini and how to write the two required classes.

To create the marauroa.ini file you need to can write it by hand, copy from another place or use your game application to generate it.
Please refer to your game documentation about how to write it.

Stendhal Documentation: VisualGuideToInstallingStendhalStep5

Running[编辑]

Once you have it configured, just run the server by executing:

  java -classpath .;mysql-connector-java-3.0.7-stable-bin.jar;log4j.jar;marauroa.jar marauroa.server.marauroad -c <server.ini>

NOTE: On Unix use : instead of ; to define the classpath.

NOTE: You may change what it is logged by default, so you need to edit the log4j.properties file. For example:

# Set root logger level to DEBUG and its only appender to A1.
log4j.rootLogger=INFO, Console, File

# Paste all logger entries with a threshold of WARN to the console
log4j.appender.Console=org.apache.log4j.ConsoleAppender
log4j.appender.Console.layout=org.apache.log4j.PatternLayout
log4j.appender.Console.layout.ConversionPattern=%-4r %-5p %c %x - %m%n

log4j.appender.File=org.apache.log4j.DailyRollingFileAppender
log4j.appender.File.File=server.log
log4j.appender.File.layout=org.apache.log4j.PatternLayout
log4j.appender.File.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n

# Disabled debug messages for stendhal...some 10 thousand logs each minute is
# way too much
log4j.logger.marauroa.server.game.RPServerManager=WARN

Make sure that you have the MySQL server running too. Marauroa will build all the needed table structure for itself.

This will start Marauroa.

Now refer to game documentation about how to start the game server and how to create accounts and so on. {{#breadcrumbs: Marauroa | Using | Initial Steps}}