- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Error message
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
08-27-2002 09:24 AM
08-27-2002 09:24 AM
I can connect to the server but no login prompt from my pc's terminal. So I decided to go and check with server with console. It said:
cron aborted: cannot access fifo queue
So I had to press the power button off and on... So how can I fix with that fifo?
I appreciate your help.
Tom
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 09:31 AM
08-27-2002 09:31 AM
SolutionCheck for the presence of a FIFO queue:
# ls -l /var/adm/cron/FIFO
You should see something like:
prw------- 1 root root 0 Aug 26 13:50 FIFO
The 'p' denotes a pipe. If you don't have this file or it isn't a pipe file, do:
# mknod /var/adm/cron/FIFO p
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 09:32 AM
08-27-2002 09:32 AM
Re: Error message
# > /abast
# for i in /var/spool/cron/crontabs
> do
> echo $i >> /abast
> cat $i >> /abast
> echo ========================== >> /abast
> done
#
send me tha /abast file!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 09:34 AM
08-27-2002 09:34 AM
Re: Error message
http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000058668849
Doc ID - KBRC00001046
For the login prompt issue, you may have to check the connection settings, syslog.log file, your terminal setting etc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2002 09:39 AM
08-27-2002 09:39 AM
Re: Error message
abast file is here:
/var/spool/cron/crontabs
^L??^L^A.^A`??^L^B..^L??8^Droot(
_cron15244^T
_cron10012^L??^C??^Goracle7==========================
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2002 02:25 AM
08-28-2002 02:25 AM
Re: Error message
Were you able to login at the console? If a user was already logged in at the console then tapping return at the cron error should have returned you to a prompt, where you could have safely run a shutdown. You should avoid powercycling a running server if at all possible, always making sure it is shutdown first.
How are you connecting from your PC? Are you using a telnet connection, is the problem confined to just your pc?
regards,
Darren.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2002 02:36 AM
08-28-2002 02:36 AM
Re: Error message
Do the following
A)If you actually have a /var/adm/cron/FIFO file.Remove it
rm /var/adm/cron/FIFO
B)Remake the pipe by running:
mknod /var/adm/cron/FIFO p
You must include the final p argument .
C)Verify the cron directories:
/usr/lib/cron
and
/usr/spool/cron
You should see
lrwxr-xr-t 1 root sys 13 Jun 14 03:43 /usr/lib/cron -> /var/
adm/cron
dr-xr-xr-x 5 bin bin 96 May 22 15:20 /usr/spool/cron
prw------- 1 root root 0 May 22 15:20 /var/adm/cron/FIFO
Steve Steel