TrueTRG500 Posted May 27, 2013 Posted May 27, 2013 Please Help With Setting Up My Server When I Run It I Get This: C:\Users\*\Desktop\mcserver> java -Xmx10M -Xms10M -jar Tekkit.Jar nogui java is not reconized as an internal or external command C:\Users\*\Desktop\mcserver> Press Any Key To Continue... Please Help! Quote
Dartkitten Posted May 28, 2013 Posted May 28, 2013 You set the server to run off of 10MB of RAM, that is less than it takes to open notepad. edit your launch file, If you have 2GB of RAM, set it as this: java -Xmx1024M -Xms512M -jar Tekkit.jar nogui pause If you have 4GB of RAM, set it as this: java -Xmx3G -Xms2G -jar Tekkit.jar nogui pause if you have 8GB of ram, and wish to have 60 or more player spots, set it as this: java -Xmx6G -Xms4G -jar Tekkit.jar nogui pause After applying any of those, it should work. Hope that helps. Quote
Calvariae Posted May 28, 2013 Posted May 28, 2013 Also, if Java isn't recognized as a command either: a) Java isn't installed, or Java didn't create a PATH variable. In which case read this page. Quote
Scotty Delicious Posted May 29, 2013 Posted May 29, 2013 Java is not on your path. when you are telling windows to use java to open the java archive file Tekkit.jar, it has no idea where "java" is. You have to tell windows where java lives. Oracle has instructions on how to do this in windows on their website. http://www.java.com/en/download/help/path.xml Setting Path on Windows Windows 7 Select Computer from the Start menu Choose System Properties from the context menu Click Advanced system settings > Advanced tab Click on Environment Variables, under System Variables, find PATH, and click on it. In the Edit windows, modify PATH by adding the location of the class to the value for PATH. If you do not have the item PATH, you may select to add a new variable and add PATH as the name and the location of the class as the value. Reopen Command prompt window, and run your java code. Quote
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.