Jump to content

Server Fails to Load on Ubuntu 12.04 64bit


pcushing01

Recommended Posts

Ok some background information first.

 

I am using minecraftforge-universal-4.1.1.251.zip, the more recent version fails to start the server at all.

 

I have installed the forge client into the minecraft_server.jar as instructed and this is the set of errors that I get on the server console as it tries to load.

 

2012-10-19 18:58:07 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.0.196.366 for Minecraft client:1.3.2, server:1.3.2 loading

2012-10-19 18:58:07 [iNFO] [sTDERR] Exception in thread "main" java.lang.RuntimeException: java.lang.NoClassDefFoundError: cpw/mods/fml/common/FMLLog

2012-10-19 18:58:07 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:163)

2012-10-19 18:58:07 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.FMLRelauncher.relaunchServer(FMLRelauncher.java:121)

2012-10-19 18:58:07 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.FMLRelauncher.handleServerRelaunch(FMLRelauncher.java:33)

2012-10-19 18:58:07 [iNFO] [sTDERR]    at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:1258)

2012-10-19 18:58:07 [iNFO] [sTDERR] Caused by: java.lang.NoClassDefFoundError: cpw/mods/fml/common/FMLLog

2012-10-19 18:58:07 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.Downloader.updateProgressString(Downloader.java:99)

2012-10-19 18:58:07 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.RelaunchLibraryManager.handleLaunch(RelaunchLibraryManager.java:64)

2012-10-19 18:58:07 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:143)

2012-10-19 18:58:07 [iNFO] [sTDERR]    ... 3 more

2012-10-19 18:58:07 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: cpw.mods.fml.common.FMLLog

2012-10-19 18:58:07 [iNFO] [sTDERR]    at java.net.URLClassLoader$1.run(URLClassLoader.java:217)

2012-10-19 18:58:07 [iNFO] [sTDERR]    at java.security.AccessController.doPrivileged(Native Method)

2012-10-19 18:58:07 [iNFO] [sTDERR]    at java.net.URLClassLoader.findClass(URLClassLoader.java:205)

2012-10-19 18:58:07 [iNFO] [sTDERR]    at java.lang.ClassLoader.loadClass(ClassLoader.java:321)

2012-10-19 18:58:07 [iNFO] [sTDERR]    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)

2012-10-19 18:58:07 [iNFO] [sTDERR]    at java.lang.ClassLoader.loadClass(ClassLoader.java:266)

2012-10-19 18:58:07 [iNFO] [sTDERR]    ... 6 more

 

The minecraft_server.jar runs fine before the forge files are placed inside it, once they have been added in the above errors occur.  I have tried using Open JDK 6 and 7 both produce the same errors in attempting to get the server to run. 

 

(I have had NO issues in appliying forge to the regular minecraft.jar, it runs perfectly fine.)

 

Any suggestions here? Or at least point me in the direction of a solution if it's already been found, as I've looked and have been unable to find anything yet.

Link to comment
Share on other sites

Hmm, I suppose I can try that, though this will be the third or fourth time I've re-downloaded it.

 

(Ok just got the most recent build off of Jenkins.  3.2.5.317.  Used a fresh minecraft_server.jar and this is what the terminal spits out.)

 

Exception in thread "main" java.lang.NoClassDefFoundError: net/minecraftforge/event/Event

Caused by: java.lang.ClassNotFoundException: net.minecraftforge.event.Event

        at java.net.URLClassLoader$1.run(URLClassLoader.java:217)

        at java.security.AccessController.doPrivileged(Native Method)

        at java.net.URLClassLoader.findClass(URLClassLoader.java:205)

        at java.lang.ClassLoader.loadClass(ClassLoader.java:321)

        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)

        at java.lang.ClassLoader.loadClass(ClassLoader.java:266)

Could not find the main class: net.minecraft.server.MinecraftServer. Program will exit.

Link to comment
Share on other sites

Nope, just extracted the forge .zip, and dropped all the files into the .jar per the installation instructions.  That's also the error I get if I use the most current versions of Forge.  If i went and tried to find any of the 4.1.1 releases they give me the other wall of text.

Link to comment
Share on other sites

The issue is that you are failing at install ALL the files that forge ships, this isn't a forge issue, you just need to be better at copy/pasting files -.-

There is no help we can give you beyond, do it properly.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I'm working in the forge mdk for 1.20.2 and using Terrablender (version 3.2.0.11) to create a custom biome. The biome itself works and generates just fine, but I need to create a custom tag for it in order to have a very specific structures generate in that biome and ONLY that biome. That's when the problem comes in: I've created a ModBiomeTagGenerator class that extends BiomeTagGenerator from the vanilla code, and the same way the vanilla BiomeTagGenerator assigns tags to biomes, I'm trying to assign my custom tag to my custom biome so I can use it in a has_structure json. However, when I do this and try to runData, an error pops up: "Couldn't define tag decayingplanetmod:is_abandoned_city as it is missing following references: decayingplanetmod:abandoned_city." After experimenting, I found that I can add my tag "is_abandoned_city" to other vanilla biomes, but I can't add vanilla tags or ANY tags to my custom biome, abandoned_city, so it's definitely a problem with the custom biome itself, despite the fact that the biome generates in-game just fine. I've included the code that defines my biome, my biome tags, and assigns my tag to my biome. I've scoured online for similar problems and found very few-- the ones I did find had no concrete solutions, just "it suddenly started working" or "I updated to another version and it works now," which is very vague, as they don't specify what they're updating or how. Nothing seems to work so far. Faulty code: https://paste.ee/p/79my3 Any input is appreciated.
    • ASIABET adalah pilihan terbaik bagi Anda yang mencari slot gacor hari ini dengan server Rusia dan jackpot menggiurkan. Berikut adalah beberapa alasan mengapa Anda harus memilih ASIABET: Slot Gacor Hari Ini Kami menyajikan koleksi slot gacor terbaik yang diperbarui setiap hari. Dengan fitur-fitur unggulan dan peluang kemenangan yang tinggi, Anda akan merasakan pengalaman bermain yang tak terlupakan setiap kali Anda memutar gulungan. Server Rusia yang Handal Kami menggunakan server Rusia yang handal dan stabil untuk memastikan kelancaran dan keadilan dalam setiap putaran permainan. Anda dapat bermain dengan nyaman tanpa khawatir tentang gangguan atau lag. Jackpot Menggiurkan Nikmati kesempatan untuk memenangkan jackpot menggiurkan yang dapat mengubah hidup Anda secara instan. Dengan hadiah-hadiah besar yang ditawarkan, setiap putaran permainan bisa menjadi peluang untuk meraih keberuntungan besar.
    • Sonic77 adalah pilihan tepat bagi Anda yang menginginkan pengalaman bermain slot yang unggul dengan akun pro Swiss terbaik. Berikut adalah beberapa alasan mengapa Anda harus memilih Sonic77: Slot Gacor Terbaik Kami menyajikan koleksi slot gacor terbaik dari provider terkemuka. Dengan fitur-fitur unggulan dan peluang kemenangan yang tinggi, Anda akan merasakan pengalaman bermain yang tak terlupakan. Akun Pro Swiss Berkualitas Kami menawarkan akun pro Swiss yang berkualitas dan terpercaya. Dengan akun ini, Anda dapat menikmati berbagai keuntungan eksklusif dan fasilitas premium yang tidak tersedia untuk akun reguler.
    • SV388 SITUS RESMI SABUNG AYAM 2024   Temukan situs resmi untuk sabung ayam terpercaya di tahun 2024 dengan SV388! Dengan layanan terbaik dan pengalaman bertaruh yang tak tertandingi, SV388 adalah tempat terbaik untuk pecinta sabung ayam. Daftar sekarang untuk mengakses arena sabung ayam yang menarik dan nikmati kesempatan besar untuk meraih kemenangan. Jelajahi sensasi taruhan yang tak terlupakan di tahun ini dengan SV388! [[jumpuri:❱❱❱❱❱ DAFTAR DI SINI ❰❰❰❰❰ > https://w303.pink/orochimaru]] [[jumpuri:❱❱❱❱❱ DAFTAR DI SINI ❰❰❰❰❰ > https://w303.pink/orochimaru]]   JURAGANSLOT88 SITUS JUDI SLOT ONLINE TERPERCAYA 2024 Jelajahi pengalaman judi slot online terpercaya di tahun 2024 dengan JuraganSlot88! Sebagai salah satu situs terkemuka, JuraganSlot88 menawarkan berbagai pilihan permainan slot yang menarik dengan layanan terbaik dan keamanan yang terjamin. Daftar sekarang untuk mengakses sensasi taruhan yang tak terlupakan dan raih kesempatan besar untuk meraih kemenangan di tahun ini dengan JuraganSlot88 [[jumpuri:❱❱❱❱❱ DAFTAR DI SINI ❰❰❰❰❰ > https://w303.pink/orochimaru]] [[jumpuri:❱❱❱❱❱ DAFTAR DI SINI ❰❰❰❰❰ > https://w303.pink/orochimaru]]
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.