Jump to content
  • Home
  • Files
  • Docs
  • Merch
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Minecraft Forge
  • Support & Bug Reports
  • Forge Server 1.10.2 wont start. Windows 10
Sign in to follow this  
Followers 0
Gerbort

Forge Server 1.10.2 wont start. Windows 10

By Gerbort, March 18, 2018 in Support & Bug Reports

  • Reply to this topic
  • Start new topic

Recommended Posts

Gerbort    0

Gerbort

Gerbort    0

  • Tree Puncher
  • Gerbort
  • Members
  • 0
  • 3 posts
Posted March 18, 2018

Hello guys, sorry, if somebody asked that question before. My problem is- i tried to start forge server (1.10.2), but the server wont start. Vanila server is working very well from the folder with forge server. I used cmd command (java -Xms1G -Xmx2G -jar C:\Users\gerbo\Desktop\server\forge.jar nogui) but it was useless. P.S. I use Windows 10 if this important. Help please

trouble.PNG

  • Quote

Share this post


Link to post
Share on other sites

Choonster    1620

Choonster

Choonster    1620

  • Reality Controller
  • Choonster
  • Forge Modder
  • 1620
  • 5047 posts
Posted March 18, 2018

You're using Java 9, which isn't supported by Forge. You need to use Java 8 instead.

  • Quote

Share this post


Link to post
Share on other sites

Gerbort    0

Gerbort

Gerbort    0

  • Tree Puncher
  • Gerbort
  • Members
  • 0
  • 3 posts
Posted March 18, 2018
1 hour ago, Choonster said:

You're using Java 9, which isn't supported by Forge. You need to use Java 8 instead.

I have got Java 7 installed too. Can I somehow say forge that he need to use Java 7 instead of 9?

Снимок.PNG

  • Quote

Share this post


Link to post
Share on other sites

Choonster    1620

Choonster

Choonster    1620

  • Reality Controller
  • Choonster
  • Forge Modder
  • 1620
  • 5047 posts
Posted March 18, 2018
49 minutes ago, Gerbort said:

I have got Java 7 installed too. Can I somehow say forge that he need to use Java 7 instead of 9?

 

You should be using Java 8, not Java 7. Unless you need Java 9 for non-Minecraft things, you should uninstall that as well.

 

You can either specify the full path to java.exe in the command or remove the other versions of Java form the PATH environment variable and add Java 8.

  • Quote

Share this post


Link to post
Share on other sites

Gerbort    0

Gerbort

Gerbort    0

  • Tree Puncher
  • Gerbort
  • Members
  • 0
  • 3 posts
Posted March 19, 2018
19 hours ago, Choonster said:

 

You should be using Java 8, not Java 7. Unless you need Java 9 for non-Minecraft things, you should uninstall that as well.

 

You can either specify the full path to java.exe in the command or remove the other versions of Java form the PATH environment variable and add Java 8.

Can you please tell me how i can specify the full path to java.exe? I need to do this in cmd?

  • Quote

Share this post


Link to post
Share on other sites

diesieben07    6671

diesieben07

diesieben07    6671

  • Reality Controller
  • diesieben07
  • Forum Team
  • 6671
  • 45584 posts
Posted March 19, 2018
3 hours ago, Gerbort said:

Can you please tell me how i can specify the full path to java.exe? I need to do this in cmd?

Use C:/the/full/path/to/the/jre/java instead of java.

However you should just set your PATH properly.

  • Quote

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 0
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • solitone
      Distinguish singleplayer vs. multiplayer

      By solitone · Posted 13 minutes ago

      So doesn’t it cause the server to crash, in contrast to what Draco18s said?
    • shadowmaster530
      Unable to register Item texture can someone help?

      By shadowmaster530 · Posted 40 minutes ago

      So I am currently coding in a item and can’t get its texture to properly connect. Here is my code:   package assets.testmod.textures.items;   import com.shadowmaster.testmod.reference.Reference; import net.minecraft.item.Item; import net.minecraft.ItemStack;  import net.minecraftforge.fml.relauncher.Side;  import net.minecraftforge.fml.relauncher.SideOnly;     public class ItemSTM extends Item{      public ItemSTM(){            super();      }      @Override      public String getUnlocalizedName(){            return String.format(“item.%s%s”, Reference.MOD_ID.toLowerCase() + “:”, getUnwrappedUnlocalizedName(super.getUnlocalizedName()));      }        @Override      public String getUnlocalizedName(ItemStack itemStack){            return String.format(“item.%s%s”, Reference.MOD_ID.toLowerCase() + “:”, getUnwrappedUnlocalizedName(super.getUnlocalizedName()));      }        @Override      @SideOnly(Side.CLIENT)       public void registerIcons(IIconRegister iconRegister){             itemIcon = iconRegister.registerIcon(this.getUnlocalizedName().substring(getUnlocalizedName().indexOf(“.”) + 1);   \* This is the piece having the issue but I can’t figure out why or how to fix it *\       }      protected String getUnwrappedUnlocalizedName(String unlocalizedName){           return unlocalizedName.substring(unlocalizedName.indexOf(“.”) + 1);      } }
    • tdude0317
      Dragon Mounts:Reborn

      By tdude0317 · Posted 1 hour ago

      Hello there, I am the Lead developer for a WIP mod named Dragon Mounts:Reborn. Some of you may have heard of Dragon Mounts or Dragon mounts 2, both of which have been stopped. Dragon Mounts:Reborn is a spiritual successor  to these two mods and we are hoping to make it bigger and better. We are looking for anybody willing to help with the mod, especially coders. Please, if you have any interest joining our team, join our discord to learn more,meet the rest of us, and hopefully join us. https://discord.gg/RhgkQjp  
    • DavidM
      Distinguish singleplayer vs. multiplayer

      By DavidM · Posted 1 hour ago

      That code from the original mod is not going to work regardless of the side it is on, as spawning ItemEntity in the world must be done on the server side. However, the Minecraft class (used in your if statement) is client side only.   In your case, you might want to look at how proxies work.
    • DragonITA
      [1.14.4] Add a Tab to the Player Inventory Gui in Survival Modus

      By DragonITA · Posted 1 hour ago

      And how to make a survival tab, like a creative tab just on survival?
  • Topics

    • solitone
      4
      Distinguish singleplayer vs. multiplayer

      By solitone
      Started 11 hours ago

    • shadowmaster530
      0
      Unable to register Item texture can someone help?

      By shadowmaster530
      Started 40 minutes ago

    • tdude0317
      0
      Dragon Mounts:Reborn

      By tdude0317
      Started 1 hour ago

    • DragonITA
      2
      [1.14.4] Add a Tab to the Player Inventory Gui in Survival Modus

      By DragonITA
      Started 9 hours ago

    • saxon564
      1
      [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

      By saxon564
      Started 2 hours ago

  • Who's Online (See full list)

    • JetCobblestone
    • vaartis
    • Cerandior
    • KittRiderTV
    • solitone
    • SerpentDagger
    • Lea9ue
    • bsrgin
  • All Activity
  • Home
  • Minecraft Forge
  • Support & Bug Reports
  • Forge Server 1.10.2 wont start. Windows 10
  • Theme
  • Contact Us
  • Discord

Copyright © 2019 ForgeDevelopment LLC · Ads by Curse Powered by Invision Community