mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
remove DB step from mumble install, sqlite has been reccommended for a while
This commit is contained in:
parent
7051e06564
commit
4602097399
@ -58,17 +58,7 @@ pip install -r requirements.txt
|
|||||||
|
|
||||||
## Configuring Mumble Server
|
## Configuring Mumble Server
|
||||||
|
|
||||||
The mumble server needs its own database. Open an SQL shell with `mysql -u root -p` and execute the SQL commands to create it:
|
Mumble ships with a configuration file that needs customization. By default, it's located at `/etc/mumble-server.ini`. Open it with your favorite text editor:
|
||||||
|
|
||||||
```sql
|
|
||||||
CREATE DATABASE alliance_mumble CHARACTER SET utf8mb4;
|
|
||||||
```
|
|
||||||
|
|
||||||
```sql
|
|
||||||
GRANT ALL PRIVILEGES ON alliance_mumble . * TO 'allianceserver'@'localhost';
|
|
||||||
```
|
|
||||||
|
|
||||||
Mumble ships with a configuration file that needs customization. By default, it’s located at `/etc/mumble-server.ini`. Open it with your favorite text editor:
|
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
sudo nano /etc/mumble-server.ini
|
sudo nano /etc/mumble-server.ini
|
||||||
@ -79,15 +69,6 @@ We need to enable the ICE authenticator. Edit the following:
|
|||||||
- `icesecretwrite=MY_CLEVER_PASSWORD`, obviously choosing a secure password
|
- `icesecretwrite=MY_CLEVER_PASSWORD`, obviously choosing a secure password
|
||||||
- ensure the line containing `Ice="tcp -h 127.0.0.1 -p 6502"` is uncommented
|
- ensure the line containing `Ice="tcp -h 127.0.0.1 -p 6502"` is uncommented
|
||||||
|
|
||||||
We also want to enable Mumble to use the previously created MySQL / MariaDB database, edit the following:
|
|
||||||
|
|
||||||
- uncomment the database line, and change it to `database=alliance_mumble`
|
|
||||||
- `dbDriver=QMYSQL`
|
|
||||||
- `dbUsername=allianceserver` or whatever you called the Alliance Auth MySQL user
|
|
||||||
- `dbPassword=` that user’s password
|
|
||||||
- `dbPort=3306`
|
|
||||||
- `dbPrefix=murmur_`
|
|
||||||
|
|
||||||
To name your root channel, uncomment and set `registerName=` to whatever cool name you want
|
To name your root channel, uncomment and set `registerName=` to whatever cool name you want
|
||||||
|
|
||||||
Save and close the file.
|
Save and close the file.
|
||||||
@ -98,7 +79,7 @@ To get Mumble superuser account credentials, run the following:
|
|||||||
sudo dpkg-reconfigure mumble-server
|
sudo dpkg-reconfigure mumble-server
|
||||||
```
|
```
|
||||||
|
|
||||||
Set the password to something you’ll remember and write it down. This is your superuser password and later needed to manage ACLs.
|
Set the password to something you'll remember and write it down. This is your superuser password and later needed to manage ACLs.
|
||||||
|
|
||||||
Now restart the server to see the changes reflected.
|
Now restart the server to see the changes reflected.
|
||||||
|
|
||||||
@ -106,7 +87,7 @@ Now restart the server to see the changes reflected.
|
|||||||
sudo service mumble-server restart
|
sudo service mumble-server restart
|
||||||
```
|
```
|
||||||
|
|
||||||
That’s it! Your server is ready to be connected to at example.com:64738
|
That's it! Your server is ready to be connected to at example.com:64738
|
||||||
|
|
||||||
## Configuring Mumble Authenticator
|
## Configuring Mumble Authenticator
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user