Posts

Showing posts with the label running

solved problem of running net apps from a mapped network drive

solved problem of running net apps from a mapped network drive Follow under given procedure, and for the URL put your network share: http://msdn.microsoft.com/en-us/library/bs2bkwxc(v=vs.80).aspx If you dont have the .net configuration 2.0 tool on your machine, grab the cut down installer from here: http://blogs.msdn.com/b/astebner/archive/2006/01/23/516671.aspx -Adam Radics download file now

start Unknown job ssh error while running Xubuntu Live CD

start Unknown job ssh error while running Xubuntu Live CD I tried running Xubuntu Live CD on an older laptop, but ssh server didnt wanted to start. Running the start init.d script sudo /etc/init.d/ssh start showed me this error " start: Unknown job: ssh " Searching for an answer lead me to this ubuntuforums.org post and this stackoverflow post. None of those solutions worked, however they helped me in a way to solve this problem. Xubuntu Live CD doesnt have ssh server installed by default. I installed the ssh client and server: sudo apt-get install ssh openssh-server -y and I tried to start it when it gave me the error. By running the ssh server manually /usr/sbin/sshd -D showed me this error " Missing priviledge separation directory: /var/run/sshd " By creating this directory, the problem was solved : sudo mkdir /var/run/sshd Now, I can simply run /usr/sbin/sshd -D and the ssh server works download  file  now

Storm Debugging topology running in storm cluster

Storm Debugging topology running in storm cluster Usually debugging is much easier when running storm topology in a local cluster, especially when it comes to command line output (e.g. "System.out.println()"). However, once the storm topology is deployed in a storm cluster. the command line output will longer be available. In such case, the logs created by storm becomes very useful as your command line output will be stored there. To this end, suppose you configure to have the storm logs stored in /var/storm-logs directory. and you want to view and continuously print out of command line just like what "System.out.println()" did in a local cluster. And suppose the logs is stored in a file named worker-6666.log. The easiest way to do this is to run the following commands: > cd /var/storm-log > tail -f worker-6666.log The "tail -f" command will print out the last ten lines of the worker-6666.log continuously, download  file  now