- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Can anyone tell me
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
05-23-2007 06:50 AM
05-23-2007 06:50 AM
Any help would be greatly appreciated.
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2007 06:56 AM
05-23-2007 06:56 AM
Re: Can anyone tell me
I suspect the message is "Not a typewiter". Look in '/etc/rc.log' for the complete message.
If you have a startup script that sources (reads) a standard user profile as, for example):
su - username -c script
...then the 'username' '.profile' will be read in a non-interactive (i.e. no terminal associated with the process) environment leading to the "Not a typewriter".
If so, you can conditionally wrap your 'stty' and 'tset' profile commands with:
# if [ -t 0 ]; then
...
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2007 06:57 AM
05-23-2007 06:57 AM
Re: Can anyone tell me
The next thing would be to have a look at /etc/syslog.conf and see if there is a malformed configuration line in there.
If you are unsure about syslog.conf syntax, then take a look at the syslogd man page. For even more information, the syslog man page.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2007 07:16 AM
05-23-2007 07:16 AM
Re: Can anyone tell me
Start system message logging daemon
Output from "/sbin/rc2.d/S220syslogd start":
----------------------------
System message logger started
There aren't any error messages concerning this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2007 07:31 AM
05-23-2007 07:31 AM
Re: Can anyone tell me
cd /sbin/init.d
./syslogd stop
./syslog start
If you see error messages then examine /etc/syslog.conf for any extraneous/incorrect entries; if not, then let's test syslogd ourselves.
logger "This is a test"
Now examine "tail /var/adm/syslog/syslog.log" and see if your entry is found. If so, syslogd is working and you have a process sending a malformed message to syslogd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2007 07:45 AM
05-23-2007 07:45 AM
Re: Can anyone tell me
syslogd: unknown priority name "log"
would seem to suggest that there might be a malformed line in the /etc/syslog.conf file.
In that file, each non-empty non-comment line should begin with a selector which is of the form:
The word "log" is not one of the recognized
Also remember that the selector and the log destination fields in the syslog.conf file should be separated by one or more TAB characters, *not* by spaces. A copy/paste operation from one terminal window to another often converts TABs into spaces, and in syslog.conf this is actually harmful.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2007 09:53 AM
05-23-2007 09:53 AM
SolutionReplace the spaces with the tab
kill -HUP `cat /var/run/syslog.pid`
or
/sbin/init.d/syslogd stop / start
Or it is always more easy to copy the syslog.conf file from a working system, and modify as per the requirements. Use tabs for the fields.
cp /etc/syslog.conf /etc/syslog.conf.orig
scp from the system
Restart the syslogd
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 02:27 AM
05-29-2007 02:27 AM