Line 47: Line 47:
 
== STEP 3 : Run salt init ==
 
== STEP 3 : Run salt init ==
 
The salt master is installed in cloud.ryzom.com, so all commands must be run on this server.
 
The salt master is installed in cloud.ryzom.com, so all commands must be run on this server.
To init the shard, run:
+
To init the shard, run this command as tools user:
 
<pre>
 
<pre>
sudo sh /home/data/monitoring/salt/files/init_minions.sh SHARDNAME
+
/home/data/monitoring/salt/files/update_minions.sh SHARDNAME
 
</pre>
 
</pre>
 +
 +
* Later if you need to update the minion again, you can access to https://dag.ryzom.com, select Local at top right and run the dag Salting Minion. Enter the name of the Minion and run it

Revision as of 00:28, 12 July 2025

⚠️ This Documentation only applies to Shards to be added to Ryzom network. ⚠️

So no require Database and some ports must be opened to Ryzom Servers.

Up a fully independent shard can probably be done using https://wiki.ryzom.dev/ doc


Requirements to install a shard (for a comfortable use):

STEP 1 : Install Salt Minion

# Ensure keyrings dir exists
mkdir -p /etc/apt/keyrings
# Download public key
curl -fsSL https://packages.broadcom.com/artifactory/api/security/keypair/SaltProjectKey/public | sudo tee /etc/apt/keyrings/salt-archive-keyring.pgp
# Create apt repo target configuration
curl -fsSL https://github.com/saltstack/salt-install-guide/releases/latest/download/salt.sources | sudo tee /etc/apt/sources.list.d/salt.sources
apt install salt-minion
echo "master: cloud.ryzom.com" > /etc/salt/minion
systemctl restart salt-minion
salt-key -A
# If all works correctly, You will show you minion and can accept it
salt '*' test.version

STEP 2 : Configure the Minion

To configure a Minion you need to push the changes into https://gitlab.com/ryzomteam/ryzom-salt.git.

The easiest way is to clone an existing file like ryzom-salt/salt/files/grains/servers/gingo and change the required values.

STEP 3 : Run salt init

The salt master is installed in cloud.ryzom.com, so all commands must be run on this server. To init the shard, run this command as tools user:

/home/data/monitoring/salt/files/update_minions.sh SHARDNAME
Retrieved from "https://en.wiki.ryzom.com/w/index.php?title=Portal:Forge/ShardInstall&oldid=53821"