Hi,I am trying to run the sample project akka-sample-remote from release-2.1 but I get the following error:[INFO] [01/14/2013 23:05:11.908] [run-main] [Remoting] Starting remoting[error] (run-main) akka.remote.RemoteTransportException: No transport is loadedfor protocol: akka, available protocols: tcp.akkaakka.remote.RemoteTransportException: No transport is loaded for protocol: akka,available protocols: tcp.akkaat akka.remote.Remoting$.localAddressForRemote(Remoting.scala:109)Is this a known problem?I tried changing all references of akka with tcp.akka and the LookupApp works, but not the CreationApp, where there is a similar error.ThanksDavid--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://akka.io/faq/
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To post to this group, send email to akka...@googlegroups.com.
To unsubscribe from this group, send email to akka-user+...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user?hl=en.
Hi guys,I'm experiencing the same problem. Here's what I get,[ERROR] [06/12/2013 14:12:29.774] [main] [RemoteActorRefProvider] Error while looking up address [akka://BE...@127.0.0.1:2552]akka.remote.RemoteTransportException: No transport is loaded for protocol: [akka], available protocols: [akka.tcp]at akka.remote.Remoting$.localAddressForRemote(Remoting.scala:79)at akka.remote.Remoting.localAddressForRemote(Remoting.scala:116)I downloaded a tar file, akka-2.2.0-RC1.tgz. Any ideas on what could be going wrong?thks!
On Monday, January 14, 2013 8:08:42 PM UTC-3, David Riley wrote:Hi,I am trying to run the sample project akka-sample-remote from release-2.1 but I get the following error:[INFO] [01/14/2013 23:05:11.908] [run-main] [Remoting] Starting remoting[error] (run-main) akka.remote.RemoteTransportException: No transport is loadedfor protocol: akka, available protocols: tcp.akkaakka.remote.RemoteTransportException: No transport is loaded for protocol: akka,available protocols: tcp.akkaat akka.remote.Remoting$.localAddressForRemote(Remoting.scala:109)Is this a known problem?I tried changing all references of akka with tcp.akka and the LookupApp works, but not the CreationApp, where there is a similar error.ThanksDavid
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://akka.io/faq/
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Hi Viktor,thanks for your answer, I did not follow the guide, but I switched to the correct version instead, and that fixed the problem. It was my mistake :-).Now, another question can I use this microkernel stuff to run my app as a daemon? In that case, how would I go about it?
thanks again,Alberto.
Hey!, what I'm trying to do is to have my app split in two parts, on one side all my actors that perform the heavy work, I would like to put this part in a daemon process. On the other side, I would like to have one or more apps(like clients) that will interact with the daemon by talking to actors in the actorSystem of the daemon.I tried running,akka package.MyServerBootableClass &it works, but when the console dies, so does the process.Alberto.
Hi Viktor,thanks for the answer. I was really expecting the microkernel layer to handle it for me.
Otherwise I don't find the value added by the microkernel, besides an standard deployment method.
I had tried(unsuccessfully) the options in the link you provided, but with sbt. Now using the microkernel + nohup did the trick. Just in case it help others, that's what I run to have the app running as daemon,
nohup akka mypackage.MyBootableClass &Alberto.
Hi, I definitely see the value, but I was hoping for the extra feature. Seems I woke up lazy today :-).Cheers,Alberto.
Visit this group at http://groups.google.com/group/akka-user.