StendhalLocalhostServerOnLinux: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
imported>Neoneurone No edit summary |
imported>Immibis MAJOR CHANGES AND BROUGHT UP-TO-DATE |
||
| Line 1: | Line 1: | ||
This guide applies to: |
|||
*Marauroa 2.1 |
|||
*Stendhal 0.64 |
|||
*Stendhal server 0.64 |
|||
= Setting up a localhost server = |
= Setting up a localhost server = |
||
This guide will teach you how to set up a server on your |
This guide will teach you how to set up a server on your Linux machine. The server will be a local one, so people from around the world cannot get to your server. Only those who are directly connected to you via a LAN can connect to this server. The required packages are: |
||
*Marauroa version 2.1 |
|||
*<strike>A compiled version of Marauroa</strike> ''The marauroa jar is included in the stendhal server package now.'' |
|||
*A compiled version of the Stendhal Server |
*A compiled version of the Stendhal Server, version 0.64 |
||
*MySQL |
*MySQL |
||
*GNU/Linux (This may be others, the directions should apply almost exactly to any *nix system) |
*GNU/Linux (This may be others, the directions should apply almost exactly to any *nix system) |
||
*A text editor (doesn't matter) |
*A text editor (doesn't matter) |
||
*Command-line access |
*Command-line access |
||
<!-- This is |
<!-- This is heavily based on the Visual Guide to Setting up a Localhost Server on Windows XP (c) --> |
||
== Getting the materials == |
== Getting the materials == |
||
Download a current version of Stendhal. If you want to use the current release of the |
Download a current version of Stendhal. If you want to use the current release of the Stendhal server, go to http://arianne.sourceforge.net/?arianne_url=games/game_stendhal#downloadsection and download the stendhal-server-X.XX.zip from that page. |
||
If you want to compile it yourself from CVS or the source code provided at the downloads link, then see [[HowToBuildStendhal|How to build Stendhal]] for more info. If you run a Linux System, then you have the necessary tools to get everything else. I recommend ViM for those command-line lovers, and GEdit/Kate for those GUI people. Command line access shouldn't be a problem, ask your system administrator if you do and how to get to it. |
If you want to compile it yourself from CVS or the source code provided at the downloads link, then see [[HowToBuildStendhal|How to build Stendhal]] for more info. If you run a Linux System, then you have the necessary tools to get everything else. I recommend ViM for those command-line lovers, and GEdit/Kate for those GUI people. Command line access shouldn't be a problem, ask your system administrator if you do and how to get to it. |
||
= Setting up MySQL = |
= Setting up MySQL = |
||
After you've installed MySQL, make sure you have a database ready for it |
After you've installed MySQL, make sure you have a database ready for it. |
||
At a command line, type |
|||
<pre> |
|||
mysql -u NAME -p |
mysql -u NAME -p |
||
if you need a password for your server (by default, you don't). |
|||
</pre> |
|||
If you don't need a password, omit the "-u NAME -p" part. |
|||
Where "NAME" is the name of the user to create the database (usaully root is fine), and "DB_NAME" is the name of the database. Remember this name! |
|||
At the prompt that appears, type |
|||
<pre> |
|||
create database marauroa; |
|||
grant all on marauroa.* to 'FOO'@'localhost' identified by 'BAR'; |
|||
</pre> |
|||
FOO and BAR are the username and password to be used by Marauroa, respectively. Replace them with whatever you want. If the user doesn't exist, it will be created. Remember these values (FOO and BAR)! |
|||
= Makin' the cake = |
= Makin' the cake = |
||
| Line 28: | Line 33: | ||
#Create a server directory, to hold everything in a nice, organized way |
#Create a server directory, to hold everything in a nice, organized way |
||
#Unzip your Stendhal Server zip in this server directory |
#Unzip your Stendhal Server zip in this server directory |
||
#Run the |
#Run the Stendhal GenerateINI script, to get a configuration file |
||
#Create a marauroa loading script (in BASH) |
|||
#Have fun |
#Have fun |
||
Now, the first and last shouldn't be to hard. Let's create that directory! |
Now, the first and last shouldn't be to hard. Let's create that directory! |
||
| Line 35: | Line 39: | ||
== Creating the server directory == |
== Creating the server directory == |
||
I'm an organized person when it comes to my computer. Now, sometimes that means I have to go about 3-4 levels deeper into the folder hierarchy to get where I want, but at least I know where my files are for whatever project directory I'm in. Now, you don't have to do this, but I like to keep my computer not so cluttered up with files that I don't know where they belong. Let's create it in your home directory. NOTE: The commands given are for use in the command-line, but you can take the GUI route as well. For some commands, you must run them from the command-line, and I will tell you |
I'm an organized person when it comes to my computer. Now, sometimes that means I have to go about 3-4 levels deeper into the folder hierarchy to get where I want, but at least I know where my files are for whatever project directory I'm in. Now, you don't have to do this, but I like to keep my computer not so cluttered up with files that I don't know where they belong. Let's create it in your home directory. NOTE: The commands given are for use in the command-line, but you can take the GUI route as well. For some commands, you must run them from the command-line, and I will tell you |
||
cd |
|||
<pre> |
|||
| ⚫ | |||
cd $HOME |
|||
| ⚫ | |||
</pre> |
|||
This will create a directory called "stendhal_server" in your home directory. See how easy that was? And how easy to tell what will be in that directory? That's the beauty of organization. |
This will create a directory called "stendhal_server" in your home directory. See how easy that was? And how easy to tell what will be in that directory? That's the beauty of organization. |
||
| Line 45: | Line 47: | ||
*marauroa.jar |
*marauroa.jar |
||
*log4j.properties |
*log4j.properties |
||
*stendhal-server- |
*stendhal-server-0.64.jar |
||
*stendhal-xmlconf- |
*stendhal-xmlconf-0.64.jar |
||
*stendhal-maps- |
*stendhal-maps-0.64.jar |
||
*log4j.jar |
*log4j.jar |
||
*groovy.jar |
*groovy.jar |
||
| Line 58: | Line 60: | ||
== MySQL & Marauroa: Let the 2 be one == |
== MySQL & Marauroa: Let the 2 be one == |
||
Time to configure Marauroa to point to the database you made earlier. In the command-line (not in GUI!), run: |
Time to configure Marauroa to point to the database you made earlier. In the command-line (not in GUI!), run: |
||
| ⚫ | |||
<pre> |
|||
java -cp marauroa.jar marauroa.server.generateini |
|||
</pre> |
|||
When it asks you for... |
When it asks you for... |
||
*database name, |
*database name, use the default (marauroa) |
||
*host, using 'localhost' is fine |
*host, using 'localhost' is fine |
||
*user, use the username you used in giving permissions (FOO) |
*user, use the username you used in giving permissions (FOO) |
||
*password, use the password you used giving permissions (BAR) |
*password, use the password you used giving permissions (BAR) |
||
*port, anything above 1024. 32160 is the deafult for stendhal, but it can be anything above 1024 |
*port, anything above 1024. 32160 is the deafult for stendhal, but it can be anything above 1024 |
||
*game, type "stendhal" (or a number for that, if a |
*game, type "stendhal" (or a number for that, if a multiple-choice menu appears) |
||
*turn time, or how long the server takes to process each event, choose anything above 200, but below 1000. This is in milliseconds |
*turn time, or how long the server takes to process each event, choose anything above 200, but below 1000. This is in milliseconds |
||
*log and stats generation logs, use the default ("./") - it's in the same directory as everything else |
*log and stats generation logs, use the default ("./") - it's in the same directory as everything else |
||
*RSA key size, choose anything smaller than 1024 bits, but greater than 512 (or equal to). This is to make sure that the login information is |
*RSA key size, choose anything smaller than 1024 bits, but greater than 512 (or equal to). This is to make sure that the login information is valid and secure. Like the prompt says, anything greater than 1024 can take a LONG time. But, if you have ~30 minutes to spare (more or less, depending on your comp), you could use the extra security |
||
Well, thats everything! When it's finished, you'll have a new file, " |
Well, thats everything! When it's finished, you'll have a new file, "server.ini". Don't lose it, as it contains the information to get your server up & running, as well as the key to do that. If Marauroa won't start, and nor will your server, check to see if that INI file is there (at the same directory! NOWHERE ELSE!) and if it is, try running the GenerateINI command again; the file could have change with updating the RSA keys |
||
| ⚫ | |||
'''Please note that for the current CVS Head which is Stendhal 0.63''' and marauroa 2.0 there are slightly different class path dependencies. And the generate ini class is case sensitive! So you will need this instead: |
|||
To start Marauroa, simply open the marauroad file in the directory with Marauroa - you may need to make it executable first. |
|||
<pre> |
|||
To make it executable, in a command prompt type |
|||
| ⚫ | |||
chmod +x /path/to/marauroad |
|||
</pre> |
|||
To start it from a command prompt, type |
|||
cd /path/to/ |
|||
| ⚫ | |||
./marauroad |
|||
Well, BASH is pretty much standard in the linux world. If you don't have it, or use a different shell, modify this to your needs: |
|||
where /path/to/ is the path to the directory in which Marauroa is installed. |
|||
<pre> |
|||
#!/bin/bash |
|||
export LOCALCLASSPATH=.:stendhal-server.jar:marauroa.jar:jython.jar:mysql-connector.jar:log4j.jar:simple.jar:groovy.jar |
|||
java -cp "${LOCALCLASSPATH}" marauroa.server.marauroad -c marauroa.ini -l |
|||
</pre> |
|||
Save it as "blah.sh", replacing blah with whatever you want. Make sure it's executeable! |
|||
''Warning! in the line with "LOCALCLASSPATH", is has 'stendhal-server.jar', this is my file, and may not be yours. Do not change the name of the .jar file, just modify that line to include the version after 'server' so it's now 'stendhal-server-0.55.jar' (this is an example, your version may be different!) Ensure that this is the same thing as your .jar file! |
|||
''In the command-line, go to the server directory and type: |
|||
<pre> |
|||
./blah.sh |
|||
</pre> |
|||
Remember to change "blah" to whatever you typed in when saving the file. This will start the server, and produce A LOT of output! |
|||
== Have fun == |
== Have fun == |
||
Well, that's it! Just follow the |
Well, that's it! Just follow the previous steps under ''Starting Marauroa'' to start the server. Pretty easy, huh? Check out the troubleshooting and extras sections for more things to do. |
||
= Extras = |
= Extras = |
||
This is the extras section! Here you have trouble shooting, and hints & tips |
This is the extras section! Here you have trouble shooting, and hints & tips |
||
== Troubleshooting == |
== Troubleshooting == |
||
=== Cannot find data/conf/quest.xml === |
|||
This is fixed in current CVS. You can ignore this error because the quest diary is not finished and in game yet. |
|||
This is an easy one. Take stendhal-server.jar, and open it via a archive manager. Click through the folders until you are at /data/conf. Click on Add (or Import in some cases) and point it to the quests.xml file found in the source code directory of stendhal. This would be stednhal-src/data/conf/quests.xml. Click OK, and close the window. Stop your server, and start it again. You should not get this error again, unless you (accidently, right?) put the wrong file or put it on the wrong directory |
|||
=== Can't login! === |
=== Can't login! === |
||
You try logging in with the account you made when you first got Stendhal. It doesn't work in your server! You see, the MySQL database we created is the user and some other info database, meaning that we have a list of users, while the main server has it's own list. Until access is publicly granted to the MySQL database over there, we must click on Create An Account and choose localhost as the server to join. 2 different accounts. That, well, sucks. |
You try logging in with the account you made when you first got Stendhal. It doesn't work in your server! You see, the MySQL database we created is the user and some other info database, meaning that we have a list of users, while the main server has it's own list. Until access is publicly granted to the MySQL database over there, we must click on Create An Account and choose localhost as the server to join. 2 different accounts. That, well, sucks. |
||
== Server bonuses == |
== Server bonuses == |
||
=== You are the man! === |
=== You are the man! === |
||
Want to be an admin? Now you can! It's easy! First create a file called "admins.list" This is a plain text file, with each name on a seperate line. The name must be EXACT, or it will not work. Then |
Want to be an admin? Now you can! It's easy! First create a file called "admins.list" This is a plain text file, with each name on a seperate line. The name must be EXACT, or it will not work. Then go to the directory where you extracted stendhal-server-X.XX.zip, and browse to /data/conf (create it if it isn't already there). Add admins.list there. |
||
=== Be my wife? And other server extensions === |
=== Be my wife? And other server extensions === |
||
Server extensions. They add much (or little) functionality to a server, that another may not have. If you want to add the Spouse extension, which adds marriage (uh-oh!) to your server, just add these to your marauroa.ini file we created earlier: |
Server extensions. They add much (or little) functionality to a server, that another may not have. If you want to add the Spouse extension, which adds marriage (uh-oh!) to your server, just add these to your marauroa.ini file we created earlier (note that marriage is not built in to the server and doesn't require an extension, but you can use this template for all extensions): |
||
| ⚫ | |||
<pre> |
|||
groovy=games.stendhal.server.scripting.StendhalGroovyRunner |
|||
| ⚫ | |||
http=games.stendhal.server.StendhalHttpServer |
|||
spouse=games.stendhal.server.extension.SpouseExtension |
|||
| ⚫ | |||
spouse=games.stendhal.server.extension.SpouseExtension |
|||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
</pre> |
|||
The first 3 lines (not including the comment) point to specfic classes in your code. Ther server_extension line tells marauroa to load those extensions at start time. After adding these, restart your server. Don't worry - the RSA keys won't break because you added these lines. I personally have 3 server extensions that I wrote as well, 2 of which are broken (help!). To add those, just add this: |
The first 3 lines (not including the comment) point to specfic classes in your code. Ther server_extension line tells marauroa to load those extensions at start time. After adding these, restart your server. Don't worry - the RSA keys won't break because you added these lines. I personally have 3 server extensions that I wrote as well, 2 of which are broken (help!). To add those, just add this: |
||
| ⚫ | |||
<pre> |
|||
| ⚫ | |||
| ⚫ | |||
</pre> |
|||
| ⚫ | |||
= Finished = |
= Finished = |
||