I am running RServe from Server machine using cmd
Rserve.exe --RS-conf Rserv.conf --RS-port 12306Rserv.conf file has following content:
pwdfile RserveAuth.txt
auth required
remote enable
plaintext disableRserveAuth.txt has following contents:
Admin 123456
I am connecting to R Server from JAVA
import org.rosuda.REngine.REXPMismatchException; import org.rosuda.REngine.REngineException; import org.rosuda.REngine.Rserve.RConnection; import org.rosuda.REngine.Rserve.RserveException; import org.rosuda.REngine.REXP; import org.rosuda.REngine.*; public class ConnecttoR { ... ... public void connectR() { try { RConnection connection = new RConnection("172.16.33.242",12306); // Works if authentication is not required in Rserv.conf } catch (RserveException e) { e.printStackTrace(); } catch(REXPMismatchException e){ e.printStackTrace(); } catch(REngineException e){ e.printStackTrace(); } } }Connection to Rserve is open to all without username & Password. How shall I add security and allow connection only with valid credentials to access Rserve