Sponsored Content
Full Discussion: Telnet uninitialized
Operating Systems Solaris Telnet uninitialized Post 302813733 by smazshah on Tuesday 28th of May 2013 04:41:56 AM
Old 05-28-2013
Code:
svcs -xv svc:/network/inetd:default
svc:/network/inetd:default (inetd)
 State: offline since Wed May 15 16:46:40 2013
Reason: Service svc:/system/filesystem/local:default
        is not running because a method failed.
   See: http://sun.com/msg/SMF-8000-GE
  Path: svc:/network/inetd:default
          svc:/system/filesystem/local:default
   See: man -M /usr/share/man -s 1M inetd
Impact: 6 dependent services are not running:
        svc:/milestone/multi-user:default
        svc:/milestone/multi-user-server:default
        svc:/system/basicreg:default
        svc:/system/zones:default
        svc:/application/graphical-login/cde-login:default
        svc:/application/cde-printinfo:default

---------- Post updated at 11:41 AM ---------- Previous update was at 10:46 AM ----------

Code:
svcs -xv

svc:/system/filesystem/local:default (local file system mounts)
 State: maintenance since Wed May 15 16:50:55 2013
Reason: Start method exited with $SMF_EXIT_ERR_FATAL.
   See: http://sun.com/msg/SMF-8000-KS
   See: /var/svc/log/system-filesystem-local:default.log
Impact: 38 dependent services are not running:
        svc:/system/webconsole:console
        svc:/system/filesystem/autofs:default
        svc:/system/system-log:default
        svc:/application/management/seaport:default
        svc:/application/management/snmpdx:default
        svc:/application/management/dmi:default
        svc:/milestone/multi-user-server:default
        svc:/system/basicreg:default
        svc:/system/zones:default
        svc:/application/management/sma:default
        svc:/system/fpsd:default
        svc:/milestone/multi-user:default
        svc:/application/graphical-login/cde-login:default
        svc:/application/cde-printinfo:default
        svc:/network/smtp:sendmail
        svc:/system/dumpadm:default
        svc:/system/fmd:default
        svc:/network/ssh:default
        svc:/system/sysidtool:net
        svc:/network/rpc/bind:default
        svc:/network/nfs/nlockmgr:default
        svc:/network/nfs/client:default
        svc:/network/nfs/status:default
        svc:/network/nfs/cbd:default
        svc:/network/nfs/mapid:default
        svc:/application/stosreg:default
        svc:/network/inetd:default
        svc:/system/sysidtool:system
        svc:/system/postrun:default
        svc:/system/filesystem/volfs:default
        svc:/platform/sun4u/dscp:default
        svc:/platform/sun4u/sckmd:default
        svc:/system/cron:default
        svc:/application/font/fc-cache:default
        svc:/application/gdm2-login:default
        svc:/system/boot-archive-update:default
        svc:/network/shares/group:default
        svc:/system/sac:default

svc:/network/rpc/gss:default (Generic Security Service)
 State: uninitialized since Wed May 15 16:46:40 2013
Reason: Restarter svc:/network/inetd:default is not running.
   See: http://sun.com/msg/SMF-8000-5H
   See: man -M /usr/share/man -s 1M gssd
Impact: 19 dependent services are not running:
        svc:/network/nfs/client:default
        svc:/system/filesystem/autofs:default
        svc:/system/webconsole:console
        svc:/system/system-log:default
        svc:/application/management/seaport:default
        svc:/application/management/snmpdx:default
        svc:/application/management/dmi:default
        svc:/milestone/multi-user-server:default
        svc:/system/basicreg:default
        svc:/system/zones:default
        svc:/application/management/sma:default
        svc:/system/fpsd:default
        svc:/milestone/multi-user:default
        svc:/application/graphical-login/cde-login:default
        svc:/application/cde-printinfo:default
        svc:/network/smtp:sendmail
        svc:/system/dumpadm:default
        svc:/system/fmd:default
        svc:/network/ssh:default

svc:/network/rpc/meta:default (SVM remote metaset services)
 State: uninitialized since Wed May 15 16:46:40 2013
Reason: Restarter svc:/network/inetd:default is not running.
   See: http://sun.com/msg/SMF-8000-5H
   See: man -M /usr/share/man -s 1M rpc.metad
Impact: 7 dependent services are not running:
        svc:/system/mdmonitor:default
        svc:/milestone/multi-user:default
        svc:/milestone/multi-user-server:default
        svc:/system/basicreg:default
        svc:/system/zones:default
        svc:/application/graphical-login/cde-login:default
        svc:/application/cde-printinfo:default

svc:/network/rpc/rstat:default (kernel statistics server)
 State: uninitialized since Wed May 15 16:46:41 2013
Reason: Restarter svc:/network/inetd:default is not running.
   See: http://sun.com/msg/SMF-8000-5H
   See: man -M /usr/share/man -s 1M rpc.rstatd
   See: man -M /usr/share/man -s 1M rstatd
Impact: 1 dependent service is not running:
        svc:/application/management/sma:default

svc:/network/rpc/smserver:default (removable media management)
 State: uninitialized since Wed May 15 16:46:41 2013
Reason: Restarter svc:/network/inetd:default is not running.
   See: http://sun.com/msg/SMF-8000-5H
   See: man -M /usr/share/man -s 1M rpc.smserverd
Impact: 1 dependent service is not running:
        svc:/system/filesystem/volfs:default

svc:/platform/sun4u/dcs:default (domain configuration server)
 State: maintenance since Wed May 15 16:50:55 2013
Reason: Restarting too quickly.
   See: http://sun.com/msg/SMF-8000-L5
   See: man -M /usr/share/man -s 1M dcs
   See: /var/svc/log/platform-sun4u-dcs:default.log
Impact: This service is not running.


Last edited by Scott; 05-28-2013 at 06:10 AM.. Reason: Code tags, please...
 

10 More Discussions You Might Find Interesting

1. Programming

bss(uninitialized data) segment allocation

Hi 1) Please go through the following code : char string2; char string1; main() { memcpy(string2,"SENDER ",12); strcpy(string1,"******"); printf("%s\n%s\n",string1,string2); } 2) and the output of... (7 Replies)
Discussion started by: karimulla_sha
7 Replies

2. Shell Programming and Scripting

Use of uninitialized value in join or string at arraydef.pl

When try to execute the following script, its throwing this error: " Use of uninitialized value in join or string at arraydef.pl line 17. " The script is : 1 #!/usr/bin/perl 2 3 use strict; 4 5 my @a = ( 1...10 ); 6 7 print " Original array : @a... (5 Replies)
Discussion started by: praveen_b744
5 Replies

3. Shell Programming and Scripting

Webpage to Telnet via Perl and Expect: Telnet problem?

Somewhat long story: I have a simple Perl CGI script that uses Expect to Telnet to a device and grab some data, and then spits it back to Perl for display on the Webpage. This works for many devices I've tried, but one device just fails, it keeps rejecting the password on this device, only... (1 Reply)
Discussion started by: jondo
1 Replies

4. Solaris

How to clear STATE - uninitialized in solaris 10

Helloo Frd's, How to clear uninitialized state in solaris 10 Services, the fallowing inetadm shows on my server. I tried svcadm clear, enable... not worked. And also i can't change to enable some of service on that. sara4@root# inetadm ENABLED STATE FMRI disabled ... (6 Replies)
Discussion started by: madhu548
6 Replies

5. Shell Programming and Scripting

use of uninitialized value in subtraction

Hallo all i am trying to execute this script ............... But this is throwing the error...... use of uninitialized value in subtraction in at icd_convert.pl line 156 use of uninitialized value in subtraction in at icd_convert.pl line 157 use of uninitialized value in subtraction in at... (1 Reply)
Discussion started by: suvenduperl
1 Replies

6. Shell Programming and Scripting

"Use of uninitialized value" in perl

Hi Guys, I am trying to run a Perl code which reads the csv file and has to write certain fields to another file . I see the following when trying to execute the script Use of uninitialized value in string eq at ./file.pl line 19, <> line 13. Use of uninitialized value in concatenation (.)... (4 Replies)
Discussion started by: stunnerz_84
4 Replies

7. UNIX for Dummies Questions & Answers

Automatically login in the telnet from present telnet

Hi, I was writing one script which includes to switch to the another telnet automatically from the present telnet server. I was using rlogin but firstly it takes the same user name of the present telnet and secondly it is prompting for the password. But i want to switch to the another telnet... (2 Replies)
Discussion started by: Prateek
2 Replies

8. UNIX for Dummies Questions & Answers

Difference Between Krb5-telnet And Ekrb5-telnet

Hi, I want to know the difference between these two services. Both are under xinetd. Both are used for enabling and disabling Telnet service. So, can somebody please explain me the difference between the two ? Thanks in advance :) (0 Replies)
Discussion started by: kashifsd17
0 Replies

9. Shell Programming and Scripting

PERL - Use of uninitialized value in pattern match (m//)

I have written a PERL script to read files from directory that the filename contains OT. It then takes each line of each file and prints the first 5 characters before the first occurence of a /. Currently I am getting the error: Use of uninitialized value in string at rowGrab.pl line 43.... (3 Replies)
Discussion started by: chris01010
3 Replies

10. Solaris

Lot of services in non-global zones, in uninitialized after reboot

Hello, This is Solaris-10 server, running with 4 non-global zones. This server was hung today and I had to reboot it forcefully from console. Then root file-system was not clean and I had to run fsck from failsafe mode. After it came back in run-level-3, lot of services are showing in... (3 Replies)
Discussion started by: solaris_1977
3 Replies
All times are GMT -4. The time now is 07:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy