Iceyz Posted March 21, 2020 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 46 Reputation: 2 Joined: 06/07/19 Last Seen: September 26, 2022 Share Posted March 21, 2020 I've set the max player connection to 3,000 and the server is still stuck on 1024. When the server got 1024 online players then the other players cant login anymore. ./configure --with-maxconn=300 as per below https://github.com/rathena/rathena/pull/3799 Quote Link to comment Share on other sites More sharing options...
0 M a p l e Posted March 21, 2020 Group: Members Topic Count: 22 Topics Per Day: 0.01 Content Count: 271 Reputation: 63 Joined: 02/04/19 Last Seen: October 27, 2023 Share Posted March 21, 2020 3 hours ago, Krypt said: I've set the max player connection to 3,000 and the server is still stuck on 1024. When the server got 1024 online players then the other players cant login anymore. ./configure --with-maxconn=300 as per below https://github.com/rathena/rathena/pull/3799 try ./configure --with-maxconn=4096 Quote Link to comment Share on other sites More sharing options...
0 STFU Posted March 26, 2020 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 26 Reputation: 0 Joined: 01/22/12 Last Seen: March 30, 2024 Share Posted March 26, 2020 Hi, have you fixed this problem? I'm having the same problem too Quote Link to comment Share on other sites More sharing options...
0 Iceyz Posted March 26, 2020 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 46 Reputation: 2 Joined: 06/07/19 Last Seen: September 26, 2022 Author Share Posted March 26, 2020 Nope. Haven't fixed this problem yet. Quote Link to comment Share on other sites More sharing options...
0 Vector Posted April 1, 2020 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 9 Reputation: 0 Joined: 10/13/13 Last Seen: October 8, 2021 Share Posted April 1, 2020 Same problem here with debian. Any good soul that can help us? In this moments a lot of people in quarantine wanna play RO and this is limiting the servers Quote Link to comment Share on other sites More sharing options...
0 Iceyz Posted April 9, 2020 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 46 Reputation: 2 Joined: 06/07/19 Last Seen: September 26, 2022 Author Share Posted April 9, 2020 Still no solution. Even rAthena devs can't answer it D Quote Link to comment Share on other sites More sharing options...
0 Akkarin Posted April 10, 2020 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1632 Joined: 03/26/12 Last Seen: April 15 Share Posted April 10, 2020 15 hours ago, Krypt said: Still no solution. Even rAthena devs can't answer it D The PR you referenced tells you what you need to change. Google "ulimit". Quote Link to comment Share on other sites More sharing options...
0 Iceyz Posted April 10, 2020 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 46 Reputation: 2 Joined: 06/07/19 Last Seen: September 26, 2022 Author Share Posted April 10, 2020 9 hours ago, Akkarin said: The PR you referenced tells you what you need to change. Google "ulimit". As you can see in the image I provided. The ulimit is already changed. Both hard limit and soft limit based on the ulimit -a command given in the image. Quote Link to comment Share on other sites More sharing options...
0 Akkarin Posted April 10, 2020 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1632 Joined: 03/26/12 Last Seen: April 15 Share Posted April 10, 2020 5 minutes ago, Krypt said: As you can see in the image I provided. Is that globally or for specified user? There are a few things you need - it's not a one-step command. On 4/9/2020 at 3:17 PM, Krypt said: Still no solution. Even rAthena devs can't answer it D Also, I don't want to see ridiculous remarks like this from anyone. Nobody has to help you. Since it's not a limitation with our software we're not even obliged to entertain the idea or providing support for your OS. They also rarely use the forum. Quote Link to comment Share on other sites More sharing options...
0 Iceyz Posted April 10, 2020 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 46 Reputation: 2 Joined: 06/07/19 Last Seen: September 26, 2022 Author Share Posted April 10, 2020 I've tried setting it for both root and the user that is using rAthena. Even changing the limits.conf and other things needed to change in the open file limits. Quote Link to comment Share on other sites More sharing options...
0 Akkarin Posted April 10, 2020 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1632 Joined: 03/26/12 Last Seen: April 15 Share Posted April 10, 2020 Did you put your new file descriptor limit in /etc/sysctl.conf so it persists after a reboot? You need these too. Quote Link to comment Share on other sites More sharing options...
0 Iceyz Posted April 10, 2020 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 46 Reputation: 2 Joined: 06/07/19 Last Seen: September 26, 2022 Author Share Posted April 10, 2020 Yes I've added this one. fs.file-max = 4096 net.ipv4.ip_local_port_range = 1024 65000 and in my limits.conf * soft nproc 65535 * hard nproc 65535 * soft nofile 65535 * hard nofile 65535 root soft nproc 65535 root hard nproc 65535 root soft nofile 65535 root hard nofile 65535 Quote Link to comment Share on other sites More sharing options...
0 VivoXYZ Posted May 26, 2020 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 2 Reputation: 1 Joined: 03/19/20 Last Seen: November 17, 2024 Share Posted May 26, 2020 (edited) On 4/10/2020 at 11:33 PM, Krypt said: Yes I've added this one. fs.file-max = 4096 net.ipv4.ip_local_port_range = 1024 65000 and in my limits.conf * soft nproc 65535 * hard nproc 65535 * soft nofile 65535 * hard nofile 65535 root soft nproc 65535 root hard nproc 65535 root soft nofile 65535 root hard nofile 65535 Dont forget to ./configure --with-maxconn=4096 then make clean server also chmod a+x login-server && chmod a+x char-server && chmod a+x map-server && chmod a+x athena-start Goodluck! On 4/1/2020 at 11:17 PM, Vector said: Same problem here with debian. Any good soul that can help us? In this moments a lot of people in quarantine wanna play RO and this is limiting the servers I'm using Debian 9 Be sure rathena is not running ./athena-start stop First nano /etc/sysctl.conf then add this below fs.file-max = 360000 net.ipv4.ip_local_port_range = 1024 65000 Second nano /etc/security/limits.conf add this file below # End of file * hard nofile 65535 * soft nofile 65535 root hard nofile 65535 root soft nofile 65535 Third ./configure --with-maxconn=4096 Fourth make clean server Fifth chmod a+x login-server && chmod a+x char-server && chmod a+x map-server && chmod a+x athena-start Last ./athena-start start Good luck Edited May 26, 2020 by VivoXYZ 1 Quote Link to comment Share on other sites More sharing options...
Question
Iceyz
I've set the max player connection to 3,000 and the server is still stuck on 1024. When the server got 1024 online players then the other players cant login anymore.
./configure --with-maxconn=300 as per below
https://github.com/rathena/rathena/pull/3799
Link to comment
Share on other sites
12 answers to this question
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.