In this exemple of configuration i'll use:
For the database the user opensim with the password DB_Password. (Chose whatever you want instead)
For the domain name replace domain.com by your own.

Dependency installation:
Before installing OpenSim you need Mono, MySQL and unzip.

sudo apt install gnupg ca-certificates
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt update
sudo apt dist-upgrade
sudo apt install mono-complete mysql-server unzip


MySQL configuration:

sudo nano /etc/mysql/my.cnf


Add the following lines before:
!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mysql.conf.d/

[mysqld]
default_storage_engine = InnoDB
disable_log_bin
innodb_buffer_pool_size = 2G
innodb_log_file_size = 256M
innodb_log_buffer_size = 16M
innodb_flush_method = O_DIRECT
innodb_flush_log_at_trx_commit = 0
innodb_buffer_pool_instances = 2
default-authentication-plugin=mysql_native_password


Restart MySQL:

sudo service mysql restart
sudo mysql_secure_installation -u root -p


Database creation:

sudo mysql
mysql> create database opensim;
mysql> create user opensim identified by 'DB_Password';
mysql> create user 'opensim'@'localhost' identified by 'DB_Password';
mysql> GRANT ALL PRIVILEGES ON opensim.* TO 'opensim'@'localhost';
mysql> FLUSH PRIVILEGES;


Check the opensim account is mysql_native_password and disconnect from MySQL:

mysql> SELECT user,authentication_string,plugin,host FROM mysql.user;
mysql> \q


Download and Extract OpenSim:

cd ~
wget http://opensimulator.org/dist/OpenSim-LastAutoBuild.zip
mkdir ~/HG
unzip OpenSim-LastAutoBuild.zip -d HG/


Grid configuration:

cd ~/HG/bin
cp Robust.HG.ini.example Robust.HG.ini
cp OpenSim.ini.example OpenSim.ini
cp config-include/GridCommon.ini.example config-include/GridCommon.ini
cp config-include/osslEnable.ini.example config-include/osslEnable.ini


Edit the Robust.HG.ini file

nano -c ~/HG/bin/Robust.HG.ini


Edit the lines 28 - 240 - 620 - 623 - 834
Uncomment 104 - 106 - 111 - 191 - 198 - 731

	[Const]
28		BaseURL = "http://domain.com"

	[ServiceList]
104 OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector" 106 GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector" 111 UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector" [Hypergrid] 191 HomeURI = "${Const|BaseURL}:${Const|PublicPort}" 198 GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" [DatabaseService] 240 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=DB_Password;Old Guids=true;SslMode=None;" [GridInfoService] 620 gridname = "NOM DE LE GRID" 623 gridnick = "nom_de_la_grid" [UserAgentService] 731 ShowUserDetailsInHGProfile = True [UserProfilesService] 834 Enabled = true


Launch Robust and make sure there is no errors:

mono ~/HG/bin/Robust.exe -inifile=Robust.HG.ini


In the Robust console create the first user:

R.O.B.U.S.T.# create user
First name [Default]: Ludo
Last name [User]: Davis
Password:
Email []:
User ID (enter for random) []:
Model name []:


Quit Robust with the quit command

R.O.B.U.S.T.# quit


Edit the OpenSim.ini file

nano -c ~/HG/bin/OpenSim.ini


Edit the lines: 53 - 1164 - 1179 - 1141 - 1202
Uncomment: 356 - 773 - 778 - 782 - 787 - 795 - 1152 - 1192 - 1276 - 1313
Comment: 1310

	[Const]
53		BaseHostname = "domain.com"

	[Map]
356		GenerateMaptiles = true

	[Messaging]
773		OfflineMessageModule = "Offline Message Module V2"
778		OfflineMessageURL = ${Const|PrivURL}:${Const|PrivatePort}
782		StorageProvider = OpenSim.Data.MySQL.dll
787		MuteListModule = MuteListModule
792		ForwardOfflineGroupMessages = true

	[Groups]
1141		Enabled = true
1152		Module = "Groups Module V2"
1164		ServicesConnectorModule = "Groups HG Service Connector"
1179		GroupsServerURI = ${Const|BaseURL}:${Const|PrivatePort}
1192		MessagingModule = "Groups Messaging Module V2"
1202		MessageOnlineUsersOnly = true

	[UserProfiles]
1276		ProfileServiceURL = "${Const|BaseURL}:${Const|PublicPort}"

	[Architecture]
1310		; Include-Architecture = "config-include/Standalone.ini"
1313		Include-Architecture = "config-include/GridHypergrid.ini"

 

Edit the GridCommon.ini file

nano -c ~/HG/bin/config-include/GridCommon.ini


Edit the line19
Uncomment 16 - 49
Comment 9

	[DatabaseService]
9		; Include-Storage = "config-include/storage/SQLiteStandalone.ini";
16		StorageProvider = "OpenSim.Data.MySQL.dll"
19		ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=DB_Password;Old Guids=true;SslMode=None;"

	[Hypergrid]
49		GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"


Firewall configuration:

sudo ufw allow "OpenSSH"
sudo ufw allow 8002/tcp
sudo ufw allow 9000/tcp
sudo ufw allow 9000:9100/udp
sudo ufw enable


If the server is behind a router:
Create a NAT for ports 8002 in TCP and 9000-9100 TCP/UDP
Example:


NAT reflection must be enable.
Example:


You need to edit the Region.ini file with the external IP (not the domain name) and internal.

InternalAddress = IP_INTERNE
ExternalHostName = IP_EXTERNE


Create a route:

iptables -t nat -A OUTPUT --dst IP_EXTERNE -p tcp --dport 9000:9100 -j DNAT --to-destination IP_INTERNE
iptables -t nat -A OUTPUT --dst IP_EXTERNE -p udp --dport 9000:9100 -j DNAT --to-destination IP_INTERNE

15626 thoughts on “Install OpenSim 0.9.2.2 in Grid mode on Ubuntu 20.04”

  1. Wednesday, 24 July 2024 15:29
    kraken onion зеркала - kraken darknet ссылка тор, kraken зеркало krakentor site
  2. Wednesday, 24 July 2024 15:51
    купить диплом образование новосибирске mandiplomik.ru .
  3. Wednesday, 24 July 2024 17:42
    Hence, identifcation of xerosis as the autoimmune hypothyroidism and/or hyperthyroidism most common pores and skin fnding in our cohort of sufferers appears (2), onycholysis, yellow skin, periorbital edema, psoriasis, according to the fact that 52. We now contemplate the potential lengthy-time period consequences associated with these injuries. Interpretation of accidents within the comet plane disasters: An experimental method muscle relaxant wpi 3968 order imitrex without a prescription.
    J Clin Psychiatry 71(11):1447-1456, 2010 20584524 Spina E, Sturiale V, Valvo S, et al: Prevalence of acute dystonic reactions associated with neuroleptic remedy with and with out anticholinergic prophylaxis. For instance, age affects the chance of conception, and the risk of many pregnancy problems associated with infertility remedies, similar to preterm birth or low birthweight, are also increased with higher maternal age. There is lim- revealed that bodily schooling instruction is re- ited proof concerning the effectiveness of quired by most states (94 percent) and school dis- faculty-group applications, interventions in well being tricts (ninety five %) (Pate, Small, et al muscle relaxant in surgeries buy discount sumatriptan 50 mg on-line.
  4. Wednesday, 24 July 2024 19:45
  5. Wednesday, 24 July 2024 19:59
    The chest plate is removed by separating the sternoclavicular joint on both sides (Figures 3. Notwithstanding the foregoing, Landlord may, but shall not be deemed required to, present insurance for any enhancements put in by Tenant or which are in addition to the standard enhancements customarily furnished by Landlord, without regard as to if or not such are made part of or are affixed to the Building. Although ongoing coaching for providers is being made broadly obtainable, it is not supported with a level of supervision that will lead to high-quality care spasms homeopathy right side sumatriptan 25 mg with mastercard.
    Modified Jones Criteria (two majors or one main + two minors required) (7) Major criteria: carditis, migrating polyarthritis, chorea, erythema marginatum, subcutaneous nodules. A wide range of doses is used by veterinary ophthalmologists with reported medical effcacy. Inactivated polio vaccine is run as a 4 dose regimen by intramuscular injection at 2 months, 4 months, between 6 months and 15 months (3 dose main series), and between four years and 6 years of age (booster dose) muscle relaxant in anesthesia order generic imitrex.
  6. Wednesday, 24 July 2024 22:24
    The chest radiographs carried out by the patient's main care physician exhibits worsening diffuse patchy consolidations with hyperexpansion. A commonly used method to grade hair development is the Ferriman-Gallwey score (see. The impression of parents and facilitators is that children who attended a centre have been higher prepared to handle school than their non- friends both academically and socially muscle relaxant cz 10 order sumatriptan 100 mg overnight delivery.
    If ache was expressed as above 5 on the visual analogue scale an preliminary injection of Triamcinolone 40 mg, Dexamethasone 6 mg, and Marcaine. Seven states (Alabama, Arkansas, Iowa, Louisiana, Mississippi, Oklahoma and West Virginia) had grownup obesity charges of 35 percent or greater, led by West Virginia at 38. Thus, frenuclear receptor, the dosage of antialdosteronic medication ought to quent measurements of serum creatinine, sodium, and potassium be increased every 7 days muscle relaxant whiplash imitrex 50 mg purchase line.
  7. Wednesday, 24 July 2024 23:15
    Медицинский центр Москва cecilplus.ru

    Если Вы искали урология мужская в сети интернет, то вы на нужном пути. Наши специалисты на cecilplus.ru обязательно Вам помогут, ведь у них большой опыт и регулярные повышения в своей сфере. Будем рады Вам помочь обрести здоровое тело, побороть болезнь и жить полной жизнью!
  8. Wednesday, 24 July 2024 23:47
    Чай від просуди - це лікувальний напій, що виготовляють з різних цілющих трав. Такий чай може бути корисним для благополуччя, оскільки має багато корисних речовин.

    Трав'яний чай можна замовити в магазині AD-UA на території України. Магазин пропонує різноманітні типи трав'яного чаю на будь-який бажання.

    Посилання на сайт - https://ad-ua.com/chaj/trav-yanyj-chaj/
  9. Wednesday, 24 July 2024 23:53
    kraken зеркала 2 kmp biz - kraken сайт анонимных, kraken официальный сайт vk3
  10. Thursday, 25 July 2024 00:34
    купить диплом высшее гос mandiplomik.ru .