1

I'm trying to install IBM Mobile First Server, in the process of installation I selected Install Application Center to install. But when I'm trying access that application center console I'm getting an error:

Error 404: com.ibm.ws.webcontainer.servlet.exception.NoTargetForURIException: No target servlet configured for uri: /appcenterconsole

I'm hitting the URL http://localhost:9080/appcenterconsole.

I'm following this doc

https://www01.ibm.com/support/knowledgecenter/SSHSCD_7.1.0/com.ibm.worklight.installconfig.doc/install_config/t_ov_server_install.html

Can anyone help me with this? I'm facing this issues from last two days.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Venkatesh Voona
  • 423
  • 8
  • 27
  • Looks like you're following the wrong documentation? Make sure to follow this: http://www-01.ibm.com/support/knowledgecenter/SSHS8R_7.1.0/com.ibm.worklight.installconfig.doc/appcenter/c_installation_manager.html - if the failure continues to occur, provide the messages.log file. – Idan Adar Sep 17 '15 at 19:17
  • Also note that there is no relation between MobileFirst Server and AppCenter - two different servers. – Idan Adar Sep 17 '15 at 19:25
  • Do you want me install the Application Center separately, I mean not including in Mobile First Server – Venkatesh Voona Sep 17 '15 at 19:26
  • I am just saying these are two separate servers and you should not confuse the two in your question. – Idan Adar Sep 17 '15 at 19:27
  • Actually my intention is, I want to maintain my Mobile First Studio Enterprise Edition in my machine and Mobile First Server Enterprise Edition on another VM. So Can you please suggest me which procedure I should follow. – Venkatesh Voona Sep 17 '15 at 19:32
  • Again, what does this has to do with MobileFirst AppCenter? It is *a different server*(!). Please, make sure to again follow the instructions and provide what I have requested. Try. – Idan Adar Sep 17 '15 at 19:34
  • The error means that the application did not start. Do you have errors in the liberty log file ? (usr/servers//logs/message.log) – Didier Vidal Sep 18 '15 at 11:05
  • @VenkateshVoona, Waiting to hear your reply. – Idan Adar Sep 20 '15 at 20:59
  • Sorry @Idan for the late reply, because I'm unable to connect my VM due to some network issue. Here is my log file https://www.dropbox.com/s/o8e0911z91azozf/messages.log?dl=0 – Venkatesh Voona Sep 21 '15 at 11:59
  • You need to talk with whomever is controlling your VM machine. The log file clearly states that port 9080 is already taken. You need to understand what in your network setup has taken it. – Idan Adar Sep 21 '15 at 12:04
  • I was tested in VM , like I stopped my server which I was created in Liberty Core and I gave command netstat in cmd , there I didn't found 9080 port number, again I started my server and I checked this port number now found 9080 that means no other application using this 9080 port. – Venkatesh Voona Sep 21 '15 at 12:09
  • Then open server.xml and use a different port. – Idan Adar Sep 21 '15 at 12:11
  • Hi, I am trying to install mobile first server using Installation Manager. I am not able to find Installation Manager repository link for IBM Mobile first server. Can anyone help me. – garg Apr 04 '17 at 11:29

1 Answers1

0

You can change the AppCenter's ports in the server.xml file of the underlying application server that you have deployed it to.

Search for 9080 as the HTTP port and 9443 as the HTTPS port. Change these values o port numbers that are not taken.

Idan Adar
  • 44,156
  • 13
  • 50
  • 89