Log in to MySQL:
mysql -u root -p
Create the OpenSim database and user:
CREATE DATABASE opensim;
GRANT ALL PRIVILEGES on opensim.* TO 'opensim'@'localhost' IDENTIFIED BY 'your-password-here';
Back in the shell, create the OpenSim.ini file:
cd bin
cp OpenSim.ini.example OpenSim.ini
cd ..
Open bin/OpenSim.ini in a text editor and change a few things to MySQL:
- Comment out storage_plugin and storage_connection_string (lines 131, 132).
- Set storage_plugin and storage_connection_string (lines 139, 140).
- Change inventory_plugin to MySQL (lines 309, 310)
- Change inventory_source to MySQL (lines 313, 315)
- Change userDatabase_plugin to MySQL (lines 325, 326)
- Change user_source to MySQL (lines 329, 331)
cd bin/config_include
cp StandaloneCommon.ini.example StandaloneCommon.ini
cd ../..
Open bin/config_include/StandaloneCommon.ini in a text editor and change one thing:
- Change StorageProvider and ConnectionString (lines 8 and 9) to MySQL.