remote-access

selecting CRAN mirror from remote device

拈花ヽ惹草 提交于 2020-01-24 23:42:07
问题 I am running jobs remotely, and the cluster I am running it on does not have the R package I require. I have tried to install it using: if(!require(hglm)){install.packages("hglm");require(hglm)} and realise that I am required to select a CRAN mirror. I tried adding: selectCRANmirror() to the script, but received the error message, cannot select CRAN mirror non-interactively. I then tried adding: selectCRANmirror(ind=72) as this is what I would use on my local computer to set the CRAN mirror

GUI application automation when no user logged in windows server 2016

廉价感情. 提交于 2020-01-16 11:31:50
问题 I am trying to automate Rumba TN3270 7.2 on windows server 2016(AWS) where my web application is also hosted. I have written the VBA script which will do the automation on Rumba. To run the script I have to open the Rumba (.WDM file). We have wrapped the all code in simple console .net app and set that in task scheduler. The task runs when we logged in but it does not run when user logged off. After 3 days found that GUI application won't run without kind of active session. Is there anyway to

GUI application automation when no user logged in windows server 2016

梦想与她 提交于 2020-01-16 11:31:13
问题 I am trying to automate Rumba TN3270 7.2 on windows server 2016(AWS) where my web application is also hosted. I have written the VBA script which will do the automation on Rumba. To run the script I have to open the Rumba (.WDM file). We have wrapped the all code in simple console .net app and set that in task scheduler. The task runs when we logged in but it does not run when user logged off. After 3 days found that GUI application won't run without kind of active session. Is there anyway to

Connecting to ec2 server issue

五迷三道 提交于 2020-01-06 06:03:14
问题 I'm connecting to a ec2 using Remote Desktop Connection with the Admins Login and Password but after connecting to the server I see the Windows's User Login Page asking for the password a second time, so I'm needing to type the password twice. It wasnt like this before, when connecting to the server the user would already be logged in, this started after a windows update in my machine. How can I connect with the user already logged like before? 回答1: I also had this problem, and it looks like

Monitoring remote system using Jconsole

二次信任 提交于 2020-01-06 03:42:07
问题 I am connecting to remote Unix system using putty and .ppk key file. Now i want to monitor this remote unix system using Jconsole. On remote system jmx port is enabled on 8080. I have its ip address ,jmx port ,username and .ppk file.How could i connect or remotely monitor using Jconsole? through putty i am connected to remote system using tunneling . 回答1: I assume the remote port 8080 cannot directly be connected to or you question would be mood, so: Having a "regular" terminal connection won

Execute C# code on remote machine

流过昼夜 提交于 2020-01-05 19:45:15
问题 i have a piece of code which i want to execute on remote computer. I am not getting how to do that. Like if i want to execute command given below on remote machine how to do that. Process[] processlist = Process.GetProcesses(); it is just an example, like i want to execute whole code on remote machine with libraries. if you are going to answer for getting processlist as SelectQuery selectQuery = new SelectQuery("Select * from Win32_Process"); using(ManagementObjectSearcher searcher =new

Execute C# code on remote machine

我只是一个虾纸丫 提交于 2020-01-05 19:45:08
问题 i have a piece of code which i want to execute on remote computer. I am not getting how to do that. Like if i want to execute command given below on remote machine how to do that. Process[] processlist = Process.GetProcesses(); it is just an example, like i want to execute whole code on remote machine with libraries. if you are going to answer for getting processlist as SelectQuery selectQuery = new SelectQuery("Select * from Win32_Process"); using(ManagementObjectSearcher searcher =new

Execute C# code on remote machine

a 夏天 提交于 2020-01-05 19:45:07
问题 i have a piece of code which i want to execute on remote computer. I am not getting how to do that. Like if i want to execute command given below on remote machine how to do that. Process[] processlist = Process.GetProcesses(); it is just an example, like i want to execute whole code on remote machine with libraries. if you are going to answer for getting processlist as SelectQuery selectQuery = new SelectQuery("Select * from Win32_Process"); using(ManagementObjectSearcher searcher =new

Connecting to Remote Server MySQL Issue

孤人 提交于 2020-01-05 04:03:38
问题 I'm attempting to connect to a remote server, which I'll refer to as machine A. I've created a user following the instructions here CREATE USER 'monty'@'localhost' IDENTIFIED BY 'some_pass'; GRANT ALL PRIVILEGES ON *.* TO 'monty'@'localhost' WITH GRANT OPTION; CREATE USER 'monty'@'%' IDENTIFIED BY 'some_pass'; GRANT ALL PRIVILEGES ON *.* TO 'monty'@'%' WITH GRANT OPTION; On machine A I can run the command mysql -u monty -h website.com -p This connects to sql with no problem. However, when

Check if a Registry Path Exists in Remote Machine

拟墨画扇 提交于 2020-01-05 02:32:32
问题 I have used Power Shell to check if a path exists using this command . powershell test-path "HKCU:\Software\Microsoft\Windows" now how can the same be extended to remote machine. What is the syntax if i want to test a registry path in Remote machine, i tried powershell test-path "\\machinename\HKCU:\Software\Microsoft\Windows" and its not working. Suggest some way to test it. 回答1: You can access it as outlined here: http://powershell.com/cs/blogs/tips/archive/2011/02/15/accessing-registry