flagflag  If you want to see English page, please click "English" Button at Left.

Running in Windows

  • このフォーラムに新しいトピックを立てることはできません
  • このフォーラムではゲスト投稿が禁止されています
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 .2 .3 .4 .5 .6 .7 .8 .9 .10 .11 .12 .13 .14 .15 .16 .17 .18 .19 .20 .21 .22 .23 | 投稿日時 2011-5-11 20:46
Marcel  Just popping in   投稿数: 2
I tried running the moneyserver on windows, it starts and connects to DB, but then it throws the following error.

13:48:47 - [BASE HTTP SERVER]: Error - Object reference not set to an instance o
f an object.
13:48:47 - [BASE HTTP SERVER]: Tip: Do you have permission to listen on port 800
8, 0?

Unhandled Exception: System.NullReferenceException: Object reference not set to
an instance of an object.
at OpenSim.Framework.Servers.HttpServer.BaseHttpServer.StartHTTP() in C:\open
sim-0.7.1-source\opensim-0.7.1-source\OpenSim\Framework\Servers\HttpServer\BaseH
ttpServer.cs:line 1729
at OpenSim.Framework.Servers.HttpServer.BaseHttpServer.Start() in C:\opensim-
0.7.1-source\opensim-0.7.1-source\OpenSim\Framework\Servers\HttpServer\BaseHttpS
erver.cs:line 1678
at OpenSim.Grid.MoneyServer.MoneyServerBase.StartupSpecific()
at OpenSim.Framework.Servers.BaseOpenSimServer.Startup() in C:\opensim-0.7.1-
source\opensim-0.7.1-source\OpenSim\Framework\Servers\BaseOpenSimServer.cs:line
289
at OpenSim.Grid.MoneyServer.Program.Main(String[] args)


Port 8008 is routed to the right ip adress
投票数:296 平均点:3.65
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2011-5-11 22:59 | 最終変更
iseki  Home away from home   投稿数: 1581
Hi,

Did you apply the patch to source code of OpenSim, and recompile it?
投票数:120 平均点:4.83
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2011-5-12 2:30
Marcel  Just popping in   投稿数: 2
Hey,

No i didnt do that, i found a executable in the folders so i thought it was already done :)

But i cant seem to do this in Windows.. isnt it possible to make a VS2010 project and make things a bit easier for everyone?, i only see a compile doc for Linux, i dont do linux and i think many other people use windows as well..

its a bit of a $%#$ to patch it and compile it on windows.
投票数:114 平均点:4.04
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-5-14 2:02
iseki  Home away from home   投稿数: 1581
Hi,

In 0.7.2Dev, the patch disappeared.

Thanks
投票数:124 平均点:5.16
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2011-6-4 18:30
Tairon  Just popping in   投稿数: 19
Hello, my question with the same problem...: you resolved the Problem ?
I will install it under Windows and cant start the server. I become exactly the same error.

Maybe someone can help me. THX !!!
投票数:107 平均点:4.30
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-5 0:05
iseki  Home away from home   投稿数: 1581
Hi

At v0.7.1.x, it is necessary to apply the patch and to recompile OpenSim.

If you do not know how to apply the patch, you can rewrite
OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs (around Line 1702) directly.

{
    //m_httpListener.Prefixes.Add("https://+:" + (m_sslport) + "/");
    //m_httpListener.Prefixes.Add("http://+:" + m_port + "/");
}

            |  add  5 lines
            V

{
    //m_httpListener.Prefixes.Add("https://+:" + (m_sslport) + "/");
    //m_httpListener.Prefixes.Add("http://+:" + m_port + "/");
    System.Security.Cryptography.X509Certificates.X509Certificate2 cert =
        new System.Security.Cryptography.X509Certificates.X509Certificate2("SineWaveCert.pfx", "123");
    m_httpListener2 = CoolHTTPListener.Create(IPAddress.Any, (int)m_port, cert);
    m_httpListener2.ExceptionThrown += httpServerException;
    m_httpListener2.LogWriter = httpserverlog;
}

And about recompile, please refer http://opensimulator.org/wiki/Build_Instructions

Thanks.
投票数:126 平均点:4.52
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-5 0:36
Tairon  Just popping in   投稿数: 19
thank you !!! seems here i have aditional problems. I can't find this *.cs file in my installation ( windows / OS 0.7.1. I downloaded the package "DTL/NSL Money Server for OpenSim (v0.7.1 Release2)" but there are not instruction to install all. So i was puttig all for test reasons in my test environment OS 0.7.1. Opensim-0-7.1-bin\bin folder. The module DTL Money... is schown under "show module " and my Grid is working fine since one year. Just i need a money solution without external things. For this i was thinking this approach is the best.. smiles.

Hope i can resolve the problems.
投票数:139 平均点:4.53
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2011-6-5 0:44
Tairon  Just popping in   投稿数: 19
.. or better i wait for a solution without patch..smiles
投票数:88 平均点:3.75
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-5 12:09
iseki  Home away from home   投稿数: 1581
引用:

Tairon wrotes:
.. or better i wait for a solution without patch..smiles

- For 0.7.2Dev of OpenSim
The patch is not necessary.

- For 0.7.1.x of OpenSim
Can I redistribute the binary of OpenSim?
I can build OpenSim binary with patch.
But, aren't there problems in the license of OpenSim?
投票数:103 平均点:6.02
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-5 18:21
Tairon  Just popping in   投稿数: 19
hi and so much thanks for your help.

donno if this a licence problem, but it is a solution. smiles. Maybe someone can answer to this topic. if not i must find the 0.7.2dev and test it all. ( greetings from jariel@t-online.de )

many thanks again
投票数:121 平均点:4.21
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-6 8:59
fudge  Not too shy to talk   投稿数: 23
Iseki-san said:

>>- For 0.7.1.x of OpenSim
>>Can I redistribute the binary of OpenSim?
>>I can build OpenSim binary with patch.
>>But, aren't there problems in the license of OpenSim?

This is from the opensimulator wiki:

>>Other Distributions
>>
>>Other projects are free to repackage OpenSimulator and add their own modules or configuration.

So the answer is yes, you can repackage a customized binary for redistribution :)

cheers,
Adam
投票数:86 平均点:4.07
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-7 5:16
Tairon  Just popping in   投稿数: 19
Thank you !
it would be great if someone have this binery of OpenSim ( 0.7.1 ) with the needed patch or can give me a better discription how i can add this patch in windows.
投票数:88 平均点:4.89
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2011-6-7 9:34
fudge  Not too shy to talk   投稿数: 23
Hi Tairon,

Try this one;

http://www.fdn.uq.edu.au/opensim/opensim-0.7.1.1-patched.zip

I manually applied the patch and rebuilt with VS 2010.
It is a fresh build so you'll need to configure opensim for your environment.

It would be nice if Iseki-san could quickly look at the patched file to make sure I applied it correctly ;)

Hope it works for you :)

cheers,
Adam
投票数:144 平均点:5.56
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-7 16:59
Tairon  Just popping in   投稿数: 19
soooo many thanks !!!! The server works !!!!!!
now i will adjust the environment becouse if i will buy money then i become the message that somethings unexpected hase gone wrong. But the most importat thing is: The server is up !!!!

many thanks for your help !!!
投票数:94 平均点:4.57
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-8 10:46
iseki  Home away from home   投稿数: 1581
Hi fudge,

引用:
Thank you for your work.
I was not able to correspond for these several days because I was busy.

May I link that URL from our Wiki?
投票数:92 平均点:4.89
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2011-6-8 12:41
fudge  Not too shy to talk   投稿数: 23
Sure- that's fine :)

cheers,

Adam
投票数:82 平均点:4.15
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-8 16:00 | 最終変更
iseki  Home away from home   投稿数: 1581
引用:

Sure- that's fine :)

cheers,

Adam

Thanks!! :)

Best Regard,

Fumi.Iseki
投票数:114 平均点:3.51
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-10 3:14
Tairon  Just popping in   投稿数: 19
thanks at all. great group here !
the server works fine...smiles
投票数:130 平均点:5.85
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2011-6-13 22:45
Tairon  Just popping in   投稿数: 19
Greetings again ! and i think i need your help again becouse in this version the " money event " is not implementet.
Is t this correct ? for example: I cant "pay" to a prim. ...all other works absolutly fine.
投票数:111 平均点:4.77
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-15 11:39
iseki  Home away from home   投稿数: 1581
投票数:95 平均点:6.63
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-6-18 20:05
Tairon  Just popping in   投稿数: 19
wath can i say:
Thank You again... great work and Help !!!!!!!!!
It works fine now !
投票数:159 平均点:2.70
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2011-10-30 20:36
Tairon  Just popping in   投稿数: 19
Hello and greetings from Germany

now the current release 0.7.2 is ready to download. is the patch for the money server necessary again ? can i upgrate my 0.7.1 ( with patch ) to release is 0.7.2 without this patch ?
投票数:87 平均点:4.02
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2011-10-31 10:50
iseki  Home away from home   投稿数: 1581
Hi

Patches are not needed at 0.7.2.
It is not necessary to re-compile of OpenSim.exe.

Thanks.
投票数:116 平均点:3.19
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2012-2-22 20:00
Tairon  Just popping in   投稿数: 19
Hello all, if there anny known problems to start the money - server under a Windows / OS 0.7.3 rc 1 ?
Under OS 0.7.2 all was fine. Now im upgrated to 0.7.3 - rc 1 and i have several errors and the MoneyServer can't load.

SystemLoadException... Type Opensim.Framwork.Console.MainConsole.... OpenSim.Framwork.Console, Version=0.6.5.1378, culture=neutral, PublicKeyToken=0 can't load ...
投票数:67 平均点:5.37
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2012-2-23 8:59
iseki  Home away from home   投稿数: 1581
Hi Tairon,

Some MoneyServer API of OpenSim 0.7.3Dev were changed, so our MoneyServer 0.7.2 does not work in OpenSim 0.7.3Dev/RC

But latest dev version of MoneyServer will work in OpenSim 0.7.3RC
http://www.nsl.tuis.ac.jp/xoops/modules/xpwiki/?OpenSim%2FMoneyServer#qd7e14e7

When OpenSim 0.7.3-release is released, we will release MoneyServer 0.7.3

Thanks
投票数:110 平均点:4.00
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2012-3-3 4:28
SkyLine  Not too shy to talk   投稿数: 24
I'm definitely looking forward to the new version for 0.7.3!
The last version has been working so well i sometimes take it for granted and forgot all the trouble i went through initially to make it work!
投票数:71 平均点:5.77
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2012-3-4 14:17
iseki  Home away from home   投稿数: 1581
Hi,

Sorry, I was late. I am very busy now

Please download from
http://www.nsl.tuis.ac.jp/xoops/modules/d3downloads/index.php?page=singlefile&cid=8&lid=33

Thanks.
投票数:57 平均点:5.26
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 .2 | 投稿日時 2012-3-8 15:25
Loralai  Just popping in   投稿数: 8
I am currently running the server in windows 2008 RC2 but the helper scripts do not seem to be working properly. I keep getting this error when I try to access them from the browser to test them: Parse error: syntax error, unexpected T_STRING in C:\Inetpub\vhosts\valhallavirtual.com\httpdocs\terminal\currency\include\config.php on line 16

I have looked for a syntax error on line 16 but have found non. Here is a copy of the Config.php file (I have comemnted out obvious security information for obvious reasons)

<?php
//
// Configration file for non Web Interface
//
//
//

// Please set this hepler script URL and directory
if (!defined('ENV_HELPER_URL')) define('ENV_HELPER_URL', 'http://www.valhallavirtual.com/terminal/currency/helper/');
if (!defined('ENV_HELPER_PATH')) define('ENV_HELPER_PATH', 'valhallavirtual.com\httpdocs\terminal\currency\helper\');

//////////////////////////////////////////////////////////////////////////////////i
// Valiables for OpenSim

// Please set MySQL DB access information
define('OPENSIM_DB_HOST', 'localhost');
define('OPENSIM_DB_NAME', '*********');
define('OPENSIM_DB_USER', '*********');
define('OPENSIM_DB_PASS', '*********');


// Money Server Access Key
// Please set same key with MoneyScriptAccessKey in MoneyServer.ini
define('CURRENCY_SCRIPT_KEY', '123456789');

// Group Module Access Keys
// Please set same keys with at [Groups] section in OpenSim.ini (case of Aurora-Sim, it is Groups.ini)
define('XMLGROUP_RKEY', '198919921953'); // Read Key
define('XMLGROUP_WKEY', '198919921953'); // Write key

// Please set user(robust) servers URL
define('USER_SERVER_URI', 'http://midgard.3dassociation.org:8002/'); // not use localhost or 127.0.0.1




//////////////////////////////////////////////////////////////////////////////////
// You need not change the below usually.

define('USE_CURRENCY_SERVER', 1);
define('USE_UTC_TIME', 1);

define('SYSURL', ENV_HELPER_URL);
$GLOBALS['xmlrpc_internalencoding'] = 'UTF-8';

if (USE_UTC_TIME) date_default_timezone_set('UTC');


// Currency DB
define('CURRENCY_MONEY_TBL', 'balances');
define('CURRENCY_TRANSACTION_TBL', 'transactions');


// XML Group. see also xmlgroups_config.php
define('XMLGROUP_ACTIVE_TBL', 'osagent');
define('XMLGROUP_LIST_TBL', 'osgroup');
define('XMLGROUP_INVITE_TBL', 'osgroupinvite');
define('XMLGROUP_MEMBERSHIP_TBL', 'osgroupmembership');
define('XMLGROUP_NOTICE_TBL', 'osgroupnotice');
define('XMLGROUP_ROLE_MEMBER_TBL', 'osgrouprolemembership');
define('XMLGROUP_ROLE_TBL', 'osrole');


// Avatar Profile. see also profile_config.php
define('PROFILE_CLASSIFIEDS_TBL', 'classifieds');
define('PROFILE_USERNOTES_TBL', 'usernotes');
define('PROFILE_USERPICKS_TBL', 'userpicks');
define('PROFILE_USERPROFILE_TBL', 'userprofile');
define('PROFILE_USERSETTINGS_TBL', 'usersettings');


// Search the In World. see also search_config.php
define('SEARCH_ALLPARCELS_TBL', 'allparcels');
define('SEARCH_EVENTS_TBL', 'events');
define('SEARCH_HOSTSREGISTER_TBL', 'hostsregister');
define('SEARCH_OBJECTS_TBL', 'objects');
define('SEARCH_PARCELS_TBL', 'parcels');
define('SEARCH_PARCELSALES_TBL', 'parcelsales');
define('SEARCH_POPULARPLACES_TBL', 'popularplaces');
define('SEARCH_REGIONS_TBL', 'regions');
define('SEARCH_CLASSIFIEDS_TBL', PROFILE_CLASSIFIEDS_TBL);


//
if (!defined('ENV_READED_CONFIG')) define('ENV_READED_CONFIG', 'YES');

?>

For the define path I have tried both the complete path through C:\ and just the path from the website webspace. Neither one seem to work.
投票数:75 平均点:4.80
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2012-3-8 15:37
Loralai  Just popping in   投稿数: 8
Oh I should also state this is for the stable release of OpenSim 0.7.3
投票数:61 平均点:4.26
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2012-3-8 16:56
Loralai  Just popping in   投稿数: 8
Okay I thought I had fixed it by changing the localhost classification to the IP address, which removed the line 16 error. Now I am getting the following error

Fatal error: Call to undefined function xmlrpc_server_create() in C:\Inetpub\vhosts\valhallavirtual.com\httpdocs\terminal\currency\helper\currency.php on line 72

I went into my INI file for php and saw that the xmlrpc extensions was disabled, so I enabled it and got only a blank page. Ended up changing it back.

Also inworld no one can buy land, We keep getting a DNS cannot resolve hostname error which doesnt make any sense.
投票数:89 平均点:3.60
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2012-3-10 10:37 | 最終変更
iseki  Home away from home   投稿数: 1581
引用:

if (!defined('ENV_HELPER_URL')) define('ENV_HELPER_URL', 'http://www.valhallavirtual.com/terminal/currency/helper/');
if (!defined('ENV_HELPER_PATH')) define('ENV_HELPER_PATH', 'valhallavirtual.com\httpdocs\terminal\currency\helper\');

Correct path of ENV_HELPER_PATH is
'valhallavirtual.com/httpdocs/terminal/currency/helper/'

And why is it relative path? I think that absolute path is better.

Thanks
投票数:76 平均点:5.39
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2012-3-10 10:44
iseki  Home away from home   投稿数: 1581
引用:

define('OPENSIM_DB_HOST', 'localhost');

Please edit C:\Windows\System32\drivers\etc\hosts
or add localhost setting file to your DNS
投票数:80 平均点:4.00
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2012-3-10 10:51
iseki  Home away from home   投稿数: 1581
引用:

Loralai wrotes:
I went into my INI file for php and saw that the xmlrpc extensions was disabled, so I enabled it and got only a blank page. Ended up changing it back.

Also inworld no one can buy land, We keep getting a DNS cannot resolve hostname error which doesnt make any sense.

Is PHP5-CURL available?
And this script does not work in php-5.3.x. Is version of your php 5.2.x?
投票数:56 平均点:4.82

なし Re: Running in Windows

msg# 1.17.1.1
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2012-3-21 7:25
Loralai  Just popping in   投稿数: 8
引用:

Correct path of ENV_HELPER_PATH is
'valhallavirtual.com/httpdocs/terminal/currency/helper/'

And why is it relative path? I think that absolute path is better.

Thanks




I dont thing the Absolute path can have "/" on windows It would have to be "\" correct? In other words 'C:\inetub\vhosts\www\valhallavirtual.com\httpdocs\terminal\currency\helper' ? I may have the path slightly wrong there but that ones just for an example
投票数:68 平均点:4.12

なし Re: Running in Windows

msg# 1.17.1.1.1
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2012-3-21 8:44 | 最終変更
iseki  Home away from home   投稿数: 1581
PHP interprets "/" correctly.

If you wan to use "\", correct path is
'C:\\inetub\\vhosts\\www\\valhallavirtual.com\\httpdocs\\terminal\\currency\\helper\\'

"\" is escape character for PHP (and Unix/Linux)
Original PHP is made at Unix/Linux, so PHP considers that "\" is escape character.
投票数:62 平均点:5.48
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2012-3-21 18:04
Loralai  Just popping in   投稿数: 8
Alright I got it to work this time, However there seems to be an error. If I create the moneyserver database within the OpenSim Database I can only have 20 Simultaneous connections(which causes issues with assets, regions, teleporting and other things) However if I have it within its won database I cant buy land. When I tried increasing the number of MySQL connections the money server could have it shut down. How can I solve this?
投票数:55 平均点:3.45
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2012-3-21 18:57
iseki  Home away from home   投稿数: 1581
Sorry, I can not understand what is a problem.
Since I am not good at English, please write more intelligibly.

Can you sell/buy the land by 0L$?
If you can not sell/buy the land by 0L$, this is not a problem of Money Server.
It is a problem of land.php or setting of OpenSim.ini or other settings.

If you can sell/buy the land by 0L$, but you can not sell/buy for pay (with charge),
It is a problem of Money Server.
投票数:59 平均点:5.42
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2012-3-21 20:23
Loralai  Just popping in   投稿数: 8
Sorry, I wish I spoke japanese but I never had the chance to learn :(. Let me see if I can put it differently. Okay would Having the Money Server Operate from a database called Currency instead of the OpenSim core database effect land buying? This is what I have

OpenSim Database = OpenSim

MoneyServer Database = Currency

Helper Database = OpenSim

The error I get is that I cannot buy land when MoneyServer Database = Currency

However. If MoneyServer Database = OpenSim it only allows me to have 20 Database connection at a time, if I try to increase that number the MoneyServer exe terminates, and things like attachments wont attach or regions wont come on line
投票数:65 平均点:6.00
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2012-3-21 22:49 | 最終変更
iseki  Home away from home   投稿数: 1581
Ummmm ???

引用:
The error I get is that I cannot buy land when MoneyServer Database = Currency

However. If MoneyServer Database = OpenSim it only allows me to have 20 Database connection at a time, if I try to increase that number the MoneyServer exe terminates, and things like attachments wont attach or regions wont come on line

Does this mean that your MySQL server permits only 20 connections at one time?
If it is so, please edit MoneyServer.ini and change "MaxConnection" parameter.

Or does it mean that 20 connections are little?
I think that 20 connections are sufficient number.

Do you mention that when "MaxConnection" is increased, Money Server is crashed?

Please show me your environment of system.
1. Version of OpenSim (0.7.3? Diva Distro?)
2. Version of Windows (Windows7? 64bit or 32bit)
3. Version of MySQL (Do you use Xamp or Wamp?)
4. Version of PHP
5. Version of Apache (Web Server)
投票数:62 平均点:4.19
前の投稿 - 次の投稿 | 親投稿 - 子投稿.1 | 投稿日時 2012-3-22 18:50 | 最終変更
Loralai  Just popping in   投稿数: 8
1. Version of OpenSim (0.7.3? Diva Distro?) 0.7.3 not Diva
2. Version of Windows (Windows7? 64bit or 32bit) Windows 2008RC2 64bit
3. Version of MySQL (Do you use Xamp or Wamp?) 5.0.1
4. Version of PHP? 5.2.6
5. Version of Apache (Web Server) Not Apache, I thinks its ISS

As for the MaxConnection increase causing the MoneyServer to terminate here are the logs from the server program:

2012-03-21 02:22:39,906 INFO - OpenSim.Framework.Servers.BaseOpenSimServer [STARTUP]: Beginning startup processing
2012-03-21 02:22:40,000 INFO - OpenSim.Framework.Servers.BaseOpenSimServer [STARTUP]: OpenSimulator version: OpenSim 0.7.3 Release

2012-03-21 02:22:40,000 INFO - OpenSim.Framework.Servers.BaseOpenSimServer [STARTUP]: Operating system version: Microsoft Windows NT 6.1.7601 Service Pack 1, .NET platform Win32NT, 64-bit

2012-03-21 02:22:40,031 INFO - OpenSim.Grid.MoneyServer.MoneyServerBase [MONEY SERVER]: Starting HTTPS process
2012-03-21 02:22:40,171 INFO - OpenSim.Grid.MoneyServer.MoneyServerBase [DATA]: Connecting to Money Storage Server
2012-03-21 02:22:40,765 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:40,812 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Creating 80 DB connections...
2012-03-21 02:22:40,812 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [0]
2012-03-21 02:22:40,828 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:40,843 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [1]
2012-03-21 02:22:40,843 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:40,859 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [2]
2012-03-21 02:22:40,859 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:40,875 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [3]
2012-03-21 02:22:40,890 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:40,890 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [4]
2012-03-21 02:22:40,906 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:40,921 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [5]
2012-03-21 02:22:40,921 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:40,937 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [6]
2012-03-21 02:22:40,937 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:40,953 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [7]
2012-03-21 02:22:40,968 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:40,968 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [8]
2012-03-21 02:22:40,984 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,000 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [9]
2012-03-21 02:22:41,000 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,015 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [10]
2012-03-21 02:22:41,031 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,046 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [11]
2012-03-21 02:22:41,046 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,062 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [12]
2012-03-21 02:22:41,078 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,078 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [13]
2012-03-21 02:22:41,093 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,109 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [14]
2012-03-21 02:22:41,109 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,125 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [15]
2012-03-21 02:22:41,125 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,140 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [16]
2012-03-21 02:22:41,156 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,156 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [17]
2012-03-21 02:22:41,171 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,187 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [18]
2012-03-21 02:22:41,187 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,203 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [19]
2012-03-21 02:22:41,218 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,218 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [20]
2012-03-21 02:22:41,234 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,250 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [21]
2012-03-21 02:22:41,265 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,265 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [22]
2012-03-21 02:22:41,281 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,296 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [23]
2012-03-21 02:22:41,296 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,312 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [24]
2012-03-21 02:22:41,312 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,328 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [25]
2012-03-21 02:22:41,343 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,343 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [26]
2012-03-21 02:22:41,359 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,375 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [27]
2012-03-21 02:22:41,375 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,390 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [28]
2012-03-21 02:22:41,390 INFO - OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager [MYSQL]: Connection established
2012-03-21 02:22:41,406 INFO - OpenSim.Grid.MoneyServer.MoneyDBService Connecting to DB... [29]
2012-03-21 02:22:41,421 ERROR - OpenSim.Grid.MoneyServer.MoneyServerBase [MONEY SERVER] StartupSpecific: Fail to start HTTPS process
2012-03-21 02:22:41,421 ERROR - OpenSim.Grid.MoneyServer.MoneyServerBase [MONEY SERVER] StartupSpecific: Please Check Certificate File or Password. Exit
2012-03-21 02:22:41,421 ERROR - OpenSim.Grid.MoneyServer.MoneyServerBase [MONEY SERVER] StartupSpecific: System.Exception: Error initialising MySql Database: System.Exception: Connection error while using connection string [Server=localhost;Port=3306;Database=joomla_a;User ID=*******;Password=********;Pooling=false;] ---> MySql.Data.MySqlClient.MySqlException: User ****** already has more than 'max_user_connections' active connections
at MySql.Data.MySqlClient.MySqlStream.ReadPacket()
at MySql.Data.MySqlClient.NativeDriver.AuthenticateNew()
at MySql.Data.MySqlClient.NativeDriver.Open()
at MySql.Data.MySqlClient.Driver.Open()
at MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
at MySql.Data.MySqlClient.MySqlConnection.Open()
at OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager.Initialise(String connect)
--- End of inner exception stack trace ---
at OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager.Initialise(String connect)
at OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager.Initialise(String connect)
at OpenSim.Grid.MoneyServer.MoneyDBService.Initialise(String connectionString, Int32 maxDBConnections)
at OpenSim.Grid.MoneyServer.MoneyServerBase.SetupMoneyServices()
投票数:93 平均点:4.62
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2012-3-22 18:51
Loralai  Just popping in   投稿数: 8
The formentioned database is a test database with nothing in it so I have not blocked out any information
投票数:247 平均点:1.78
前の投稿 - 次の投稿 | 親投稿 - 子投稿なし | 投稿日時 2012-3-22 19:31
iseki  Home away from home   投稿数: 1581
Please be careful.
Your password was displayed. I deleted it.

This error means that your connection to MySQL server is too many.
20 connections is enough much.
80 connections is abnormal.

Max connection number of DTL/NSL Money Server is 30.
This number is from original DTL Money Server.
I think that this number is not small.


引用:

2012-03-21 02:22:41,421 ERROR - OpenSim.Grid.MoneyServer.MoneyServerBase [MONEY SERVER] StartupSpecific: Fail to start HTTPS process
2012-03-21 02:22:41,421 ERROR - OpenSim.Grid.MoneyServer.MoneyServerBase [MONEY SERVER] StartupSpecific: Please Check Certificate File or Password. Exit
2012-03-21 02:22:41,421 ERROR - OpenSim.Grid.MoneyServer.MoneyServerBase [MONEY SERVER] StartupSpecific: System.Exception: Error initialising MySql Database: System.Exception: Connection error while using connection string [Server=localhost;Port=3306;Database=joomla_a;User ID=*******;Password=********;Pooling=false;] ---> MySql.Data.MySqlClient.MySqlException: User ****** already has more than 'max_user_connections' active connections
at MySql.Data.MySqlClient.MySqlStream.ReadPacket()
at MySql.Data.MySqlClient.NativeDriver.AuthenticateNew()
at MySql.Data.MySqlClient.NativeDriver.Open()
at MySql.Data.MySqlClient.Driver.Open()
at MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
at MySql.Data.MySqlClient.MySqlConnection.Open()
at OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager.Initialise(String connect)
--- End of inner exception stack trace ---
at OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager.Initialise(String connect)
at OpenSim.Data.MySQL.MySQLMoneyDataWrapper.MySQLMoneyManager.Initialise(String connect)
at OpenSim.Grid.MoneyServer.MoneyDBService.Initialise(String connectionString, Int32 maxDBConnections)
at OpenSim.Grid.MoneyServer.MoneyServerBase.SetupMoneyServices()
投票数:84 平均点:5.48

  条件検索へ


サイト内 検索

ログイン

ユーザー名:

パスワード:


パスワード紛失
新規登録

サブ メニュー

ミニカレンダー

前月2024年 4月翌月
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
<今日>

オンライン状況

134 人のユーザが現在オンラインです。 (5 人のユーザが Forum を参照しています。)

登録ユーザ: 0
ゲスト: 134

もっと...

アクセスカウンタ

今日 : 1593215932159321593215932
昨日 : 1795517955179551795517955
総計 : 2337490923374909233749092337490923374909233749092337490923374909
Powered by XOOPS Cube 2.1© 2001-2006 XOOPS Cube Project
Design by XoopsDesign.com