|
You last visited: Today at 06:01
Advertisement
[GUIDE]How To Install Silkroad Online R Private Server ISRO-R Version Full Setup
Discussion on [GUIDE]How To Install Silkroad Online R Private Server ISRO-R Version Full Setup within the SRO PServer Guides & Releases forum part of the SRO Private Server category.
06/09/2025, 12:31
|
#226
|
elite*gold: 0
Join Date: Jun 2025
Posts: 1
Received Thanks: 0
|
hello, i setup everything and its all green and working, but when i try to login it says "you aren't a registered member with rigid" .
|
|
|
06/23/2025, 02:57
|
#227
|
elite*gold: 0
Join Date: Jun 2025
Posts: 2
Received Thanks: 0
|
sir can update all links anyone dont work, thanks.
|
|
|
06/23/2025, 21:49
|
#228
|
elite*gold: 0
Join Date: Nov 2013
Posts: 127
Received Thanks: 14
|
Hi,
I got a problem with agent server : cannot establish keep alive session : xxxxxx 15883 (bind 0.0.0.0)
i've masked my ip for security reason.
I've tried to edit files, change order of launching module, nothing work, the agent server continue to send me this message.
|
|
|
09/05/2025, 23:13
|
#229
|
elite*gold: 0
Join Date: Apr 2007
Posts: 66
Received Thanks: 0
|
you aren't a registered member with rigid
Quote:
Originally Posted by omar0101
hello, i setup everything and its all green and working, but when i try to login it says "you aren't a registered member with rigid" .
|
Same Problem, anyone has an answer?
|
|
|
09/15/2025, 10:55
|
#230
|
elite*gold: 0
Join Date: Sep 2023
Posts: 14
Received Thanks: 2
|
Quote:
Originally Posted by Skipper159
Same Problem, anyone has an answer?
|
Setup a website  or use a query to register your account:
Code:
USE SILKROAD_R_ACCOUNT
GO
exec _Rigid_Register_User 'ID', 'password in MD5', 'email' , 'US' , '127.0.0.1'
|
|
|
09/17/2025, 20:06
|
#231
|
elite*gold: 0
Join Date: Sep 2015
Posts: 62
Received Thanks: 19
|
because this errror?
Why this error when opening the certification? please help
|
|
|
10/05/2025, 16:28
|
#232
|
elite*gold: 0
Join Date: Oct 2008
Posts: 4
Received Thanks: 2
|
is this iSRO is still alive
|
|
|
10/08/2025, 03:35
|
#233
|
elite*gold: 0
Join Date: Sep 2025
Posts: 5
Received Thanks: 2
|
versao rigid 230 pls
|
|
|
10/10/2025, 20:24
|
#234
|
elite*gold: 0
Join Date: May 2021
Posts: 75
Received Thanks: 12
|
good job bro
Quote:
Originally Posted by autoamticasd
I used different appsettings.json config in Billing folder
Example i used is below:
(change ip to your server ip below and password of the sa user)
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
},
"File": {
"Path": "BillingLog.txt",
"Append": true,
"MinLevel": "Trace",
"FileSizeLimitBytes": 10240,
"MaxRollingFiles": 5
}
},
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://0.0.0.0:18080"
}
}
},
"AuthService": "Simple",
"DbConfig": {
"AccountDB": "Data Source=.\\;TrustServerCertificate=True;Initial Catalog=SILKROAD_R_ACCOUNT;User ID=sa;Password=1;",
"JoymaxPortalDB": "Data Source=.\\;TrustServerCertificate=True;Initial Catalog=GB_JoymaxPortal;User ID=sa;Password=1;"
},
"NotificationService": {
"Type": "Email"
},
"NationPingService": {
"ListenAddress": "0.0.0.0",
"ListenPort": 12989
},
"EmailService": {
"From": "yourEmail",
"FromFriendlyName": "YourServerName??",
"SmtpServer": "smtp.gmail.com",
"UseSSL": true,
"Port": 465,
"Username": "FOLLOW https://code-maze.com/aspnetcore-send-email/",
"Password": "FOLLOW https://code-maze.com/aspnetcore-send-email/",
"SkipTokenValidation": false
},
"ServiceCompany": 11,
"RequestTimeoutSeconds": 60,
"PortalCGIAgentHeader": "Portal_CGI_Agent",
"SaltKey": "eset5ag.nsy-g6ky5.mp",
"AllowedHosts": "*"
}
|
////////////////////////
Quote:
This JSON configuration file is used for an ASP.NET Core server ). Below is a clear explanation of each section:
- **Logging**:
Defines how logs are handled.
- `"Default": "Information"` means the default log level shows information messages.
- `"Microsoft.AspNetCore": "Warning"` and `"Microsoft.EntityFrameworkCore": "Warning"` reduce log noise from the framework.
- `"File"` section defines a log file named `BillingLog.txt` that records trace-level logs, appends new logs, and keeps up to 5 rolling files.
- **Kestrel**:
Sets up the web server endpoint.
- `"Url": "http://0.0.0.0:18080"` means the server listens on all IPs at port **18080**.
- **AuthService**:
Specifies the type of authentication used. Here it's `"Simple"`, meaning basic or custom authentication.
- **DbConfig**:
Contains the connection strings for the SQL Server databases.
- `AccountDB` connects to `SILKROAD_R_ACCOUNT`.
- `JoymaxPortalDB` connects to `GB_JoymaxPortal`.
Both use SQL authentication with user `sa` and password `1`.
- **NotificationService**:
Defines the type of notification system used — `"Email"`.
- **NationReminderService**:
Handles a service that listens on IP `0.0.0.0` and port `12989`.
It’s typically used for inter-server communication or reminders in Silkroad server architecture.
- **EmailService**:
Defines SMTP settings for sending emails.
- `smtp.gmail.com` is the SMTP server.
- SSL is enabled (`"UseSSL": true`) on port 465.
- The username and password fields currently contain placeholder text from a tutorial link.
- `"SkipTokenValidation": false` ensures email tokens are validated.
- **ServiceCompany**, **RequestTimeoutSeconds**, **PortalCGIAgentHeader**, and **SaltKey**:
- `ServiceCompany: 11` is an internal identifier for the company/service type.
- `RequestTimeoutSeconds: 60` sets a 60-second timeout for requests.
- `PortalCGIAgentHeader` defines a header name for communication between services.
- `SaltKey` is used for encryption or password hashing.
- **AllowedHosts**:
`"*"` allows all hosts (used during development).
**Important corrections made:**
1. Fixed invalid `Data Source=.\\;` → changed to `Data Source=.;`
2. Renamed `"NationPingService"` to `"NationReminderService"` for correct service recognition.
3. Verified all commas and syntax are valid JSON.
This configuration file is now valid, readable by ASP.NET Core, and ready for deployment.
|
Quote:
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
},
"File": {
"Path": "BillingLog.txt",
"Append": true,
"MinLevel": "Trace",
"FileSizeLimitBytes": 10240,
"MaxRollingFiles": 5
}
},
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://0.0.0.0:18080"
}
}
},
"AuthService": "Simple",
"DbConfig": {
"AccountDB": "Data Source=.;TrustServerCertificate=True;Initial Catalog=SILKROAD_R_ACCOUNT;User ID=sa;Password=1;",
"JoymaxPortalDB": "Data Source=.;TrustServerCertificate=True;Initial Catalog=GB_JoymaxPortal;User ID=sa;Password=1;"
},
"NotificationService": {
"Type": "Email"
},
"NationReminderService": {
"ListenAddress": "0.0.0.0",
"ListenPort": 12989
},
"EmailService": {
"From": "yourEmail",
"FromFriendlyName": "YourServerName??",
"SmtpServer": "smtp.gmail.com",
"UseSSL": true,
"Port": 465,
"Username": "FOLLOW https://code-maze.com/aspnetcore-send-email/",
"Password": "FOLLOW https://code-maze.com/aspnetcore-send-email/",
"SkipTokenValidation": false
},
"ServiceCompany": 11,
"RequestTimeoutSeconds": 60,
"PortalCGIAgentHeader": "Portal_CGI_Agent",
"SaltKey": "eset5ag.nsy-g6ky5.mp",
"AllowedHosts": "*"
}
|
|
|
|
11/14/2025, 13:03
|
#235
|
elite*gold: 0
Join Date: Oct 2010
Posts: 8
Received Thanks: 0
|
fail: ISRORCert.Database.SqlDbAdapter[0]
DbAdapter error
System.Data.SqlClient.SqlException (0x80131904): A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
---> System.ComponentModel.Win32Exception (2): The system cannot find the file specified.
at System.Data.ProviderBase.DbConnectionPool.TryGetCo nnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionPool.WaitForP endingOpen()
--- End of stack trace from previous location ---
at ISRORCert.Database.DbAdapter.GetConnectionAsync(Ca ncellationToken cancellationToken) in /home/runner/work/ISRORCert/ISRORCert/src/ISRORCert/Database/DbAdapter.cs:line 50
at ISRORCert.Database.DbAdapter.GetDataTableAsync[T](ICollection`1 collection, String cmdText, CancellationToken cancellationToken, DbParameter[] parameters) in /home/runner/work/ISRORCert/ISRORCert/src/ISRORCert/Database/DbAdapter.cs:line 266
ClientConnectionId:00000000-0000-0000-0000-000000000000
Error Number:2,State:0,Class:20
crit: ISRORCert.Model.CertificationManager[0]
Failed to query certification data...
info: Microsoft.Hosting.Lifetime[0]
Application started. Press Ctrl+C to shut down.
info: Microsoft.Hosting.Lifetime[0]
Hosting environment: Production
info: Microsoft.Hosting.Lifetime[0]
Content root path: C:\Joymax_Bins\Cert\
im getting this error when i execute the ISRORCert.bat file .. 3 days looking for a solution with no luck
|
|
|
11/22/2025, 13:04
|
#236
|
elite*gold: 0
Join Date: Jun 2015
Posts: 4
Received Thanks: 0
|
Hi all
Help me solve the problem
When enabling locations like Alexandria, Baghdad, and so on, the loading screen freezes when teleporting to them, and then it's impossible to log in to your character.
When teleporting to Constantinople, Samarkand, and Khotan, everything works fine.
With almost all locations enabled, the monster count is 96,382.
If I reduce the monster count by changing the table, I can teleport to any location, but some unique
monsters disappear.
USE [SILKROAD_R_SHARD]
GO
UPDATE dbo.Tab_RefNest SET dwmaxtotalcount = dwmaxtotalcount/2
How can I run all the locations and move around them without reducing the number of monsters?
or how to reduce the number of monsters without losing unique ones?
|
|
|
Similar Threads
|
[Selling] Jackpot Site | Site + Bot + SQL File + Setup Guide of Site + BOT Setup
08/29/2015 - Counter-Strike Trading - 0 Replies
Hello, who is willing to buy invite you to steam a private message : Steam Community :: NINJAGO. Drejku?
Witam, kto jest chetny do kupienia zapraszam na steam wiadomosc prywatna: Steam Community :: NINJAGO. Drejku?
|
Single install setup private server
10/06/2014 - Lin2 Private Server - 0 Replies
Hi all,
Setting up a L2 server is always coming with troubles and this failed me many times already.
Is there anybody out there who is able to fit all setup steps into a installer program? Click install and the server will be installed/configured on the PC. Just like installing any other original game from the store.
This would be a great help for many people.
looking foreward
|
All times are GMT +1. The time now is 06:01.
|
|