flagflag  
93: 2016-07-26 (Tue) 13:36:40 iseki source Cur: 2023-08-15 (Tue) 19:01:55 iseki source
Line 8: Line 8:
- ダウンロード: http://opensimulator.org/dist/ - ダウンロード: http://opensimulator.org/dist/
-- OpenSim-Libs: git://opensimulator.org/git/opensim-libs​+- [[opensim-libs]]: git://opensimulator.org/git/opensim-libs​
- http://www.isus.jp/article/game-special/​opensimulator_1/ - http://www.isus.jp/article/game-special/​opensimulator_1/
Line 14: Line 14:
-  git git://opensimulator.org/git/opensim -  git git://opensimulator.org/git/opensim
#br #br
 +
 +** Download [#hd556b0e]
 +*** Git [#madae3be]
 + git clone git://opensimulator.org/git/opensim
** Related Software [#v23eeb7c] ** Related Software [#v23eeb7c]
- OpenMetaverse http://openmv.org/ - OpenMetaverse http://openmv.org/
-- OpenSim-Libs: http://opensimulator.org/git/opensim-lib​s​+- [[opensim-libs]]: http://opensimulator.org/git/opensim-lib​s​
- OpenLife http://openlifegrid.com/ - OpenLife http://openlifegrid.com/
Line 25: Line 29:
- [[realXtend]] - [[realXtend]]
#br #br
 +
**** by NSL [#g68698ea] **** by NSL [#g68698ea]
- [[XoopenSim]]: Xoops Cube 用 OpenSim インターフェイス by NSL - [[XoopenSim]]: Xoops Cube 用 OpenSim インターフェイス by NSL
Line 53: Line 58:
- [[0.7>./0.7]] - [[0.7>./0.7]]
- [[0.6.9RC1>./0.6.9]] - [[0.6.9RC1>./0.6.9]]
 +#br
 +
 +*** 0.9.3 with .NET6 [#c3b1b13d]
 +
 + yum install dotnet-*-6.0
 + 
 + git clone git://opensimulator.org/git/opensim
 + cd opensim
 + git checkout dotnet6
 + 
 + ./runprebuild.sh
 + ./compile.sh
 + 
 + cd bin
 + ./opensim.sh  or ./OpenSim
 +
#br #br
** 内部構造 [#v9ddc5bc] ** 内部構造 [#v9ddc5bc]
 +*** Server [#p501406d]
 +- [[Robust Server>./Robust]]
 +#br
*** Functions [#offe1195] *** Functions [#offe1195]
- CAPS:  http://mrtopf.de/blog/second-life/slga-c​apabilities-explained-technical/ - CAPS:  http://mrtopf.de/blog/second-life/slga-c​apabilities-explained-technical/
-- UniversalUserIdentifier : uuid[;endpoint[;first last[;secret]]]+- [[UniversalUserIdentifier : uuid(;endpoint(;first last(;secret))) >./UniversalUserIdentifier]
 + 
 +- [[Helper Scripts>./Helper Scripts]]
- [[Command>./Command]] - [[Command>./Command]]
- [[HTTP Command>./HTTP Command]] - [[HTTP Command>./HTTP Command]]
Line 80: Line 106:
- [[Friend>./Friend]] - [[Friend>./Friend]]
- [[Mesh>./Mesh]] - [[Mesh>./Mesh]]
 +- [[RegionHandle>./RegionHandle]]
#br #br
Line 127: Line 154:
- estate item の作り方 - estate item の作り方
 insert into estate_settings (EstateID, EstateName,AllowVoice,UseGlobalTime,Pric​ePerMeter,AllowDirectTeleport,ParentEsta​teID,PublicAccess) Values ('106', 'Sirius01', '1', '1', '1','1','1','1');  insert into estate_settings (EstateID, EstateName,AllowVoice,UseGlobalTime,Pric​ePerMeter,AllowDirectTeleport,ParentEsta​teID,PublicAccess) Values ('106', 'Sirius01', '1', '1', '1','1','1','1');
 + 
 insert into estate_settings (EstateID, EstateName,AllowVoice,UseGlobalTime,Pric​ePerMeter,AllowDirectTeleport,ParentEsta​teID,PublicAccess) Values ('111', 'Ayahime', '1', '1', '1','1','1','1');  insert into estate_settings (EstateID, EstateName,AllowVoice,UseGlobalTime,Pric​ePerMeter,AllowDirectTeleport,ParentEsta​teID,PublicAccess) Values ('111', 'Ayahime', '1', '1', '1','1','1','1');
- estate と Region の対応付け - estate と Region の対応付け
Line 134: Line 161:
** Trouble Shooting [#lccfde88] ** Trouble Shooting [#lccfde88]
 +*** DB の prims テーブルの Textカラムに UTF-8 が格納できない問題 [#o27927b6]
 +- [[prims テーブル>./DB/prims/]]
 +- [[prims テーブルの UTF-8問題>./DB/prims/UTF-8]]
 +#br
 +
*** MySQL [#we6a9cd8] *** MySQL [#we6a9cd8]
**** MySQL error in ExecuteReader: MySql.Data.MySqlClient.MySqlException: Table '''XXXXXX''' is marked as crashed and should be repaired [#bb55dd0d] **** MySQL error in ExecuteReader: MySql.Data.MySqlClient.MySqlException: Table '''XXXXXX''' is marked as crashed and should be repaired [#bb55dd0d]
- MySQL にログインし,''repair table XXXXXX;'' で修復. - MySQL にログインし,''repair table XXXXXX;'' で修復.
#br #br
 +
 +**** Authentication with old password no longer supported, use 4.1 style passwords. [#e3542462]
 +- 接続用モジュールが変わってパスワードの文字が41文字必要だそうだ.
 +
 + +-----------+-------------+------------​-------------------------------+
 + | Host      | User        | Password                                  |
 + +-----------+-------------+------------​-------------------------------+
 + | localhost | root        | a446bd48313ea0e1                          |
 + | rigel-c  | OpensimUser | *DE2467C2A5C64DDF491A284A62A51A867F44FF9​B |
 + | %        | OpensimUser | fc842bd464941c95                          |
 + +-----------+-------------+------------​-------------------------------+
 + 3 rows in set (0.00 sec)
 + 
 + mysql> set session old_passwords = 0;
 + Query OK, 0 rows affected (0.00 sec)
 + 
 + mysql> set password for 'OpensimUser'@'%' = password('XXXXXXXXXX');
 + Query OK, 0 rows affected (0.00 sec)
 + 
 + mysql> select Host,User,Password from user;
 + +-----------+-------------+------------​-------------------------------+
 + | Host      | User        | Password                                  |
 + +-----------+-------------+------------​-------------------------------+
 + | localhost | root        | a446bd48313ea0e1                          |
 + | rigel-c  | OpensimUser | *DE2467C2A5C64DDF491A284A62A51A867F44FF9​B |
 + | %        | OpensimUser | *DE2467C2A5C64DDF491A284A62A51A867F44FF9​B |
 + +-----------+-------------+------------​-------------------------------+
 + 3 rows in set (0.00 sec)
**Index [#gac45695] **Index [#gac45695]
#ls2 #ls2


Front page   New List of Pages Search Recent changes   Help   RSS of recent changes (RSS 1.0) RSS of recent changes (RSS 2.0) RSS of recent changes (RSS Atom)

Site Search

Login

Username:

Password:


Lost Password?
Register now!!

Sub Menu

mini Calendar

Last MonthApr 2024Next Month
Su Mo Tu We Th Fr Sa
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Today

Who's Online

122 user(s) are online (29 user(s) are browsing xpwiki)

Members: 0
Guests: 122

more...

Access Counter

Today : 6241624162416241
Yesterday : 1529415294152941529415294
Total : 2340094123400941234009412340094123400941234009412340094123400941
Powered by XOOPS Cube 2.1© 2001-2006 XOOPS Cube Project
Design by XoopsDesign.com