Jump to content

Rivers

Members
  • Posts

    245
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by Rivers

  1. 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:

    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)

  2. 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.

  3. 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.

  4. 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.

  5. 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".

    image.png

  6. 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.

  7. 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.

    • Upvote 1
×
×
  • Create New...