-
Posts
245 -
Joined
-
Last visited
-
Days Won
8
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Posts posted by Rivers
-
-
On 1/31/2025 at 3:04 AM, ian02545 said:
Hi thanks for the great guide! However, what IP should I put inside my clientinfo.xml ?
In this guide you will use the instruction:
- Replace 127.0.0.1 with your Public IPv4 address.
You can easily find this in your network settings; if you're having issues there then Google "What's my IP?" and Google should tell you. (AI Response won't tell you the correct IP)
-
On 1/19/2025 at 5:28 PM, vindi said:
when doing this "
mysql -u raguser -p ragserver < /home/raguser/Server/rAthena/sql-files/main.sql
this is what the terminal says "Access denied for user 'raguser'@'localhost' (using password: YES)"This can happen when you try to access the sql terminal using an un-authorized user. I'd recommend logging in on the "root" sql user and adjusting your "raguser" to have admin level privs.
Access root using:
sudo mysql -u root -p
Grant privs and flush to take effect immediately:
GRANT ALL PRIVILEGES ON ragserver. * TO 'raguser'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON * . * TO 'raguser'@'%' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON * . * TO 'raguser'@'localhost' WITH GRANT OPTION;
FLUSH PRIVILEGES;
If any command fails, such as '%' is no recognized, there's an alternative option. You can log into MySQL directly from the website as the 'root' user and manually alter the user database to allow your 'raguser' admin access. -
On 1/12/2025 at 3:22 PM, thunginamue said:
does this work even with a non-static IP provided by the ISP? like a cgnat connection?
Sometimes no. It really depends on the host that provided the address to you. If you don't have control over your host IP then your data is likely being shared with the host.
I'd recommend trying t set this up on a simple device, such as a phone or alternate computer, to see if this problem occurs still. -
-
On 8/28/2024 at 8:23 AM, Lapinal said:
Is there any way to do it using a Wifi connection? Or would I have to obtain an ethernet cable for it?You can indeed use your wifi. Sorry for the late reply. I could have sworn I sent this already.
Either way, you'll need to allow the RO ports through your Wifi router. Access your wifi router and navigate to the Advanced settings where you can find Port forwarding or NAT settings. This is where you'll add a custom value for the three Ragnarok ports.
Edit: Weird. It shows my reply now. Sorry. -
On 8/28/2024 at 8:23 AM, Lapinal said:
Is there any way to do it using a Wifi connection? Or would I have to obtain an ethernet cable for it?When running through a wifi router all you need to do is provide the advanced PORT/NAT settings the appropriate ports to forward and it should accept your connection.
This is all I do for my wifi network, that is.-
1
-
-
Added some more security changes for the subnet settings. You can find information about this at i1.10.0.
-
On 5/2/2024 at 8:30 PM, laonglaing said:
what's the difference between the rathena setup in VM (step 9 and 10) vs the one with step 4 onwards?
also, how can i setup the client from another pc to make it a lan connection?Step Nine and Ten are for the windows emulator to test the server out since rathena doens't work too well in a Linux environment.
-
You're absolutely right. I just started going through the various vilnerabilities in my latest guides. Thanks for pointing this out!
I have updated the guide to include a quick method to disallow anyone but the host(s) to have access to PMA.-
1
-
-
-
On 3/16/2024 at 12:51 PM, Faiz said:
Hi there,
I just followed your guides and it still to be ...
...Good morning. Your IP address is set to a local host IP. You'll need to obtain your IPv4 (you can Google "What's my IP" from the device) and replace all the 198.x.x.x with that IPv4 address. There is also one minor discrepancy on the ssh config. You can remove, or comment out the X11Forwarding to say "no".
-
On 3/13/2024 at 11:39 AM, Faiz said:
Hi, thanks for the tutorial. Can I use this tutorial using VirtualBox to make it online? I noticed that my VirtualBox IP address is not in my router config (client list), is there any trick to do this? Thank you!
This has been tested by a couple others on VBox. You'll need to get the public IP of the VBox which will likely be different from your system's IP. Your Public IPv4 is what you want.
-
I would recommend using the .lua files instead then. It's just as easy to add that and edit using Sublime or Notepad++. You'll need to diff the client executable with custom lua/lub paths though.
-
Updated with how to patch and send patches on the webserver.
-
1
-
-
Updated to include some patching process information. More to come soon.
-
1
-
-
-
STEP SIX: DNS. (Mask your IP)
i1.6.0will help you through this step. Inside are details for eachs tep to masking your IP.
If you need your IP address (IPv4) search on google "What's my IP" and it should show you there.-
1
-
1
-
-
12 hours ago, Piamette said:
I don't need a static IP address for this right?
You'll need an IPV4 unless you're masked by a DNS. If your IP changes, like mine does, you'll need to mask it with a DNS or set the IP addresses to be localhost (127.0.0.1).
-
1
-
-
-Added Batch editing (bulk edit) for images.
-
-
26 minutes ago, HampasLupa said:
how do i get the ssl certificate?
Step Seven getting SSL Certified
i1.7.0
Links are included and underlinked.
-
1
-
-
4 minutes ago, HampasLupa said:
until what step do i continue? seems next steps are also relataed to masking ip
Step seven is for making your home page HTTPS instead of HTTP. This can be done with just your IP as well.
Step eight is file transfer protocol which is also able to be done withjust the IP.
For these next steps the DNS is optional as a feature, but still recommended if you plan to publish this website publicly.-
1
-
-
3 minutes ago, HampasLupa said:
thanks! i look at athena conf seems i made a typo
about masking ip, can i skip that ?
You can, yes. This is only necessary if you want to mask the IP with a domain name.
-
1
-
-
If your password has circular crackets ) or ( or a double quotation " remove them and update the remaining files with those passwords. Also be sure inside inter_athena.conf that you've set to yes the "Case Sensitive Password" option.
[Tutorial] Setting up home-based server for FREE (Ubuntu) & After-Installation Steps
in Installation Support
Posted
Try using :
subnet: 255.0.0.0:127.0.0.1:127.0.0.1
subnet: 255.0.0.0:IP_public:IP_public
And Ensure the ports are allowed through the firewall(s).