Remote access is the connection to a data processing system from a remote location.
2
votes
1answer
62 views
Migrate tkinter GUIs for remote access?
I'm no UI or web designer, though I have made a bunch of simple Tkinter-based GUIs that are simple wrappers to test lower-level code and hardware, such as protocol and data acquisition testers for ...
0
votes
3answers
87 views
Double hop access to copy files without CredSSP
hello,
We have large environment with hundreds of virtual machines. During our services deployment we need to copy some files from build drop to all these machines.
So, we have:
User machine, ...
2
votes
2answers
163 views
I can't connect remotely to mysql database [closed]
I can connect to a mysql database from my server. I use the following code to do that:
<?php
$con=mysqli_connect("localhost","username","userpass","dbname");
if (mysqli_connect_errno($con))
{
...
0
votes
1answer
96 views
how to grant remote access for mysql database from another network?
I am using MAMP, on a Mac. I have granted access to all ip addresses using:
GRANT ALL PRIVILEGES ON database.* to ‘%' IDENTIFIED BY 'somepassword';
FLUSH PRIVILEGES;
My team members need to ...
0
votes
3answers
204 views
Execute remote bash with ssh together with a local script, that, when ends, will kill the remote execution
I logged with ssh on the server with public key (no password).
This are the command that I would like to automatize with a bash:
ssh user@ip
cd path
./bash0.sh parameter1 paramter2 & <-- ...
-1
votes
2answers
115 views
How can write remote file with python? [closed]
I am going plan it for multi-test. I wrote script that its outputs written local file. I will run it on 5 machine and i want to do all of machine can write only remote machine for output. How can i do ...
3
votes
0answers
140 views
How can I flush GPU memory using CUDA (physical reset is unavailable)
My CUDA program crashed during execution, before memory was flushed. As a result, device memory remained occupied.
I'm running on a GTX 580, for which nvidia-smi --gpu-reset is not supported.
...
0
votes
2answers
113 views
how to connect to local machine using remote client machine
I am newbie to python, using wxpython i have made a GUI model ,which does certain operation on local machine.
I want that tool do operation on multiple local system from remote client. i have gone ...
0
votes
1answer
291 views
Tomcat 7.0.33 JAVA_OPTS configuration
I want to use JMX to monitoring tomcat and ActiveMQ with a remote connection.
For activeMQ I added this in JAVA_OPTS in startup.bat:
JAVA_OPTS=
-Dwebconsole.type=properties \
...
-1
votes
1answer
60 views
How to verify multiple application logs on more than one linux servers remotely [closed]
I am looking for a easy way to check application logs on multiple servers. How can I search for error string in multiple Linux application servers remotely?
e.g.
Need to search a string pattern in ...
-2
votes
1answer
26 views
How to secure remote access to admin/cms end? [closed]
What would be the best way to setup a secure remote access to ADMIN end/CMS of your web. app? - what available tools? configs? ideas? isolating admin end? there is talk of using SSL certs(how?)
Will ...
1
vote
1answer
191 views
How to connect to remote mysql database
i have viewed all the related question and answers but still having problem to connect to remote mysql database.
what i have done so far is..
1
CREATE USER 'root'@'192.168.1.100' IDENTIFIED BY ...
1
vote
1answer
105 views
Share a common remote db connection across multiple independent dtsx packages
Background: Server1 has source db with 4 tables. Server2 is the destination db with those 4 to 5 tables (and some extra fields). We've a field mapping and some extra processing (i.e. truncate, ...
1
vote
1answer
126 views
Java - How to access Windows Registry remotely
I found that it is possible to access Windows Registry remotely using C++. But is it possible to do remote Windows Registry access through JAVA?
Just be able to read the registry remotely would be ...
0
votes
1answer
22 views
How to get a View object that has focus?
How do I get the View that currently has focus, not necessarily of my own application?
0
votes
1answer
43 views
remote script execution produce errors
I execute groovy script remotely on Linux machine. That produce me error
bash: -c: line 0: syntax error near unexpected token `('
My command is :
ssh user@11.11.11.11 ...
0
votes
0answers
14 views
Remote device by smartphone android
I'm a newbie in this world.
I wanna build an application to remove some device.
Ex:
I wanna turn on or off lights and use my smartphone (Android) to do.
But, I don't know how to do? Can you show me ...
0
votes
2answers
153 views
Getting the IP addresses of a remote machine using the remote machine IP address
Is it possible to get a list of the IP addresses a remote machine is connected to if you only have the IP address of the remote machine. You don't have any other details, no username or password.
...
2
votes
1answer
66 views
Stream video and commands on same connection or split connections?
Background
I am in the middle of writing a client/server app that i will install on every machine within my office (roughly 30 - 35 machines). I currently have the client connecting to the server and ...
-1
votes
1answer
94 views
Connecting to MySQL database remotley [closed]
I have tried hostgator and now Arvixe and I cannot connect to a MySQL database from visual studio nor can I connect through MySQL workbench or telnet. I have gone through the steps with both companies ...
0
votes
1answer
93 views
Accessing Enterprise Beans through a Remote Interface with @EJB
I have an interface like this:
@Remote
public interface ClientDataAccessRemote
And the EJB implements it:
@Stateless
public class ClientDataAccess implements ClientDataAccessRemote
And in the ...
0
votes
0answers
42 views
Remote-control a VPN-ed computer?
Is there a way to control a computer that's on a corporate VPN using another computer sitting next to it?
I run a lot of heavy database jobs, but I am required to do so using my boat-anchor corporate ...
5
votes
0answers
149 views
Remote communication with R – How to start with an R GUI client to access R on a remote Server
I tried RInside's Qt example qdensity and really liked it. It was easy to setup and I was surprised how easy it was to understand and modify given that I have virtually no Qt experience. Now I wonder ...
-1
votes
1answer
103 views
start kde from ssh [closed]
I have a program that I need for job desktop. I need to start computer (without monitor) with Linux(Kubuntu), connect with ssh from another computer and start kde. I don't need to see desktop. I only ...
0
votes
3answers
109 views
How to Acess Remote Computer Folders in PS SQLSERVER:\>
Recently I came to know how to use Powersehll commands for executing SQL queries as mentioned below:
Import-Module “sqlps” -DisableNameChecking
$ds=Invoke-Sqlcmd -Query $Query -Database $Database ...
1
vote
0answers
68 views
solaris cluster check command fails with: cluster check: (C704199) unable to reach Common Agent Container [closed]
im am fuzzing around with solaris cluster software. during the process of installation the state of the system is checked with "cluster check". the install process even generates logs for that.
when ...
0
votes
2answers
325 views
SSH tunneling to remote access MySQL database
I am trying to write Java program to access a remote mySQL database using ssh tunneling.
Below is my code:
int lport = 5656;
int rport = 3306;
String rhost = "111.222.333.444";
String host = ...
0
votes
1answer
219 views
Minecraft RCON isn't working when ran from web server, but is wokring from localhost
I have a script that should whitelist people on my minecraft server remotely from my webserver.
This script works perfectly when ran from my localhost, but not when ran on my web server (Connection ...
-1
votes
1answer
46 views
Free Version Control for synchronizing the code between build machine and my local machine [closed]
Any suggestions for a version control to sync my codes between the build machine and my laptop? it has to be open-source to avoid IT-ethics issues in the organization. I have slight experience on git ...
0
votes
0answers
97 views
Looked-up EJB returning POJO: java.lang.ClassNotFoundException
I'm new to EJB and we have to do a projekt work for our university. We have to write a distributed application in java. One webserver (webproject) containing the jsf pages and managedbeans and one ...
0
votes
1answer
17 views
working on a python code from two locations
I am working on a python code which runs all the time. But I am running it on my home machine, which is fixed. While I am at a different location, I would like to make changes / monitor the program on ...
1
vote
1answer
234 views
MobaXterm drag-and-drop panel missing
I need to run a program from my windows xP machine thats installed on a remote UNIX machine using MobaXterm but I have very little experience with this sort of thing.
I can login into the machine ...
0
votes
0answers
93 views
Javascript not working on Terminal Services remote app
I've got an application that has a quasi-browser built into it and the below Javascript is in the browser in the application. This works a treat on all users' PCs except those running the application ...
0
votes
1answer
35 views
unable to connect to PPAS instance in HP Cloud using pgAdmin on Windows 7 PC
With a fresh PPAS image in the HP Cloud, is it possible to connect to that remote image from pgAdmin running on a Windows 7 PC without first making any changes to the PPAS configuration up in the ...
0
votes
3answers
505 views
Error : System.IO.IOException: the network path was not found
when i am executing following code it results an error please help me to resolve this.
class MySample
{
public static void Main()
{
string eventLogName = "Security";
string sourceName = ...
0
votes
0answers
174 views
Resolving Coldfusion J2EE sessions with ajax calls to cfc methods using verifyclient
I am currently utilizing CF session management and have been investigating transitioning to utilizing J2EE session management. In my attempts to do so, ajax requests made ( when CFsession management ...
3
votes
0answers
91 views
How to launch remote applications ( not desktops) in android [closed]
I need to create one application based on rdp(Remote Desktop Protocol) , which enables you to connect to your Windows computers across the Internet from your mobile device(ANDROID). Once connected, it ...
0
votes
1answer
43 views
Secure a remote access with IP address
I want to prevent people to access my website outside my home and my father's home. Is it a good idea to check the IP of the connection and to grant the access or is it easily breachable ?
1
vote
1answer
85 views
Access clients ios app crash reports in case of an in-house app
I have developed an iPad in-house app. I gave it to client to test. He is using it and its crashing some times. Now, i know how to get hold of crash reports on my test ipad device. Go to organizer and ...
-1
votes
1answer
104 views
Execute commands using ssh in java [closed]
Here is what I want to do in java:
Open an ssh session ( remote or local).
Send commands ( this is just an example):
cleartool lsview
cleartool setview
cleartool catcs
For ssh connection there ...
5
votes
3answers
152 views
How to list all files in a remote SVN repository?
I access a large remote SVN repository. Since I usually only need a tiny subset of its content I did a "sparse checkout":
svn checkout --depth empty svn+ssh://... src
Whenever I need a folder from ...
1
vote
1answer
265 views
WMI Remote connection, failing [closed]
Solved, have got the answer in other thread if any1 needs it for reference..
Explanation:
Local WMI worked, but now I'm trying to do it remotely. I've tried disabling both firewalls, checking WMI ...
1
vote
2answers
1k views
MySQL remote connection fails with “unknown authentication method”
I am trying to remotely connect to MySQL server online from my local machine, but I am getting the following error:
Warning: PDO::__construct(): The server requested authentication
method unknown to ...
0
votes
2answers
43 views
Buffering MySQL Remote Access
I am building a .NET application that needs to access a remote MySQL database. To me that means that I will need to enable "Remote MySQL" access with a "%" qualifier so that anyone, from any IP can ...
0
votes
2answers
144 views
Remote commands execution and file acces in Linux and Windows
Suppose I have a server application installed in a few Linux and Windows machines. Now I would like to control it remotely. That is, I would like to start and stop the application, update the ...
0
votes
0answers
361 views
SQLServer Management Studio connect to Azure VM SQLServer [Solved]
I'm new with Windows Azure and I need to try to establish connectivity between my laptop and Windows Azure VM running SQLServer!
It seems like is a simple question but i'm with serious difficulties!
...
1
vote
0answers
58 views
Database syncronization of Remote Database to Local Database and vice versa using Python
I'd like to ask regarding syncronizing records between remote database and local database using Python program. I am just a newbie on Python Language and would like to seek assistance on these one.
...
-1
votes
3answers
765 views
xcopy with credentials on remote machine [closed]
I am trying to access a remote server on a different domain through its IP address. In run command I entered the following
\\XXX.XXX.XXX.XXX\C$\Program Files\
I get a pop up window asking for ...
1
vote
1answer
88 views
How many parallel executions can be done on a Powershell script
Hello we are planning to use a powershell script for some administrative tasks, which will be accessed by the remote admins. The script will be located on a central file share and will be accessed by ...
1
vote
1answer
161 views
How to click on ok on remote machine while starting machine by using vbscript
I am connecting to Remote machine successfully by using below VBScript But the problem is it is stopping at OK button. If once I click on ok Manually then machine is opening.
Set WshShell = ...




