Re: RemoteCertificateNameMismatch
notremonde
投稿数: 8

Hello,
thank you for your reply.
I have: 0.8.1 for OpenSim-0.8.1 (Binaries are included. not need to compile) on Linux server.
I did: CheckServerCert = false and I don't have the error message about the certificat any more.
But still the same error, when I try to buy a land or buy currency, "couldn't resolve host name".
This message is on the viewer window you have when you buy a land or buy currency.
Here my files (I have changed host by example.com)
Thanks a lot.
------------------------------------------------------------------------------------------------
opensim.ini
-----------
[Economy]
;# {SellEnabled} {} {Enable selling for 0?} {true false} true
; The default economy module only implements just enough to allow free actions (transfer of objects, etc).
; There is no intention to implement anything further in core OpenSimulator.
; This functionality has to be provided by third party modules.
;; Enables selling things for $0. Default is true.
SellEnabled = true
CurrencyServer = "https://example.com:8008/"
EconomyModule = DTLNSLMoneyModule
;# {PriceUpload} {} {Price for uploading?} {} 0
;; Money Unit fee to upload textures, animations etc. Default is 0.
PriceUpload = 0
;# {PriceGroupCreate} {} {Fee for group creation} {} 0
;; Money Unit fee to create groups. Default is 0.
PriceGroupCreate = 100
;
;ClientCertFilename = "jogrid_region.p12"
;ClientCertPassword = ""
CheckServerCert = false
;CACertFilename = "jogrid_cacert.crt"
;
;SettlementByWeb = false
;SettlementURL = "http://www.jogrid.net"
;SettlementMessage = "Goto the settlement of accounts Web page. (Testing now)"
UserServer = "https://example.com:8008/" ;; not use localhost or 127.0.0.1
------------------------------------------------------------------------------------------------
MoneyServer.ini
-----------
[Startup]
;
; Place to create a PID file
; PIDFile = "/tmp/money.pid"
[MySql]
;
;Connection parameters of MySQL
hostname = localhost ; Name of MySQL Server
database = money
username = money
password = ********
pooling = false
port = 3306
;
; Max DB connections kept by money server.
MaxConnection = 10
[MoneyServer]
;
; If the user is not found in database,he/she will be created with the default balance.
DefaultBalance = 0
; Name of this Server
;HostName = localhost
;
; If "00000000-0000-0000-0000-000000000000" is specified, all avatars can get money from system.
; If "" is specified, nobody can get money.
BankerAvatar = "684208a-a842-4667-888e-cd09347c087e"
;
; If you want to use llGiveMoney() function normally even when payer doesn't login to OpenSim,
; please set true to this valiable
EnableForceTransfer = true
;
; send money to avatar by MoneyScript (for Bonus)
EnableScriptSendMoney = true
MoneyScriptAccessKey = "123456" ;; specify same secret key in include/config.php or WI(XoopenSim/Modlos)
MoneyScriptIPaddress = "123.123.12.123" ;; not use 127.0.0.1
;
; Message that displayed in blue dialog, when balance is updated.
; If "" is specified, blue dialog is not displayed.
; You can use {0} and {1} in message string.
; {0} means amount and {1} means avatar name or object owner name
BalanceMessageLandSale = "Paid the Money L${0} for Land." ;; for buy the land
BalanceMessageScvLandSale = "" ;; for get the money of the sold land
BalanceMessageSendGift = "Sent NM${0} to {1}." ;; for send gift to other avatar
BalanceMessageReceiveGift = "Received Gift L${0} from {1}." ;; for receieve gift from other avatar
BalanceMessagePayCharge = "" ;; for upload and group creation charge
BalanceMessageBuyObject = "Bought the Object L${0} from {1}." ;; for buy the object
BalanceMessageGetMoney = "Got the Money L${0} from {1}." ;; for get the money from object by llGiveMoney()
BalanceMessageBuyMoney = "Bought the Money L${0}." ;; for buy the money from system
BalanceMessageReceiveMoney = "Received L${0} from System." ;; for receive the money from system by send_money() script
BalanceMessageRollBack = "RollBack the Transaction: L${0} from/to {1}." ;; when roll back ocuurred
;
;
; for HTTPS Server
ServerCertFilename = "SineWaveCert.pfx"
ServerCertPassword = "123"
;ServerCertFilename = "server_cert.p12"
;ServerCertPassword = "123"
; for Client Authentication from MoneyModule
;CheckClientCert = true;
;CACertFilename = "cacert.crt"
;ClientCrlFilename = "clcrl.crt"
;
; for XML RPC Client Authentication to MoneyModule
;CheckServerCert = false;
;ClientCertFilename = "client_cert.p12"
;ClientCertPassword = ""
------------------------------------------------------------------------------------------------
robust.ini
-----------
; helper uri: optional: if it exists if will be used to tell the client to use
; this for all economy related things
;economy = ${Const|BaseURL}:${Const|PublicPort}/currency/helper/
economy = http://www.example.com/currency/helper/
------------------------------------------------------------------------------------------------
config.php (in config and include)
-----------
// Please set this hepler script URL and directory
if (!defined('ENV_HELPER_URL')) define('ENV_HELPER_URL', 'http://www.example.com/currency/helper/');
if (!defined('ENV_HELPER_PATH')) define('ENV_HELPER_PATH', '/var/www/currency/helper/');
//////////////////////////////////////////////////////////////////////////////////i
// Valiables for OpenSim
// Please set MySQL DB access information
define('OPENSIM_DB_HOST', 'localhost');
define('OPENSIM_DB_NAME', 'money');
define('OPENSIM_DB_USER', 'money');
define('OPENSIM_DB_PASS', '***********');
//
define('OPENSIM_DB_MYSQLI', true); // if you use MySQLi interface, please set true
// Money Server Access Key
// Please set same key with MoneyScriptAccessKey in MoneyServer.ini
define('CURRENCY_SCRIPT_KEY', '123456');
// 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', '1234'); // Read Key
define('XMLGROUP_WKEY', '1234'); // Write key
thank you for your reply.
I have: 0.8.1 for OpenSim-0.8.1 (Binaries are included. not need to compile) on Linux server.
I did: CheckServerCert = false and I don't have the error message about the certificat any more.
But still the same error, when I try to buy a land or buy currency, "couldn't resolve host name".
This message is on the viewer window you have when you buy a land or buy currency.
Here my files (I have changed host by example.com)
Thanks a lot.
------------------------------------------------------------------------------------------------
opensim.ini
-----------
[Economy]
;# {SellEnabled} {} {Enable selling for 0?} {true false} true
; The default economy module only implements just enough to allow free actions (transfer of objects, etc).
; There is no intention to implement anything further in core OpenSimulator.
; This functionality has to be provided by third party modules.
;; Enables selling things for $0. Default is true.
SellEnabled = true
CurrencyServer = "https://example.com:8008/"
EconomyModule = DTLNSLMoneyModule
;# {PriceUpload} {} {Price for uploading?} {} 0
;; Money Unit fee to upload textures, animations etc. Default is 0.
PriceUpload = 0
;# {PriceGroupCreate} {} {Fee for group creation} {} 0
;; Money Unit fee to create groups. Default is 0.
PriceGroupCreate = 100
;
;ClientCertFilename = "jogrid_region.p12"
;ClientCertPassword = ""
CheckServerCert = false
;CACertFilename = "jogrid_cacert.crt"
;
;SettlementByWeb = false
;SettlementURL = "http://www.jogrid.net"
;SettlementMessage = "Goto the settlement of accounts Web page. (Testing now)"
UserServer = "https://example.com:8008/" ;; not use localhost or 127.0.0.1
------------------------------------------------------------------------------------------------
MoneyServer.ini
-----------
[Startup]
;
; Place to create a PID file
; PIDFile = "/tmp/money.pid"
[MySql]
;
;Connection parameters of MySQL
hostname = localhost ; Name of MySQL Server
database = money
username = money
password = ********
pooling = false
port = 3306
;
; Max DB connections kept by money server.
MaxConnection = 10
[MoneyServer]
;
; If the user is not found in database,he/she will be created with the default balance.
DefaultBalance = 0
; Name of this Server
;HostName = localhost
;
; If "00000000-0000-0000-0000-000000000000" is specified, all avatars can get money from system.
; If "" is specified, nobody can get money.
BankerAvatar = "684208a-a842-4667-888e-cd09347c087e"
;
; If you want to use llGiveMoney() function normally even when payer doesn't login to OpenSim,
; please set true to this valiable
EnableForceTransfer = true
;
; send money to avatar by MoneyScript (for Bonus)
EnableScriptSendMoney = true
MoneyScriptAccessKey = "123456" ;; specify same secret key in include/config.php or WI(XoopenSim/Modlos)
MoneyScriptIPaddress = "123.123.12.123" ;; not use 127.0.0.1
;
; Message that displayed in blue dialog, when balance is updated.
; If "" is specified, blue dialog is not displayed.
; You can use {0} and {1} in message string.
; {0} means amount and {1} means avatar name or object owner name
BalanceMessageLandSale = "Paid the Money L${0} for Land." ;; for buy the land
BalanceMessageScvLandSale = "" ;; for get the money of the sold land
BalanceMessageSendGift = "Sent NM${0} to {1}." ;; for send gift to other avatar
BalanceMessageReceiveGift = "Received Gift L${0} from {1}." ;; for receieve gift from other avatar
BalanceMessagePayCharge = "" ;; for upload and group creation charge
BalanceMessageBuyObject = "Bought the Object L${0} from {1}." ;; for buy the object
BalanceMessageGetMoney = "Got the Money L${0} from {1}." ;; for get the money from object by llGiveMoney()
BalanceMessageBuyMoney = "Bought the Money L${0}." ;; for buy the money from system
BalanceMessageReceiveMoney = "Received L${0} from System." ;; for receive the money from system by send_money() script
BalanceMessageRollBack = "RollBack the Transaction: L${0} from/to {1}." ;; when roll back ocuurred
;
;
; for HTTPS Server
ServerCertFilename = "SineWaveCert.pfx"
ServerCertPassword = "123"
;ServerCertFilename = "server_cert.p12"
;ServerCertPassword = "123"
; for Client Authentication from MoneyModule
;CheckClientCert = true;
;CACertFilename = "cacert.crt"
;ClientCrlFilename = "clcrl.crt"
;
; for XML RPC Client Authentication to MoneyModule
;CheckServerCert = false;
;ClientCertFilename = "client_cert.p12"
;ClientCertPassword = ""
------------------------------------------------------------------------------------------------
robust.ini
-----------
; helper uri: optional: if it exists if will be used to tell the client to use
; this for all economy related things
;economy = ${Const|BaseURL}:${Const|PublicPort}/currency/helper/
economy = http://www.example.com/currency/helper/
------------------------------------------------------------------------------------------------
config.php (in config and include)
-----------
// Please set this hepler script URL and directory
if (!defined('ENV_HELPER_URL')) define('ENV_HELPER_URL', 'http://www.example.com/currency/helper/');
if (!defined('ENV_HELPER_PATH')) define('ENV_HELPER_PATH', '/var/www/currency/helper/');
//////////////////////////////////////////////////////////////////////////////////i
// Valiables for OpenSim
// Please set MySQL DB access information
define('OPENSIM_DB_HOST', 'localhost');
define('OPENSIM_DB_NAME', 'money');
define('OPENSIM_DB_USER', 'money');
define('OPENSIM_DB_PASS', '***********');
//
define('OPENSIM_DB_MYSQLI', true); // if you use MySQLi interface, please set true
// Money Server Access Key
// Please set same key with MoneyScriptAccessKey in MoneyServer.ini
define('CURRENCY_SCRIPT_KEY', '123456');
// 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', '1234'); // Read Key
define('XMLGROUP_WKEY', '1234'); // Write key
投票数:188
平均点:4.41
投稿ツリー
-
RemoteCertificateNameMismatch (notremonde, 2015-9-19 12:51)
-
Re: RemoteCertificateNameMismatch (iseki, 2015-9-20 0:06)
-
Re: RemoteCertificateNameMismatch (notremonde, 2015-9-20 3:04)
-
Re: RemoteCertificateNameMismatch (iseki, 2015-9-20 10:54)
-
Re: RemoteCertificateNameMismatch (notremonde, 2015-9-20 14:41)
-
Re: RemoteCertificateNameMismatch (iseki, 2015-9-20 19:17)
-
Re: RemoteCertificateNameMismatch (notremonde, 2015-9-20 20:30)
-
Re: RemoteCertificateNameMismatch (iseki, 2015-9-21 11:27)
-
Re: RemoteCertificateNameMismatch (notremonde, 2015-9-21 17:01)
-
Re: RemoteCertificateNameMismatch (notremonde, 2015-9-21 23:18)
-
Re: RemoteCertificateNameMismatch (iseki, 2015-9-22 2:08)
-
Re: RemoteCertificateNameMismatch (notremonde, 2015-9-22 2:25)
-
Re: RemoteCertificateNameMismatch (notremonde, 2015-9-23 5:08)
-
Re: RemoteCertificateNameMismatch (jony, 2016-6-27 11:22)
-