Diconfrost VaNz Posted November 13, 2011 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 996 Reputation: 47 Joined: 11/13/11 Last Seen: March 27 Share Posted November 13, 2011 (edited) Download these files first:MySQL Gui ToolsMySQL EssentialsDownload Compiled SVN here(I suggest to use trunk) or use TorquiseSVN to download rAthena SVN in its Repository and use Visual Studio for recompiling.When you're done downloading those files, follow these steps:==========// SVN Files Setup //==========1) Goto your downloaded svn and extract it.2) Goto conf folder and look for char_athena.txt, inter_athena.txt, map_athena.txt and subnet_athena.txt3) Open char_athena.txt, and map_athena.txt and look for this: // Server Communication username and password. userid: s1 passwd: p1 and change that into // Server Communication username and password. userid: ragnarok passwd: ragnarok 2) Open your char_athena.txt again and look for this: // Login Server IP // The character server connects to the login server using this IP address. // NOTE: This is useful when you are running behind a firewall or are on // a machine with multiple interfaces. //login_ip: 127.0.0.1 // The character server listens on the interface with this IP address. // NOTE: This allows you to run multiple servers on multiple interfaces // while using the same ports for each server. //bind_ip: 127.0.0.1 // Login Server Port login_port: 6900 // Character Server IP // The IP address which clients will use to connect. // Set this to what your server's public IP address is. //char_ip: 127.0.0.1 remove the "//" in login_ip and char_ip. It will look like this: // Login Server IP // The character server connects to the login server using this IP address. // NOTE: This is useful when you are running behind a firewall or are on // a machine with multiple interfaces. login_ip: 127.0.0.1 // The character server listens on the interface with this IP address. // NOTE: This allows you to run multiple servers on multiple interfaces // while using the same ports for each server. //bind_ip: 127.0.0.1 // Login Server Port login_port: 6900 // Character Server IP // The IP address which clients will use to connect. // Set this to what your server's public IP address is. char_ip: 127.0.0.1 3) Open your inter_athena.txt and look for this: // Global SQL settings // overriden by local settings when the hostname is defined there // (currently only the login-server reads/obeys these settings) sql.db_hostname: 127.0.0.1 sql.db_port: 3306 sql.db_username: ragnarok sql.db_password: ragnarok sql.db_database: ragnarok sql.codepage: // MySQL Character SQL server char_server_ip: 127.0.0.1 char_server_port: 3306 char_server_id: ragnarok char_server_pw:ragnarok char_server_db: ragnarok // MySQL Map SQL Server map_server_ip: 127.0.0.1 map_server_port: 3306 map_server_id: ragnarok map_server_pw: ragnarok map_server_db: ragnarok // MySQL Log SQL Database log_db_ip: 127.0.0.1 log_db_port: 3306 log_db_id: ragnarok log_db_pw: ragnarok log_db_db: log log_codepage: if you're using my guide that is a given and you don't need to edit them. But if you're planning to change any of here like the user password or what, you need to change this too.4) Open your map_athena.txt and look for this: // Character Server IP // The map server connects to the character server using this IP address. // NOTE: This is useful when you are running behind a firewall or are on // a machine with multiple interfaces. //char_ip: 127.0.0.1 // The map server listens on the interface with this IP address. // NOTE: This allows you to run multiple servers on multiple interfaces // while using the same ports for each server. //bind_ip: 127.0.0.1 // Character Server Port char_port: 6121 // Map Server IP // The IP address which clients will use to connect. // Set this to what your server's public IP address is. //map_ip: 127.0.0.1 // Map Server Port map_port: 5121 remove "//" in char_ip, and map_ip, it will look like this: // Character Server IP // The map server connects to the character server using this IP address. // NOTE: This is useful when you are running behind a firewall or are on // a machine with multiple interfaces. char_ip: 127.0.0.1 // The map server listens on the interface with this IP address. // NOTE: This allows you to run multiple servers on multiple interfaces // while using the same ports for each server. //bind_ip: 127.0.0.1 // Character Server Port char_port: 6121 // Map Server IP // The IP address which clients will use to connect. // Set this to what your server's public IP address is. map_ip: 127.0.0.1 // Map Server Port map_port: 5121 5) Open you subnet_athena.txt and you'll see this: subnet: 255.0.0.0:127.0.0.1:127.0.0.1 If you changed the ips in char_athena.txt, inter_athena.txt and map_athena.txt, you should consider to put them here too.for example, the ip is 125.60.252.169 subnet: 255.0.0.0:125.60.252.169:125.60.252.169 ==========// MySQL Setup //==========1) Install MySQL Gui Tools2) Install MySQL Essentials. Choose MySQL 501. Enter "ragnarok" for the password for "root"(remember you can change this later on, this is just a basic one). Just click the Execute and when done, just click Finish. Go to Task Manager and check if mysqld-nt.exe is running in processes although it's not necessary if no error occured during installation.3) Start MySQL Query nd it will prompt up a window. Fill in Stored Connection: (leave it blank) Server Host: localhost Port: 3306 Username: root Password: (remember the password you made when you're installing MySQL Essentials?put it here) Default Schema: ragnarok(you can change this afterwards, this is just a basic name) and leave other field as it is but to make sure everything is correct. Then press enter.4) *When you are in MySQL Query Browser, click once on ragnarok database that is below Schemata.*Go to menu, click File and choose Open Script...*We need to execute main.sql, mail.sql and log.sql (execute upgrade_svn* .sql files, too, if require) so, look for the main.sql, which should be in sql-files folder in eAthena Server and other .sql files.*Pick main.sql and click Open.*Click the Green Execute Icon to the upper right to execute. Do the same with mail.sql now and execute it.*When you are done, we need to create log database by right-click somewhere within the table where the databases are and choose Create New Schema and type in log and click OK.*Double-click on log database, go to menu, click File, choose Open Script..., open logs.sql and Execute.*Double click ragnarok database to expand to see all tables.*Look for login table and double click and double click again.*Click once on Edit so, we can edit the cells. This icon should be in bottom.*For userid: and user_pass:, type in the name that you used in char_athena.conf and map_athena.conf.*When you are done editing, just click the Apply Changes that is next to the Edit icon.5) Goto MySQL Administrator. Login there. Stored Connection: (leave it blank) Server Host: localhost Port: 3306 Username: root Password: (remember the password you made when you're installing MySQL Essentials?put it here) Then Enter.6) And you're inside the MySQL Administrator now. Go to User Administration and Click New User and enter this: MySQL User: ragnarok Password: ragnarok Confirm Password: ragnarok then click "Apply Changes".After that, Click the ragnarok user and goto schema priviledges(right-side of user information). Click ragnarok and log database and click "<<", then click "Apply Changes"And we're done Edited November 14, 2014 by Diconfrost VaNz 5 Quote Link to comment Share on other sites More sharing options...
vBrenth Posted November 13, 2011 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 311 Reputation: 46 Joined: 11/06/11 Last Seen: 2 hours ago Share Posted November 13, 2011 But i prefer to make a Advance Guide like how they will set up the server starting from downloading the SVN using tortoise, recompiling, setting up, installing mySQS and more. And much better if you provide a screenshot with it. But good job for a nice guide. Quote Link to comment Share on other sites More sharing options...
papol22 Posted December 14, 2011 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 70 Reputation: 1 Joined: 12/14/11 Last Seen: August 12, 2019 Share Posted December 14, 2011 ano pong trunnk ang mgandang gmitin? 1 Quote Link to comment Share on other sites More sharing options...
noobjaw Posted December 15, 2011 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 4 Reputation: 0 Joined: 12/15/11 Last Seen: November 2, 2013 Share Posted December 15, 2011 (edited) sna po mga guides with pictures po pra madali lng po sa mga basic newbie po...lalo na po sa MySQL... Edited December 15, 2011 by noobjaw Quote Link to comment Share on other sites More sharing options...
breadpanz Posted December 22, 2011 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 12/04/11 Last Seen: August 25, 2018 Share Posted December 22, 2011 Kuya Pa Mirror naman ng Mysql Hindi ako MakaDl Sa MediaFire Salamat. Quote Link to comment Share on other sites More sharing options...
Diconfrost VaNz Posted December 26, 2011 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 996 Reputation: 47 Joined: 11/13/11 Last Seen: March 27 Author Share Posted December 26, 2011 @papol22 = ung latest @noobjaw = try ko @breadpanz = try mong isearch sa google meron dun Quote Link to comment Share on other sites More sharing options...
Drakkus Posted December 28, 2011 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 386 Reputation: 15 Joined: 11/17/11 Last Seen: September 13, 2024 Share Posted December 28, 2011 (edited) // Login Server IP // The character server connects to the login server using this IP address. // NOTE: This is useful when you are running behind a firewall or are on // a machine with multiple interfaces. //login_ip: 127.0.0.1 // The character server listens on the interface with this IP address. // NOTE: This allows you to run multiple servers on multiple interfaces // while using the same ports for each server. //bind_ip: 127.0.0.1 // Login Server Port login_port: 6900 // Character Server IP // The IP address which clients will use to connect. // Set this to what your server's public IP address is. //char_ip: 127.0.0.1 The guide is very nice and simply basic, just few suggestion. why don't you tell everybody or clarify the Information. About this. You can either use 'HAMACHI' or 'No-IP.org' somehow there are using 'Router' that can't be using in Dynamic I.P which players could not Connect. you must specify the guide, if they want to be ONLINE the Server or OFFLINE. And the 'SAFE' way to include the Information. Better to use this 'GUIDE' for full information. Links ---> http://www.eathena.w...howtopic=228231 Guide for 'No.IP.org' Links ---> http://www.eathena.w...ndpost&p=782543 Guide for 'HAMACHI' Links ----> http://www.eathena.ws/board/index.php?showtopic=114681 Just prefer the given links for more information. No OFFENSE on this topic, i just wanted to help to make it more 'SPECIFY' the all information. So that some newbies are always Asking what is the Problem specially in the 'SERVER SIDE' and 'CLIENT SIDE' Thank you! Regards, Mindless Edited December 28, 2011 by Mindless 1 Quote Link to comment Share on other sites More sharing options...
Diconfrost VaNz Posted December 28, 2011 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 996 Reputation: 47 Joined: 11/13/11 Last Seen: March 27 Author Share Posted December 28, 2011 using hamachi is not advisable so don't include that xD it's hackable(SO EASY AND UNPROFESSIONAL TO USE) xD and using guides is usually for basic purposes LOL Quote Link to comment Share on other sites More sharing options...
Drakkus Posted December 28, 2011 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 386 Reputation: 15 Joined: 11/17/11 Last Seen: September 13, 2024 Share Posted December 28, 2011 using hamachi is not advisable so don't include that xD it's hackable(SO EASY AND UNPROFESSIONAL TO USE) xD and using guides is usually for basic purposes LOL I know, using 'Hamachi' is not safe easily to 'HACK' i'm just including it for some Information though it's not necessary.(For Newbies) Some of your Guide is coming From 'eAthena' So there is no need to be 'OFFENSE' on this, i'm just giving you some 'HINTS' might help to Others. Understand? Regards, Mindless Quote Link to comment Share on other sites More sharing options...
Diconfrost VaNz Posted December 28, 2011 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 996 Reputation: 47 Joined: 11/13/11 Last Seen: March 27 Author Share Posted December 28, 2011 what can it help when it's not secured -.- and you say some of it from eathena?lets say i just learned from it and apply it on to myself?or you can say it was more precise than the other?or i more recommend some of it you're not helping you know that's what i want to say Quote Link to comment Share on other sites More sharing options...
Drakkus Posted December 28, 2011 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 386 Reputation: 15 Joined: 11/17/11 Last Seen: September 13, 2024 Share Posted December 28, 2011 what can it help when it's not secured -.- and you say some of it from eathena?lets say i just learned from it and apply it on to myself?or you can say it was more precise than the other?or i more recommend some of it you're not helping you know that's what i want to say Awful, you look so 'DEFENSIVE' in your TOPIC. means, you can't accept my HELP though i just give you some HINTS, to much argument for 'PINOY' they don't want to accept it. Okay, I'll STOP this one, looking forward for your 'GUIDES' your Lucky i can't get em all the INFORMATION for the 'eA Emulator' since i'm out of eAthena a couple of years maybe 4Years from now. Regards, Mindless 1 Quote Link to comment Share on other sites More sharing options...
Diconfrost VaNz Posted December 29, 2011 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 996 Reputation: 47 Joined: 11/13/11 Last Seen: March 27 Author Share Posted December 29, 2011 no comment on that one if you just want to help then just help them as far as it is secured that's what i'm saying. 1 Quote Link to comment Share on other sites More sharing options...
Alphochio Posted March 7, 2012 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 22 Reputation: 2 Joined: 02/26/12 Last Seen: August 26, 2017 Share Posted March 7, 2012 no comment on that one if you just want to help then just help them as far as it is secured that's what i'm saying. I totally agree.. I registered in eAthena last February and so far what I observed in eAthena even here in rAthena the process of assisting/helping the new comers/newbies is totally slow took me days to get some replies, "regarding this and regarding that etc." excluding the time and effort of applying what people instruct you to do and the process of having the solutions if you got any errors. well for this guide I find it effective, it reach its goal... compared on reading the rAthena guide for some instances maybe.. But I do hope that there would be someone if it's not done yet.. someone who is EXPERT enough having the authority to do a "Video Tutorial" on what rAthena Wiki talks about. P.S - Dont we have a chat box on this site so that people can communicate fast and efficient? 1 Quote Link to comment Share on other sites More sharing options...
NANORAY Posted March 10, 2012 Group: Members Topic Count: 95 Topics Per Day: 0.02 Content Count: 210 Reputation: 3 Joined: 12/20/11 Last Seen: March 1, 2019 Share Posted March 10, 2012 pwede ko po ba gamitin ung trunk ng rathena gamit ang guide nyu po? Quote Link to comment Share on other sites More sharing options...
noobjaw Posted March 15, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 4 Reputation: 0 Joined: 12/15/11 Last Seen: November 2, 2013 Share Posted March 15, 2012 (edited) hindi ko lang po magets eto...wala po ung mail.sql ang gamit ko po eto 3CeAM-SQL-660[Trunk] wala po sya mail.sql *We need to execute main.sql, mail.sql and log.sql (execute upgrade_svn* .sql files, too, if require) so, look for the main.sql, which should be in sql-files folder in eAthena Server and other .sql files. *Pick main.sql and click Open. *Click the Green Execute Icon to the upper right to execute. Do the same with mail.sql now and execute it. *When you are done, we need to create log database by right-click somewhere within the table where the databases are and choose Create New Schema and type in log and click OK. *Double-click on log database, go to menu, click File, choose Open Script..., open logs.sql and Execute. *Double click ragnarok database to expand to see all tables. *Look for login table and double click and double click again. *Click once on Edit so, we can edit the cells. This icon should be in bottom. *For userid: and user_pass:, type in the name that you used in char_athena.conf and map_athena.conf. *When you are done editing, just click the Apply Changes that is next to the Edit icon. paki post naman po kung ano exactly ggawin mga bossing... salamat po! Edited March 15, 2012 by noobjaw Quote Link to comment Share on other sites More sharing options...
taken Posted March 16, 2012 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 03/16/12 Last Seen: March 24, 2012 Share Posted March 16, 2012 (edited) tapos ko napo lahat ng nasa guiide. Q> pano napo marun yung ragnarok? Edited March 16, 2012 by taken Quote Link to comment Share on other sites More sharing options...
noobjaw Posted March 16, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 4 Reputation: 0 Joined: 12/15/11 Last Seen: November 2, 2013 Share Posted March 16, 2012 follow questions please... Quote Link to comment Share on other sites More sharing options...
Diconfrost VaNz Posted April 17, 2012 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 996 Reputation: 47 Joined: 11/13/11 Last Seen: March 27 Author Share Posted April 17, 2012 Sorry for inactivity. As of now, i'm currently working as a accountant/programmer in a company. Thanks for the consideration. P.S. Just post your questions here and i'll try to answer them. Quote Link to comment Share on other sites More sharing options...
MisUah Posted April 22, 2012 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 65 Reputation: 0 Joined: 11/24/11 Last Seen: February 25, 2014 Share Posted April 22, 2012 lol i hope someone will make a latest guide Quote Link to comment Share on other sites More sharing options...
Diconfrost VaNz Posted April 26, 2012 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 996 Reputation: 47 Joined: 11/13/11 Last Seen: March 27 Author Share Posted April 26, 2012 hope so Quote Link to comment Share on other sites More sharing options...
vBrenth Posted June 3, 2012 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 311 Reputation: 46 Joined: 11/06/11 Last Seen: 2 hours ago Share Posted June 3, 2012 Still very useful.. always visiting this... pag nid ko ung download link XP 1 Quote Link to comment Share on other sites More sharing options...
Diconfrost VaNz Posted June 20, 2012 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 996 Reputation: 47 Joined: 11/13/11 Last Seen: March 27 Author Share Posted June 20, 2012 LOL xD Quote Link to comment Share on other sites More sharing options...
MisUah Posted July 22, 2012 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 65 Reputation: 0 Joined: 11/24/11 Last Seen: February 25, 2014 Share Posted July 22, 2012 anung version n ng MySQL ang gnagamit nyo n?? Quote Link to comment Share on other sites More sharing options...
Diconfrost VaNz Posted August 6, 2012 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 996 Reputation: 47 Joined: 11/13/11 Last Seen: March 27 Author Share Posted August 6, 2012 ung ganyan prn ang gamit ko pero my latest na ee google mo Quote Link to comment Share on other sites More sharing options...
xtianresente Posted August 12, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 8 Reputation: 0 Joined: 08/08/12 Last Seen: August 15, 2012 Share Posted August 12, 2012 (edited) meron po bang full guide for congifuring my athena using hamachi? dun sa map_athena.conf and char_athena after palitan ung mga ip with my Hamachi IP meron pa po ba ibang gagawin? thank you Edited August 12, 2012 by xtianresente Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.