Difference between revisions of "Configuring Murmur"

From Mumble Wiki
Jump to: navigation, search
(Ini file)
(Ini file: updated for 1.0)
Line 12: Line 12:
 
# Port to bind TCP and UDP sockets to
 
# Port to bind TCP and UDP sockets to
 
port=64738
 
port=64738
 +
 +
# Password to join server
 +
serverpassword=
 +
 +
# Maximum number of concurrent clients allowed.
 +
users=50
 +
 +
# Maximum bandwidth (in bytes per second) clients are allowed
 +
# send speech at.
 +
bandwidth=5000
  
 
# Users hear themselves? (Testmode)
 
# Users hear themselves? (Testmode)
Line 19: Line 29:
 
# murmur.sqlite in default locations.
 
# murmur.sqlite in default locations.
 
database=
 
database=
 
# Password to join server
 
serverpassword=
 
  
 
# How often should commands from the database be checked?
 
# How often should commands from the database be checked?
Line 28: Line 35:
 
commandtime=1
 
commandtime=1
  
# Maximum bandwidth (in bytes per second) clients are allowed
+
# If you wish to use something other than SQLite, you'll need to set the name
# send speech at.
+
# of the database above, and also uncomment the below.
bandwidth=5000
+
#
 +
#dbDriver=QMYSQL
 +
#dbUsername=
 +
#dbPassword=
 +
#dbHost=
 +
#dbPort=
 +
 
 +
# Murmur defaults to not using D-Bus. If you wish to use dbus, please
 +
# specify so here.
 +
#
 +
#dbus=session
 +
 
 +
# Murmur default to logging to murmur.log. If you leave this blank,
 +
# murmur will log to the console (linux) or through message boxes (win32).
 +
logfile=murmur.log
  
# Maximum number of concurrent clients allowed.
+
# To enable public registration, the serverpassword must be blank, and this
users=50
+
# must all be filled out.
 +
# The password here is used to create a registry for the server name; subsequent
 +
# updates will need the same password. Don't loose your password.
 +
# The URL is your own website.
 +
#registerName=Mumble Server
 +
#registerPassword=secret
 +
#registerUrl=http://mumble.sourceforge.net/
  
 
</pre>
 
</pre>

Revision as of 23:39, 7 September 2007

Murmur (A.K.A. mumble server)

Ini file

The server configuration is done through the murmur.ini file. Here's an example file:

# Welcome message sent to users
welcometext="<br />Welcome to this server running <b>Murmur</b>.<br />Enjoy your stay!<br />"

# Port to bind TCP and UDP sockets to
port=64738

# Password to join server
serverpassword=

# Maximum number of concurrent clients allowed.
users=50

# Maximum bandwidth (in bytes per second) clients are allowed
# send speech at.
bandwidth=5000

# Users hear themselves? (Testmode)
loop=false

# Path to database. If blank, will search for
# murmur.sqlite in default locations.
database=

# How often should commands from the database be checked?
# The default is every 10 seconds. Unless you're writing your
# own scripts, don't bother with this.
commandtime=1

# If you wish to use something other than SQLite, you'll need to set the name
# of the database above, and also uncomment the below.
#
#dbDriver=QMYSQL
#dbUsername=
#dbPassword=
#dbHost=
#dbPort=

# Murmur defaults to not using D-Bus. If you wish to use dbus, please
# specify so here.
#
#dbus=session

# Murmur default to logging to murmur.log. If you leave this blank,
# murmur will log to the console (linux) or through message boxes (win32).
logfile=murmur.log

# To enable public registration, the serverpassword must be blank, and this
# must all be filled out.
# The password here is used to create a registry for the server name; subsequent
# updates will need the same password. Don't loose your password.
# The URL is your own website.
#registerName=Mumble Server
#registerPassword=secret
#registerUrl=http://mumble.sourceforge.net/

Is pretty self-explanatory.

Using an external database

It is possible to use an external database instead of SQLite: