Server error

0
Mendix.Modeler.M2EEConnector.M2EEException: The server encountered an error.   at Mendix.Modeler.M2EEConnector.M2EEResponse.CheckSuccess() in Mendix.Modeler.M2EEConnector\M2EEResponse.cs:line 57   at Mendix.Modeler.M2EEConnector.M2EEClient.UpdateAppContainerConfiguration(Int32 port, String listenAddresses) in Mendix.Modeler.M2EEConnector\M2EEClient.cs:line 161   at Mendix.Modeler.M2EEConnector.StartupManager.<>c__DisplayClass5_0.<PerformStartup>b__0() in Mendix.Modeler.M2EEConnector\StartupManager.cs:line 39   at Mendix.Modeler.Analytics.RuntimeProfilingAnalyticsScope.<>c__DisplayClass8_0.<Execute>b__0() in Mendix.Modeler.Analytics\RuntimeProfilingAnalyticsScope.cs:line 59   at Mendix.Modeler.Analytics.RuntimeProfilingAnalyticsScope.Execute[T](IAnalyticsEventManager eventManager, String eventType, String deploymentId, Func`1 op) in Mendix.Modeler.Analytics\RuntimeProfilingAnalyticsScope.cs:line 42   at Mendix.Modeler.M2EEConnector.StartupManager.PerformStartup(StartupInfo info, String deploymentId, IM2EEClient client) in Mendix.Modeler.M2EEConnector\StartupManager.cs:line 38   at Mendix.Modeler.M2EEConnector.RuntimeController.Start(StartupInfo info, String deploymentId, LogLevel autoSubscribeLogLevel) in Mendix.Modeler.M2EEConnector\RuntimeController.cs:line 136   at Mendix.Modeler.Deployment.Local.LocalRunner.<>c__DisplayClass96_0.<RuntimeLaunched>b__1() in Mendix.Modeler.Deployment\Local\LocalRunner.cs:line 423   at Mendix.Modeler.Utility.BackgroundUtil.<>c__DisplayClass1_0`1.<Do>b__0(Object s, DoWorkEventArgs e) in Mendix.Modeler.Utility\BackgroundUtil.cs:line 29   at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
asked
2 answers
1

Hi Pragathi,

Either you can restart your system, as Bharath suggested,

or you can open your task manager ( Ctrl +Shift+ Esc), find the OpenJDK and end this process, you can refer to the image below:

image.png

Once this process is done, try to start your Mendix server, it will start running,

Also, if there's another application running on the same server, then you need to change the server of this application,

From App(Module)> Settings> configuration

 

There, you will the option to change the server,

Let me know, if you have any issues,

Hope it helps!

answered
0

Hi Pragathi,

 

Restart your machine or kill the port using command prompt by doing the following,

 

netstat -ano | findstr :<PORT>

 

taskkill /PID <PID> /F

 

Refer the below url for reference

https://stackoverflow.com/questions/39632667/how-can-i-close-some-specific-port-on-linux

 

 

 

answered