- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- how make ftp service on debian sarge machine--Serv...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 11:13 PM
04-05-2006 11:13 PM
how make ftp service on debian sarge machine--Server B in attachment
I really need your help.
I have to make a sistem for catchig files from patricular server ( see attachment)
I have to allow remote user to connect to server A, over server B and place/take samo data on it.
My question is how implement ftp ( it should be FTP ) on server B?
I am going to make some PHP application on server B to allow remote user to connect to server A.
This is my opinion, I would pritiete very much if you direct me how implement this....just hints how to start.
So my problem is server B, and how make it works above mentioned task.
Server B should be linux....whatever but I prefer Debian
Thank you in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 12:50 AM
04-06-2006 12:50 AM
Re: how make ftp service on debian sarge machine--Server B in attachment
apt-get install pure-ftpd
and when a user make an upload, a script uploads it on B ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 12:52 AM
04-06-2006 12:52 AM
Re: how make ftp service on debian sarge machine--Server B in attachment
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 12:58 AM
04-06-2006 12:58 AM
Re: how make ftp service on debian sarge machine--Server B in attachment
After you will be able to put a file from B to A...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 01:13 AM
04-06-2006 01:13 AM
Re: how make ftp service on debian sarge machine--Server B in attachment
server A, I can only configure server B.
Server A is closed sistem and I can not do anything on it, I can change only server B.
And I am wondering how to allow remote users to
upload/download files on server A, over server B.
That is my problem.
Thank you anyway.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 01:31 AM
04-06-2006 01:31 AM
Re: how make ftp service on debian sarge machine--Server B in attachment
It will be difficult to upload files if you can't do anything on A.
Maybe there is a service available on it like sshd which will permit you to copy a file (scp) ?!?
Otherwise ....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 01:35 AM
04-06-2006 01:35 AM
Re: how make ftp service on debian sarge machine--Server B in attachment
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 02:21 AM
04-06-2006 02:21 AM
Re: how make ftp service on debian sarge machine--Server B in attachment
Already installed and configured relatively
securely on Sarge.
Generate keys on Server B for the webserver
account. Copy the public key to Server A
and place it in .ssh/authorized_keys
for the target userid.
When a user uploads a file copy it
with scp $FILE USER@ServerA:$FILE.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 02:26 AM
04-06-2006 02:26 AM
Re: how make ftp service on debian sarge machine--Server B in attachment
So it will be difficult to do something ;-)