NetBeans 8.2 installed and Issue with Services - netbeans-8

Installed Netbeans 8.2 and when i click Windows->Service and then it went to Blank and display Nothing. No errors too.
Tried to restart the System and Downloaded options All and JEE however nothing worked.
NA
NA

Related

Apache Netbeans 10 IDE installation

I just tried to install Apache Netbeans 10. It seems someone has introduced a lot of busiwork into the installation process.
In december 2018 I installed Netbeans 8 by
browsing to netbeans.org
clicking a button marked "download"
waiting for the wizard to install
In february 2019, trying to install Netbeans 10, I am instructed to:
fetch zipped files for netbeans
download and install apache ant
unzip netbeans
run ant on netbeans
and whatever else may follow.
Netbeans 8 is still available so obviously I did not waste my time on this new process.
Is this the future, or just a startup issue with Netbeans being transferred to Apache?
How is the introduction of this manual labour progress?
I apologise if this question does not belong on stackoverflow. I don't know where else to ask.
For Linux system follow these simple steps (Apache Netbeans 10 per-requisites must be satisfied before going further):
Download script from apache-netbeans-10.0
Open terminal in directory where above file is downloaded and run below command
sudo chmod +x ./Robo3T-Installation-Menu.sh
Then type below command and hit enter
./apache-netbeans-10.0.sh
Just wait to complete it, once completed enjoy Apache Netbeans. Search in menu with name "Netbeans".
Linux alternative / no special scripts.
(Netbeans version 14. Might apply to 10, dunno)
Download and verify the installer file from Apache Netbeans
Eg. Apache-NetBeans-14-bin-linux-x64.sh
Change the permissions to make it executable - 777'll do:
chmod 777 Apache-NetBeans-14-bin-linux-x64.sh
then
Apache-NetBeans-14-bin-linux-x64.sh # launches GUI installer
Apache-NetBeans-14-bin-linux-x64.sh --help # lists options
Apache-NetBeans-14-bin-linux-x64.sh --silent # installs without gui
Your DE may then list it, if not try
/bin/sh "/usr/local/netbeans-14/netbeans/bin/netbeans"
to launch
If not there try
find / -mount -name netbeans
to find it
(I got this with guessing and trial and error. There is zero useful documentation on the site - you could look inside the scripts I suppose.)
To add to DE (if not there):
create file /usr/share/applications/Apache-NetBeans.desktop ;
[Desktop Entry]
Encoding=UTF-8
Name=Apache NetBeans IDE 14
Comment=The Smarter Way to Code
Exec=/bin/sh "/usr/local/netbeans-14/netbeans/bin/netbeans"
Icon=/usr/local/netbeans-14/netbeans/nb/netbeans.png
Categories=Application;Development;Java;IDE
Version=1.0
Type=Application
Terminal=0
3 Months later ...
Still on Netbeans 14 and all ok in Alma Linux 8.5 (RHEL Clone) but then upgrade to 8.6 and Netbeans stops working - won't launch. Others having similar issues on macOS and fingers pointing at openjdk 17:
17.0.3.0.6-2.el8_5 working
17.0.4.1.1-2.el8_6 not working
but don't want to downgrade as who knows what that'll break and can't dnf install both at same time so installed Oracle JDK 17 (java version "17.0.4.1" 2022-08-18 LTS ), used "alternative --config java" to set it as default and Netbeans working again.

Netbeans not opening New Project Dialog

After installation, Netbeans open fine, Open Exiting Project, Or Existing File works. However Netbeans doesn't show New Project or New File Dialog, whether selecting it from menu or from the toolbar. Netbeans version is 8.2, Ubuntu version is 16.04. It is a fresh install, and Oracle jdk-9 installed.
update-alternatives point to oracle-java.
Uninstalled and Reinstalled Netbeans, without any success.
Any suggestions.
Had the same problem with JDK 9, switched back to JDK 8
Change netbeans.conf file and adjust JDK.
Netbeans 8.2 seems to have some problem with JDK11 as well. Do not know whether it has been fixed, since even after dowloading JDK11 the problem persists.
Without deleting the newer ones you can set the path to the previous versions i.e. JDK8 and it works.
Open the following file
/Applications/NetBeans/NetBeans 8.2.app/Contents/Resources/NetBeans/etc/netbeans.conf
Look for #netbeans_jdkhome=
set the path to the older version of java:
netbeans_jdkhome="/Library/Java/JavaVirtualMachines/jdk1.8.0_92.jdk/Contents/Home"
and restart the netbeans.
Funny thing but i changed the jvm in update-alternative to open-jdk jvm and it starts working.
I closed netbeans 8.2, commented out the reference to the JDK home in the netbeans.conf file, in the root of the netbeans 8.2 folder
# netbeans_jdkhome="C:\Program Files\Java\jdk-9.0.4"
When I restarted the navigation pane that were previously missing appeared as they should.
What worked for me was:
In Program Files, go to Java
For me, my computer has already downloaded the latest JDK. Check to see if there are JDKs in your folder
Delete the duplicate/latest JDK's
For me, this problem started after a Mac OS upgrade to 10.15.4.
None of the solutions worked.
I uninstalled NetBeans and reinstalled it, and it worked.

"Main Not Found" starting Apache Geronimo

I am attempting to start Apache Geronimo using the command:
./bin/geronimo run
When I do this, it spins for a minute, issues the message "Main not found" and exits.
This article suggests that it is a system resource issue:
http://apache-geronimo.328035.n3.nabble.com/jira-Created-GERONIMO-5551-Failing-to-start-the-server-with-the-error-quot-Main-not-found-quot-td1324013.html
I have tried it on both an Amazon EC2 box (running Linux), and an Azure A1 box (running Windows Server), and I have tried the "Full Profile Release" and "Web Profile Release" of Geronimo, all with no change.
I'm at a complete loss as to what I could try. I am led to believe that the EC2 box, at the very least, should have the muscle to run Geronimo.
Any suggestions would be welcome.
Version 3 of Apache Geronimo is designed to run on JRE 1.7 instead of JRE 1.8. As stated in the other answers, the issue was caused by Geronimo being run on JRE 1.7 instead of 1.8.
You are not limited to JRE 1.7 and earlier in order to run Geronimo though. Therefore, all you have to do is to rename or copy the property jre-1.7 in the file etc/config.properties in your installation to jre-1.8. Afterwards, you should be able to run Geronimo without an error.
This has a huge benefit, since now you will be able to run programs on Geronimo that use Java 8 features.
It turns out that the issue is that I had the wrong version of the JDK installed. I had installed the most recent version (8), but Geronimo apparently won't work with that. When I instead installed version 6, everything worked fine.
I was getting the same error with Java 8. I tried the latest version of Java SE 7 and that resolved the problem. So I wouldn't use Java 6, since it is and has been out of support for awhile now (read: security issue).

Netbeans 8 and 7.4 Problems on CentOS 6.5

I am new to Linux and my boss ordered me to install Netbeans software to one of CentOS 6.5 desktop.
I have downloaded and install Netbeans 7.4 along with Java jdk package. Installation was fine but when I try to execute the Netbeans icon, nothing happens.
I even go the the netbeans installation directory Netbeans 7.4/bin/ netbean and try to execute in terminal but nothing happens. It does not give any error,just not start. Please help. I have tried both the Netbeans version 7.4 and 8,but same problem.
Well I have downloaded the 32 bit version of NETBEANs and JDK package, but my OS is 64 bit...silly :) now I have installed correct version of JDK and Netbeans and its working.

Netbeans 7.1.2 and 6.7.1, SoapUI both stopped working on OS X Mavericks

Installed the OS X Mavericks last night and Netbeans and SoapUI both doesnt work anymore. Has anyone found a solution for this?
Updating Java JRE fixed Netbeans, other products that are still having issues:
1) SoapUI
2) Apache Directory Studio
3) PyCharm
I had the same problem. Try to install the newest Java JRE. It worked for me
Downloading NetBeans 7.4 worked for me
Updating Java JRE and downloading NetBeans 7.4 didn’t work for me.
Installation issue : Neatbean 7.4 was unable to install and previous version (7.2 on my computer) was unable to launch.
When i tried to launch Photoshop 5.1, i had a message saying Java SE 6 was missing. Mavericks asked to download it. After installing automatically, Photoshop and Netbeans install was ok.
Also, you can try this link if you can't download automatically :
http://support.apple.com/kb/DL1573