Re: Start node in remote server which needs authentication

2016-08-08 Thread chevy
Hi Val, I was able to fix SSL issue by adding key and certs into Java security folder and using keystore file in config. But I am not able to get my remote node join the cluster as it throws below error - "[14:47:35,087][WARNING][main][TcpDiscoverySpi] Node has not been connected to topology an

Re: Start node in remote server which needs authentication

2016-08-05 Thread Vladislav Pyatkov
You can generate new certificate using keytool [1]. If you want to extract ssh certificate and insert it to JKS, look to the article [2]. [1] https://www.sslshopper.com/article-most-common-java-keytool-keystore-commands.html [2] http://stackoverflow.com/questions/31385944/how-to-add-ssh-identity-

Re: Start node in remote server which needs authentication

2016-08-05 Thread chevy
That is the issue I am facing. I am not able to load my key in pem file to jks as it expects certificate along with it. Anyway I can get this working? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Start-node-in-remote-server-which-needs-authentication-tp6668p67

Re: Start node in remote server which needs authentication

2016-08-05 Thread Chetan . V . Yadav
ite.apache.org>" mailto:user@ignite.apache.org>> Date: Friday, August 5, 2016 at 4:28 PM To: "user@ignite.apache.org<mailto:user@ignite.apache.org>" mailto:user@ignite.apache.org>> Subject: Re: Start node in remote server which needs authentication 1) If your conf

Re: Start node in remote server which needs authentication

2016-08-05 Thread Vladislav Pyatkov
0>> > Date: Friday, August 5, 2016 at 3:03 PM > To: "Chetan.V.Yadav" <[hidden email] > <http:///user/SendEmail.jtp?type=node&node=6789&i=1>> > Subject: Re: Start node in remote server which needs authentication > > Are you sure, which start Ignite with t

Re: Start node in remote server which needs authentication

2016-08-05 Thread chevy
Java code? -- Regards, Chetan. From: "vdpyatkov [via Apache Ignite Users]" mailto:ml-node+s70518n6787...@n6.nabble.com>> Date: Friday, August 5, 2016 at 3:03 PM To: "Chetan.V.Yadav" mailto:chetan.v.ya...@target.com>> Subject: Re: Start node in remote server whi

Re: Start node in remote server which needs authentication

2016-08-05 Thread Vladislav Pyatkov
-- > If you reply to this email, your message will be added to the discussion > below: > http://apache-ignite-users.70518.x6.nabble.com/Start- > node-in-remote-server-which-needs-authentication-tp6668p6775.html > To unsubscribe from Start node in remote server which needs > authenticat

Re: Start node in remote server which needs authentication

2016-08-04 Thread chevy
et the remote node attached to the one I am running in my local? -- Regards, Chetan. From: "vdpyatkov [via Apache Ignite Users]" mailto:ml-node+s70518n6775...@n6.nabble.com>> Date: Friday, August 5, 2016 at 11:33 AM To: "Chetan.V.Yadav" mailto:chetan.v.ya...@t

Re: Start node in remote server which needs authentication

2016-08-04 Thread Vladislav Pyatkov
Hello, I don't think, which it is OS issue. Difficult understand to me where are you problem, without any demonstration. Can you please provide code example or full configuration file and logs from cluster nodes? On Thu, Aug 4, 2016 at 8:14 PM, chevy wrote: > So, what do you think that is goin

Re: Start node in remote server which needs authentication

2016-08-04 Thread chevy
So, what do you think that is going wrong. Should I change from Ubuntu to something else or config? Also, can I use just .pem file and implement SSLContextFactory to connect to remote server? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Start-node-in-remote-s

Re: Start node in remote server which needs authentication

2016-08-04 Thread Vladislav Pyatkov
The row is not necessary 127.0.0.1:47500..47509 but in general it is right. Also, I stronly recoment using TcpDiscoveryVmIpFinder instead of TcpDiscoveryMulticastIpFinder, because multicast is often be disabled on practice. On Thu, Aug 4, 2016 at 4:07 PM, chevy wrote: > 1. I have done both of t

Re: Start node in remote server which needs authentication

2016-08-04 Thread chevy
1. I have done both of those steps. 2. Also, please look into below config. Is this the right way to add remote machines which forms cluster? 127.0.0.1:47500..47509 10.63.78.112:47500..47509

Re: Start node in remote server which needs authentication

2016-08-04 Thread Vladislav Pyatkov
Hello, 1) You need to configure DiscoverySPI. Look here [1] 2) Please set IGNITE_HOME where *Ignite* will be unpacked. [1]: http://apacheignite.gridgain.org/docs/cluster-config On Thu, Aug 4, 2016 at 3:28 PM, chevy wrote: > What are the things I need to include that will make nodes in differ

Re: Start node in remote server which needs authentication

2016-08-04 Thread chevy
What are the things I need to include that will make nodes in different remote machines join the same cluster. Also, I am getting below error when I try to start Ignite node in ubuntu server. I have set both JAVA_HOME and IGNITE_HOME in /etc/environment. I am able to start in my local MAC machine

Re: Start node in remote server which needs authentication

2016-08-04 Thread Vladislav Pyatkov
Hello, 1) Yes you need to start remote node with similar configuration. You can write on .sh script, which starts local and remote node simultaneously. After that nodes join to one cluster (at matching DiscoverySPI configuration). 2) Yes, data of cache distribute over cluster node automaticly. O

Re: Start node in remote server which needs authentication

2016-08-03 Thread chevy
One more point to add - Consider this scenario: my code is running in one machine with config file set with all remote addresses that has to start nodes. 1. Should I externally start ignite node in each of these remote machines? 2. If yes, will the data be replicated automatically in these nodes

Re: Start node in remote server which needs authentication

2016-08-02 Thread chevy
I have set up rest jetty config and other settings in my local. When I deploy my code in a server I need to access that remote machine to start the node in that machine through my code. To achieve this, can you provide me config changes I need to make in my config files as well as my code that star

Re: Start node in remote server which needs authentication

2016-08-02 Thread vkulichenko
Hi, You can use ssh and run ignite.sh script on a remote machine to start a node. Is that what you're looking for? REST support HTTPS. You can configure the underlying Jetty server in any way you like by providing the path to a configuration file: See this page for Jetty SS