- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: FTP 500 error
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
12-07-2005 02:26 PM
12-07-2005 02:26 PM
FTP 500 error
I run a script in program :FTP://192.168.1.23:5021/FTPDIR1/FTPDIR
Error information:ftp error500:"syntax error,
not identified command,It is possible that the
command line is too long."
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2005 03:30 PM
12-07-2005 03:30 PM
Re: FTP 500 error
Why do you secify the port no 5021 ?
:FTP://192.168.1.23:5021/FTPDIR1/FTPDIR
I think that is the cause of the error?
HtH,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2005 03:38 PM
12-07-2005 03:38 PM
Re: FTP 500 error
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2005 03:46 PM
12-07-2005 03:46 PM
Re: FTP 500 error
ftp 500 error could be an invalid port number error and as sivakumar suggests try not to use the port number here.
I would suggest trying a manual run of the command by breaking it down instead of running the script.
eg. Assuming that the ftp port 5021 is a valid one
do
#ftp://192.168.1.23:5021
and the cd into the directories after logging in
ftp> cd /FTPDIR1/FTPDIR
this could be a syntax error that may have to be fixed by manual tries.
thanks
DP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2005 04:35 PM
12-07-2005 04:35 PM
Re: FTP 500 error
I will update my software by using the FTP
server.I can use the script in IE browser.But it indicate FTP 500 error in my program.
thank you!