how does editplus connects to unix server


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users how does editplus connects to unix server
# 1  
Old 10-01-2008
how does editplus connects to unix server

hi all
i am working on a monitoring script for my server... i am able to monitor all the explicit sessions ... the problem arises when some one is using editplus to modify a file in the server .. the unix server is not showing the edit plus access as a session ... how to monitor the actions performed or to keep track of the access made to the server via edit plus ...

any help..
# 2  
Old 10-01-2008
a quick read from the edit plus home page says it uses ftp to dowload a copy of the file, edit it locally, and upload the file when you save it.
so, you should try to "audit" your ftp server maybe?
# 3  
Old 10-01-2008
I used WinScp to connect to the server, then have set Editplus to be my editor. it works great, I am able to open multiple files in editplus and switch between "tabs" while editing. Make sure in Editplus you UNCHECK "Allow multiple Instances" in preferences, other wise it will open a new instance for everyfile you are editing.

As fas as tracking others who open the file and are editing it, I know of no way to track that. You would probabally have to setup subversion and use a client software to "Checkout" the scripts. That would keep track of changes and who has it checked out to modify it. Tourtise is a windows client to checkout from subversion.
# 4  
Old 10-01-2008
broli is saying that the editor uploads the file via ftp, so you can monitor FTP connections with netstat -na | grep "<insert your pattern here>" and then check respective FTP logs, I hope you have such.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Solaris

Solaris ftp connects out svc disabled.

Hi, Running ftp online 2:53:02 svc:/network/ftp:default If I disable ftp disabled 2:54:00 svc:/network/ftp:default I can still SEND ftp files out. I cannot connect to this server via FTP, but why can I still connect to other ftp servers and send files? Cheers. (5 Replies)
Discussion started by: RedWizard75
5 Replies

2. Shell Programming and Scripting

Find and delete files and folders which are n days older from one unix server to another unix server

Hi All, Let me know how can i find and delete files from one unix server to another unix server which are 'N' days older. Please note that I need to delete files on remote unix server.So, probably i will need to use sftp, but question is how can i identify files and folders which are 'N'... (2 Replies)
Discussion started by: sachinkl
2 Replies

3. Homework & Coursework Questions

C/C++ program that connects to a MySQLserver

Hi Programming Geeks, I got an interesting C++ and MySQL problem to solve. I was unable to do this as I am not much confident on MySQL DB. Please have a go at it if possible. Write a C/C++ program that connects to a MySQLserver and checks if the InnoDB plug-in is installed on it. If so,... (5 Replies)
Discussion started by: vivek.goel.piet
5 Replies

4. Shell Programming and Scripting

In real time - what user connects or disconnect

Write a tool that will be displayed in real time, what user connects or disconnects from a system that uses this tool :)) Maybe anyone can help me? (2 Replies)
Discussion started by: titasas
2 Replies

5. Shell Programming and Scripting

Connecting to multiple unix server from unix server using shell script

Hi Gurus, I'm a unix newbie and I would like to connect to multiple unix servers from unix server using shell script i.e from server a to server b,c,d etc. I want to copy the files from unix server a to server b, c, d. I can access staright using ssh without the need to have password and user... (5 Replies)
Discussion started by: sexyTrojan
5 Replies

6. UNIX for Dummies Questions & Answers

To copy a file from one unix server to another unix server through scripts

I am getting the fallowing error when i am trying to execute the scp commomd in shell script warning: You have no controlling tty. Cannot read confirmation. warning: Authentication failed. Disconnected; key exchange or algorithm negotiation failed (Key exchange failed.). scp2: warning: ssh2... (1 Reply)
Discussion started by: manit
1 Replies

7. Shell Programming and Scripting

How to connect unix server to unix server through shell scripts

Hi, I would like to connect UNIX server to UNIX server through shell scripts and i have some concepts . But i am totally confused how to connect UNIX server to UNIX server throuth running a script. It will be greatful to me if any buddy will help me. with simple example please. Thanks in... (2 Replies)
Discussion started by: phatan
2 Replies

8. Shell Programming and Scripting

How to connect unix server to unix server through shell scripts

Hi, I would like to connect UNIX server to UNIX server through shell scripts and i have some concepts . But i am totally confused how to connect UNIX server to UNIX server throuth running a script. It will be greatful to me if any buddy will help me. Thanks in advance. Phatan:) (2 Replies)
Discussion started by: phatan
2 Replies
Login or Register to Ask a Question