Member since
05-09-2016
280
Posts
58
Kudos Received
31
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3823 | 03-28-2018 02:12 PM | |
3053 | 01-09-2018 09:05 PM | |
1672 | 12-13-2016 05:07 AM | |
5151 | 12-12-2016 02:57 AM | |
4441 | 12-08-2016 07:08 PM |
11-16-2016
05:56 PM
@WeiHsiang Tseng, Firstly, try with 8090, not 9080. When you say close, what you are referring to? Have you logout from the shell or power off the image from VirtualBox. In the latter case, if your Sandbox is not up and running, you will not be able to access 8090 port
... View more
11-15-2016
07:32 PM
It is working now, please follow the below steps:
wget https://download2.rstudio.org/rstudio-server-rhel-0.99.893-x86_64.rpm sudo yum install --nogpgcheck rstudio-server-rhel-0.99.893-x86_64.rpm ln -s /usr/lib64/libssl.so.10 /usr/lib64/libssl.so.6 ln -s /usr/lib64/libcrypto.so.10 /usr/lib64/libcrypto.so.6 yum install dpkg dpkg-divert --local --rename --add /sbin/initctl ln -s /bin/true /sbin/initctl yum install R rstudio-server verify-installation Please change the default port from 8787 to 8090 as this port is not opened in the docker sandbox Go to file /etc/rstudio/rserver.conf and add this entry : www-port = 8090 Restart the server by typing exec /usr/lib/rstudio-server/bin/rserver. It will take you out from the docker shell but you can relogin. Go to browser anyway and access RStudio by typing 127.0.0.1:8090. The login page will appear, use user credentials maria_dev/maria_dev
... View more
11-15-2016
06:57 PM
Hi @Marcy , the VirtualBox and VmWare ones actually run a Docker container inside it to make it easier to setup and configure. So when you do ssh to 2222, it gets you to the docker container, which is inside the VM. You can also use third one which is the native docker version. That means all Sandbox versions are now docker containers.
... View more
11-15-2016
06:34 PM
make sure your rstudio-server is even running or not. Try rstudio-server status or ps -ef | grep rstudio-server. If they do not show anything that means your RStudio is not running. Configuring ports step come after this.
... View more
11-15-2016
05:03 PM
Hi @Marcy, you are not able to access 8787 because it is not forwarded to this docker sandbox container. You have two options: 1. Edit the /etc/rstudio/rserver.conf to use a port which is opened for both VM and docker. 8090 and 8091 are two such ports which you can use. Go to that file and add an entry: www-port = 8090 After this, restart the RStudio server by typing service rstudio-server restart 2. You can also open the default port 8787, just follow this tutorial about how to open the ports for Hortonworks Docker Sandbox.
... View more
11-14-2016
08:58 PM
3 Kudos
@milind pandit, adding to what @Michael Young has already said. After starting the Solr service, you can start your Ambari Infra again. There will not be any conflict from Ambari Infra side.
... View more
11-14-2016
06:33 PM
@Garima Verma , you can use RouteOnAttribute Processor to filter out the records based on the condition. One way to drop the column is to use ExtractText processor that assigns the columns to attributes using regular expression and in ReplaceText processor, you can drop that attribute from the FlowFile content. You can transform your null values by using ReplaceText processor which uses Nifi Expression language. I would recommend you to go through Nifi Processors and Nifi Expression language. Here is the link: https://nifi.apache.org/docs.html You can go through all processors and expression language guide here.
... View more
11-14-2016
06:21 PM
2 Kudos
@J. D. Bacolod , make sure your Ambari Infra service is stopped when you start the Solr. Ambari Infra is the embedded solr which other services need. Start your newly installed Solr and later on, you can start Ambari Infra.
... View more
11-12-2016
01:14 AM
Got this one working, there were some null values in output/dependent variable ARR_DELAY. Replaced those with the mean value of the column.
... View more