You are viewing the RapidMiner Server documentation for version 9.4 - Check here for latest version
Custom Radoop Proxy Installation
You can enable Radoop Proxy throughout the RapidMiner Server installation process. However, if for some reason you wish to install it later on, or just run it manually (e.g. on another machine), follow this guide.
Adding Radoop Proxy to RapidMiner Server startup process
Edit the file
bin/standalone.conf[.bat]
in the RapidMiner Server installation directory. Find the line containingRADOOP_PROXY_ENABLED
property, and modify it:SET RADOOP_PROXY_ENABLED=true
If RapidMiner Server is registered as a Windows service, apply the changes to
bin/service.bat
as well.If necessary, modify the port used by Radoop Proxy in
radoop-proxy/proxy.properties
in the RapidMiner Server installation directory. The properties are explained below.After you saved the modifications, restart RapidMiner Server.
Relocating and starting Radoop Proxy manually
Find
data/radoop-proxy/radoop-proxy-X.X.X
in the unzipped installer package. Move this zip file to the required target location.Note: If you have already installed RapidMiner Server, you can also find the unzipped content in
radoop-proxy
in the installation directory.Unzip Radoop Proxy package, and open
proxy.properties
file for modification. Modify the fields accordingly:# port where the proxy server listens port=1081 # SSL connections enabled sslEnabled=false # keystore that stores private key of proxy server, necessary if SSL enabled #keystorePath=keystore.jks # password to open the keysore #keystorePassword=keystorepassword # authentication methods offered (can use multiple separated by comma): # server - # use server setup for authentication (db/ldap) # (using serverAuthentication* parameters for server connection) # jwt - # use server setup SAML connection and JWT tokens # for authentication (using serverAuthentication* parameters for server connection) # superuser - # use static username/password established with below properties superuser* properties # authentication=server # location of RapidMiner server to connect to for authenication mode 'jwt' and 'server' serverAuthenticationScheme=http serverAuthenticationHost=localhost serverAuthenticationPort=8080 serverAuthenticationUrl=/api/rest/instance #serverAuthenticationScheme=https #serverAuthenticationHost=localhost #serverAuthenticationPort=8443 #serverAuthenticationUrl=/api/rest/instance # superuser authentication superuserName=proxyadmin superuserPassword=changeit # workers thread pool size workersPoolSize=100
Change to
bin
directory. Issue the following command to start up or halt Radoop Proxy:radoop-proxy[.bat] [start/stop]
If RapidMiner Server uses https authentication, see the related Security page.
See RapidMiner Server Users and groups for understanding what authentication method RapidMiner Server is configured to support.
The Radoop Proxy associated with a Radoop Connection is automatically disabled when a RapidMiner Radoop process is executed on RapidMiner Server. In this case, make sure to enable ‘Force Radoop Proxy on Server’ by editing the Radoop Connection in question. Further information can be found on the Radoop installation on Server page.