remote-access

Access JBOSS Tomcat Web Application from Remote Computer

Hi, I just deployed a web application on JBOSS 4.2. It can be accessed locally only (http://localhost:8080/myApp). I cant access it from remote computer by typing its domain: (www.hostname.com:8080/myApp). I added Port 8080 as Exception in Windows Firewall. Note that the host (www.hostname.com) is reachable from remote computers via IIS...

How can I remotely watch logs on Win2003 servers?

(Briefly, like this question but for Windows servers.) I have several Win2003 servers running custom application services (C/C++, not Java) that write text-based logs in a custom format. [2009-07-17 12:34:56.7890]\t INFO\t<ThreadID>\tLog message... [2009-07-17 12:34:56.7890]\t *WARN\t<ThreadID>\tLog message... [2009-07-17 12:34:56.789...

.Net classes to control services on a remote machine?

Hi all, Yes I could google this but I'm being a little lazy. I need to remotely control windows services on another machine. Does the ServiceController class let me do this? What restrictions are there? Can I start / stop / change the "run as" details remotely, ie change a password that's due to expire? I'll be attempting to give ...

How to remotely restart a service on a password protected machine using Python?

Hi, I decided to tackle Python as a new language to learn. The first thing I want to do is code a script that will allow me to remotely restart services on other machines from my local machine. How would I accomplish this when the remote machine requires a username and password to log on? I don't need a full solution to be given to me b...

i need to check the status of the services that run in a remote computer using C#?

i m using the following code. ServiceController MyController = new ServiceController(); MyController.MachineName = server_txt.Text.Trim(); MyController.ServiceName = "Service1"; string msg = MyController.Status.ToString(); Label1.Text = msg; This code work fine in the network computers wh...

SQL Server 2005 Remote Login Permissions

I have a user Sql Authentication account that has remote access to my database server. The user has a default database, and is only able to access or modify that DB. So far so good. However, I'd like to prevent the user from viewing the other databases that he doesn't have access to anyway. Inside server permissions, I can deny the u...

SQL Server 2005 - Deny View of "Security", "Server Objects", "Replication" and "Management"?

I can deny a specific user DB viewing by doing something like this: DENY VIEW ANY DATABASE TO Myuser But, is there a way to also deny the "Security", "Server Objects", "Replication" and "Management" from being viewed by a remote user when logging in through SSMS? Thanks. ...

SQL Server 2005 - Remote Access From Specific IPs only

For the life of me I can't remember where/how to add ips to sqlserver's whitelist for remote connections. Thanks. ...

How can I connect to MySQL database on a dedicated Windows 2003 server from EC2 based app server with PHP

I have developed a web application that uses PHP and MySQL and has all been running fine from a single development server. I now want to separate things a bit and place an app server within Amazons cloud that will receive and process uploaded files. The database is going to remain on the dedicated server but will need to be accessed by t...

Deleting files from a client machine

Is there a way to delete files on a client computer after they've been uploaded to a server? My web application allows users to upload files to a server and I'm trying to find a way to have the original files deleted from the computer on which they reside. Specifically, the web application provides the user with the ability to delete fi...

Manipulating local files remotely with Ruby?

I would like to automate the creation of symbolic links on my laptops from a simple Rails app running on a remote server. I would need to be able to run kernel tasks on the laptop from anywhere. Is this even possible to do? ...

enable remote connection, laptop tracking

Hi, Today i was searching for some software which can track my lost laptop. There, i found a software which provides the following feature : • Geo-location is determined by wi-fi signal • Remotely delete files from the stolen laptop • Remotely retrieve files from the stolen laptop • Monitor and control everything the thief does ...

how to launch x programs running in mac ox from cygwin running on windows-

Hi everybody, running cygwin on windows I can connect and execute X applications with no further problems just accessing the remote linux box as ssh -Y -l user machine. If I do the same against a mac box and try to open ie. firefox as: open -a firefox returns the following: LSOpenURLsWithRole() failed for the application /Applications/Fi...

Accessing ASP.NET Development Server from another pc on the network

I would like to test my web app in other browsers. I have installed Virtual PC to do just that. the ASP.NET development server does not allow remote connections so the virtual pc (another computer on the network) cannot access the website. I found this post that was started but there was no solution. I understand that using localhost w...

PHP database connection

I need to connect to a remote mysql database in PHP. Specifically I have this as a constant: define("DATABASE_SERVER", "localhost"); ... $db = @mysql_connect(DB_SERVER, DB_USER, DB_PASS); I want to copy the site to my local machine but still connect to the main database. Can I do this? if so, how? All I have is FTP access. ...

Can I setup CVSROOT with remote access?

I created a cvs repository in my school network account, I would love to have the access to it using my local machines at home. I tried, at local, setting CVSROOT variable to be "myUserID@schoolServer:/u/myUserId/cs/csvroot", but it complains, about the $CVSROOT value, when I tried to use it. I also tried "cvs -d " option, but still not ...

Connecting to a remote computer - desktop

I want to be able to connect (from a server) to a remote PC and be able to access it's files. I am trying to do this with PHP or JavaScript. So I am wondering if 1) it's possible and 2) how to do it. Does anyone have any examples/solutions? Thanks! ...

Web services authentication with remote IP

I’m developing a small application that interacts with a web service which authorizes access based on the client IP. When developing on my local machine at home, I am not allow to access the web service, unless I request an authorization for the random IP that i get from my ISP. My question: Is there an easy way to get around this probl...

DirectoryCopy related

Requirement: I need to copy a folder/directory and its contents located in a Machine A to Machine B successfully. Before starting to copy the following points needs to be consider for my requirement. If the destination machine,Destination folder is having access permissions or not for the user which he needs to copy from the source f...

Getting Jquery from google

There are some tutorials which suggest to use jquery path which is from google eg: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; Is that safe to use in our projects? Aren't we dependent because we are not sure it will be there after a year or beyond? The r...