- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Listener streaming....
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
11-02-2007 01:54 AM
11-02-2007 01:54 AM
stream /usr/dsb/jobs/listener3101
Thank you,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2007 01:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2007 02:28 AM
11-02-2007 02:28 AM
Re: Listener streaming....
> stream /usr/dsb/jobs/listener3101
MPE command ? ;-)
WK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2007 02:33 AM
11-02-2007 02:33 AM
Re: Listener streaming....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2007 03:40 PM
11-02-2007 03:40 PM
Re: Listener streaming....
WK is trying to be funny. MPE/iX has a stream command which is like batch(1).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2007 04:14 PM
11-02-2007 04:14 PM
Re: Listener streaming....
I feel you have to give full path for stream command in crontab file .
You can get Path for stream command from following command
#whereis stream
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2007 06:10 PM
11-02-2007 06:10 PM
Re: Listener streaming....
India # whereis stream
stream: /usr/share/man/man2.Z/stream.2
iam using to stream the Listener command
files name vi test.sh in that files i use like this.
stream /usr/sbdc/jobs/listener31611
in cron tab iam using like this
15 5 * * * sh /hai/test.sh
so it geving error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2007 06:34 PM
11-02-2007 06:34 PM
Re: Listener streaming....
stream: /usr/share/man/man2.Z/stream.2
This means it can't find it.
>when i run this file manually its working fine, why?????
Most likely as Dave and Gaurav said, you must use absolute paths in your crontab because cron doesn't use your .profile. Or you must augment your $PATH.
If you run it manually and it works, try using:
# whence -v stream
If that doesn't find it, add that just before you invoke it in test.sh.
>stream /usr/sbdc/jobs/listener31611
The syntax above says that stream is a command, function or alias and the next parm is a file or some such string.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2007 04:23 AM
11-05-2007 04:23 AM
Re: Listener streaming....
Dennis: The SEDC suite of software includes many MPE emulations, including one of the MPE "STREAM" command that uses, at its heart, at(1) instead of batch or cron. :)