Thread: How do I set up a server on a Linux VPS?

Results 1 to 7 of 7
  1. #1 How do I set up a server on a Linux VPS? 
    Registered Member
    Join Date
    May 2008
    Posts
    117
    Thanks given
    6
    Thanks received
    0
    Rep Power
    45
    I'm wondering how I would go by setting up a server on a Linux VPS.

    I've heard it's not possible, but I'm just wondering if it is.

    Thanks for any help.

    NOTE: The Linux is CentOS.
    Reply With Quote  
     

  2. #2  
    Sub
    Sub is offline
    sυввч

    Sub's Avatar
    Join Date
    Aug 2007
    Age
    21
    Posts
    4,325
    Thanks given
    1,082
    Thanks received
    346
    Discord
    View profile
    Rep Power
    2755
    [Only registered and activated users can see links. ]

    use the search button nubby
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    May 2008
    Posts
    117
    Thanks given
    6
    Thanks received
    0
    Rep Power
    45
    Quote Originally Posted by Sub View Post
    [Only registered and activated users can see links. ]

    use the search button nubby
    I already have nubby.

    Thanks anyway.
    Reply With Quote  
     

  4. #4  
    Banned

    Join Date
    Jul 2008
    Posts
    2,056
    Thanks given
    26
    Thanks received
    98
    Rep Power
    0
    Lol @ you for buying a linux VPS.
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    May 2008
    Posts
    117
    Thanks given
    6
    Thanks received
    0
    Rep Power
    45
    Quote Originally Posted by Jonny J View Post
    Lol @ you for buying a linux VPS.


    They're the cheaper option so I thought for starting out, they'll be better till I can get a decent cash flow and upgrade to a dedi.

    Still need help ~ the Linux is CentOS.
    Reply With Quote  
     

  6. #6  
    Sub
    Sub is offline
    sυввч

    Sub's Avatar
    Join Date
    Aug 2007
    Age
    21
    Posts
    4,325
    Thanks given
    1,082
    Thanks received
    346
    Discord
    View profile
    Rep Power
    2755
    Quote Originally Posted by Sithling View Post


    They're the cheaper option so I thought for starting out, they'll be better till I can get a decent cash flow and upgrade to a dedi.

    Still need help ~ the Linux is CentOS.
    just search how to setup a java thing on google.
    Reply With Quote  
     

  7. #7  
    Programmer, Contributor, RM and Veteran




    Join Date
    Mar 2007
    Posts
    5,074
    Thanks given
    2,625
    Thanks received
    3,578
    Discord
    View profile
    Rep Power
    5000
    Quote Originally Posted by Jonny J View Post
    Lol @ you for buying a linux VPS.
    Quote Originally Posted by thiefmn6092 View Post
    Hi, i am going to just throw out a few small tips to optimize your code. Unfortunately, with the way this community works, it takes a great deal to get people to use anything outside of what they know and then the transition period takes to long ( for example, with the #508 r client ). There are a few things you can do that take little to no skill to really improve the performance of your server.

    1. Don't use Windows! I'm not saying this because of the typical stereotype that Windows "sucks" and all of that. A great amount of time is spend inside of native code using system calls with Runescape servers. Windows does not have the available functions like Linux, Unix and other operating systems do that are cheapeand most of the time, free to use entirely. Windows also has only one function for detecting the status of sockets, "select". "select" is known to not scale well with a high number of active sockets. Linux and Unix systems offer calls such as "poll", "epoll" and "kqueue" which are all implemented differently and generally are better. "poll" is not that big of an improvement over "select", though. Using these different Operating Systems usually means ( especially in the server virtual machines case ) the Java Virtual Machine uses these system functions to implement libraries such as "nio". One more thing, do not even bother trying to say Windows is not bad when you have completion ports ( which is another way of doing multi-threaded IO ) as they are not very good either.
    Just thought I'd point that out.
    .
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •