Web and database servers are starting but EasyPHP Dashbord is not recognizing it - easyphp

In EasyPHP 16.1.1 dashbord when I click on start, Apache and MySQL are starting but the dashbord interface is not recognizing it. The dashboard is still proposing me to launch the servers (but on a different port this time).
I checked and both servers are running, I can access the www folder through localhost.
Nothing special in the log files.
Install : EasyPHP 16.1.1 on a Windows 8.1 x64
If someone has an idea ?

Open the task manager and the processes eds-* if any
Delete the files conf_last_dbserver.php and conf_last_dbserver.php in eds-dashboard
Run run-easyphp-devserver.exe again
Open the Administration
Restart your servers

Related

Tomcat webapp failing to run on someone else's computer

I have an apache-tomcat (8.5.35) that runs a web app. It runs on different computers (Windows 10, Mac OS X) without a problem but won't work on a specific computer (also Windows 10). I am not really sure why and have spent hours trying to find out why it won't work. The log files display
org.apache.catalina.loader.WebappClassLoaderBase.clearReferenceJdbc The web application [web-app] registered the JDBC driver [org.postgresql.Driver] but failed to unregister it whenthe web application was stopped. To prevent a memory leak, the JDBC has been forcibly unregistered.
Any idea why it won't work with this specific computer? I have postgresql 10 (x86) installed in this computer. I thought Kaspersky would have been an issue so I disabled it and uninstalled both the Small Office Security and Secure Connection but the problem seems to be linked into Windows or something.
I also tried different versions of tomcat, postgresql, and jdbc drivers (postgresql jar files).

Netbeans FTP unable to upload

I am new to NetBeans & PHP Scripting, so please forgive me..
Issue: Unable to upload the php files via NetBeans IDE into remote server Ubuntu (FTP port: 21).
SSH Port 22 is working fine,even with NetBeans
Error Log:
My Operating Environment
NetBeans 7.4 Patch 3 is installed in Windows 10.
Remote server is a virtual machine (Ubuntu 16.4)
Check List Done
FTP Clients are working fine(WinSCP Manual....which I am trying to avoid)
NetBeans Terminal I can edit the files (noticed the port is different 22)
Remote folder is owned by the FTP User
Played with NetBeans Run Configuration Parameters [Passive Mode, Pure FTP...etc]
Any Help is greatly appreciated and Thanks is advance.
Ravi
Solution Steps:
Edit /etc/vsftpd.conf
uncomment #write_enable=YES --> write_enable=YES
Restart vsftpd (sudo service vsftpd restart)
Closed NetBeans IDE and opened it again

jconsole cannot connect to local processes on my new Mac Air

I'm stumped. On my old Mac, Jconsole couldn't connect to local JVMs. I thought I had done something to mess up system configuration. Then I got a new Mac. The first thing I did was download a jdk, install it and check to see if jconsole could connect. It could.
Then I pulled over users and applications from my old mac using my Time Machine backup drive except my system files. Still worked.
But I found that odd things were happening with my development environment. In eclipse, I could start my Jboss server, but eclipse never recognised that the Jboss server had started. So, I could never add or delete war files to it through eclipse.
Also, the jboss instance could not connect to my localhost PostGres database even though the ds file clearly gave localhost as the host to connect to.
I fixed these problems by giving my new Mac the hostname the old Mac had had.
But now I am back to not being able to connect to my local JVMs through jconsole.
This affects not just jconsole, but jprof as well so I'd like to get it fixed.
jconsole can see the JVM processes. It just times out when I try to connect.
I also tried connecting to localhost: by writing a java class that slept for five minutes and running it with the following command line:
java -Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=9010 -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote.authenticate=false
but I cannot connect to localhost:9010 or :9010 either.
My guess would be this is some network configuration problem, but any help would be really really appreciated.
Thanks,
George
I had similar issues with timeouts. Looking at the packets being sent, it seems that jconsole was trying to connect via an external interface and being blocked by the firewall.
I added
JAVA_TOOL_OPTIONS=-Djava.rmi.server.hostname=localhost
to my environment to ensure all java processes used localhost instead of an external interface for RMI (which is what jconsole is using for connections)

Tomcat port in use in NetBeans

I tried searching for this problem here and in other forums but could not resolve this issue.
I have downloaded NetBeansBeans 7.0 Java EE pack which also installs Tomcat 7 which it did.
I created sample web application and when trying to deploy I get an error:
Starting of Tomcat failed, the server port 8080 is already in use.
I tried changing the ports but no success. However, when i try to run same Tomcat from Command prompt using "startup.bat" command, it runs successfully.
Operating system is Vista. I tried checking for open ports using "netstat -a" but no open port for 8080. also tried to see if any "java.exe" process is running but it was not.
Thanks in advance for the help.
Sometimes Vista, especially after hibernation, doesn't free a previously used port. Have you tried restarting the pc?

Is the same to leave netbeans running on vps or should I run only glassfish?

I have managed to get my app, up & running in my vps an over the internet, but I have done using this from netbeans, is it the same or I should close netbeans, run glassfish from bin files, deploy and start from admin console and have only glassfish running?
Enviroment: glassfish v3, JSF2.0, netbeans 6.8
Thank you very much
Best regards
Ignacio
The 'standard' way would be to have Glassfish running as a standalone app.
You can still use netbeans to administer it from your machine (by setting up a remote domain GF server in 'services->servers') or you can use the admin console (http://yourhost:4848) or indeed use the asadmin CLI tool.