How to start X window?

hi,
here is a HP workstation C9000 with HP-UX system in my office. couple days ago we shutdown the system. when trying to turn the it on, the system failed to start X window.

my boss ask me fix it, but i am new of unix world.

please be kindly to teach me how to get error message and fix it.

thanks !!

If it couldn't create an X window, that may mean the X server is not running. Check if that service is running.

What's the error message you get when trying to start X windows? There are lock files which prevent starting another X server session. If you powered down the system without gracefully shutting it down, it could be possible that the lock files are still there and causing the issue. Let us know the error message and check logs for X windows to get an idea of what's happening.

thanks for response.

it just stop at console login ,and show no message. ususally X-window will auto start.

check Xerrors is empty.

How to make sure the X-server is running?

Okay, what happens when you execute "startx". If the X server is running or if it's due to lock files, you will see the error message. If the server is not running, it will start the services automatically. Also, check the run level. X and CDE start in run level 2 by default for HP-UX. To check the run level, execute this:

who -r

If you are in different run level, execute the below command to go to run level 2:

init 2

Let us know if this helps.

1 Like

thanks

use "who -r"
shows " run-level 3 Dec 11 10:47 3 0 S "
use "init 2" ok and chenge level to level 2

then ? shuld I reboot it?

after reboot the workstation. It still stop at console login

You do not need to reboot the machine. After executing "init 2", the machine automatically executes the run level scripts. One of them is the script responsible for bringing up X server and CDE.

---------- Post updated 12-28-11 at 12:32 AM ---------- Previous update was 12-27-11 at 11:26 PM ----------

I guess the X server still not working!! Did you check X server logs in /var/log/ directory?

Run level 2 should have brought up the X server.

1 Like

still can not start X window..............:confused:

How did you shutdown the station?
X will start in level 3...
Go in /sbin/init.d and look for the script that starts/stops X... or look in /sbin/rc3.d it should be there with a big S (for start...)

I can not find /log directory in /var.

used code " shutdown -h -now " to shutdown the station. when we power on it,the station failed to power on. we found that Graphic card was llittle bit loose from the slot. put graphic card okay, and the station can power on,but the X window can't start anymore.

I found S990dtlogin.rc in /sbin/rc3.d

---------- Post updated at 08:30 PM ---------- Previous update was at 08:14 PM ----------

more S990dtlogin.rc
 
 
#!/sbin/sh
# $XConsortium: dtlogin.rc.src /main/1 1996/07/24 11:40:29 drk $
#
# This version of the dtlogin.rc script can be used on the HP-UX
# operating system to initiate 1DE tasks such as starting the dtlogin
# process.
#
#  Common Desktop Environment
#
#  (c) Copyright 1996 Digital Equipment Corporation.
#  (c) Copyright 1993-1994,1996 Hewlett-Packard Company.
#  (c) Copyright 1993-1994,1996 International Business Machines Corp.
#  (c) Copyright 1993-1994,1996 Sun Microsystems, Inc.
#  (c) Copyright 1993-1994,1996 Novell, Inc.
#  (c) Copyright 1996 FUJITSU LIMITED.
#  (c) Copyright 1996 Hitachi.
#
# When placed in the /sbin/rc3.d directory and named appropriately, such as
# "S990dtlogin", this script will automatically start the dtlogin window
# after the HP-UX system boots to its multi-user level.
#
# This script is also called indirectly by the CDE dtconfig command.
PATH=/sbin:/usr/sbin:/usr/bin:/usr/dt/bin
export PATH
mode=$1
case "$mode" in
    'start_msg')
 echo "Start CDE login server"
 exit 0
 ;;
    'stop_msg')
 echo "Stop CDE login server"
 exit 0
 ;;
esac

usage_error() {
    echo "  $0 start             (start dtlogin process)"
    echo "  $0 stop              (stop dtlogin process)"
    echo "  $0 reset             (reset dtlogin process)"
    echo "  $0 update_printers   (update print actions)"
    echo " "
}
if [ ! -d /usr/bin ]; then  # /usr not mounted
    exit 1
fi
set `id`
if [ $1 != "uid=0(root)" ]; then
    echo "$0: must be run as root"
    exit 1
fi
# update_printers()
#
# Add print actions to workstation's database for all printers known
# to this workstation if action is not already present in the database.
update_printers() {
    if [ -x /usr/dt/bin/dtprintinfo ]; then
 /usr/dt/bin/dtprintinfo -populate
    fi
}
#
# Find login server pid from the process tree
#
login_server_pid() {
# In following grep for "dtlogin" processes, explictly exclude any matches
# on this shell file named "dtlogin.rc"

# 83
#
# Use the new XPG4 features of "ps" (also "-C cmdlist" ) to get the pids.
#
    UNIX95=1 ps -C dtlogin -o pid= -o ppid= |
    while read pid ppid; do
 if [ "$(ps -p $ppid | grep dtlogin)" = "" ]; then
     print "$pid"
     break
 fi
    done
}
case "$mode" in
    'start')
 if [ -f /etc/rc.config ]; then
     . /etc/rc.config
 else
     echo "ERROR: /etc/rc.config defaults file MISSING"
 fi
 if [ "CDE" != "${DESKTOP:-}" ]; then
     exit 2
 fi
 update_printers
 if [ -x /usr/dt/bin/dtrc ]; then
     trap "" 1
     /usr/dt/bin/dtrc &
 elif [ -x /usr/dt/bin/dtlogin ]; then
     /usr/dt/bin/dtlogin -daemon
 fi
 ;;
    'stop')
#       get dtlogin pid
 dtlogin_pid=`login_server_pid`
#       kill dtlogin process
        if [ "$dtlogin_pid" != "" ] ; then
             kill $dtlogin_pid
 fi
 ;;
    'reset')
#       get dtlogin pid
        dtlogin_pid=`login_server_pid`
#       reset dtlogin process
        if [ "$dtlogin_pid" != "" ] ; then
             kill -HUP $dtlogin_pid
        fi
 ;;
    'update_printers')
 update_printers
 ;;
    *)
 usage_error
 exit 1
 ;;
esac
exit 0

is this the scrip of start X????

Looks like you have to configure the X server settings. Maybe it's not detecting the video card. A log file would have shown us the way. Can you find xorg.conf file in /etc folder? Run the following command to find the file:

find /etc -type f -name "xorg.conf"
1 Like

I can't find "xorg.conf". But I find /etc/X11/XF86Config

 
"more XF86Config" shows following message 
 
Section "ServerLayout"
 #
 # The ServerLayout ID. A required line.
 #
 #
 # The first field on the Screen line specifies the screen number. It is
 # optional. The second field is the Screen ID. It must match an entry in
 # a Screen section. Only Screens specified here will be active. The
 # remaining fields specify relative or absolute positions of the screen
 # relative to other screens. Check the GAG for full details on 
 # specifying the Screen.
 #
 #
 # Each InputDevice line specifies an InputDevice section ID name and
 # optionally some options that specify the way the device is to be used.
 # Typically there is a pointer device (mouse) and a keyboard. They
 # usually are specified with a CorePointer and CoreKeyboard option
 # respectively. Additional pointers and keyboards are specified with
 # the SendCoreEvents option. The options may also be specified in the
 # InputDevice section. It is not necessary to specify an InputDevice.
 #
 #
 # Uncomment this to force OGL indirect contexts to be rendered in 
 # software.  Indirect rendering is done with the hardware driver by 
 # default.  However, some features such as rendering to a glXPixmap
 # may not be available in all hardware drivers.
 #
 #Option       "AccelerateIndirectRendering" "false" 
       # Uncomment the following line and update the time to turn on Xserver
       # screen blanking. The time is in minutes.
       #Option "blank time"   "10"
       # Uncomment the following lines to set the DPMS time periods. The
       # time is in minutes. The DPMS Monitor Option must be on for these 
       # to have an effect (see the "Monitor" section).
       #Option "standby time" "20"
       #Option "suspend time" "30"
       #Option "off time"     "40"
 Identifier     "Main Layout"
 Screen      0  "Screen 0" 0 0
 InputDevice    "Mouse0" "CorePointer"
 InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
    #
    # FontPaths. Specifies the font paths. You may want to
    # specify a different font path for the following reasons.
    # 1) An application delivers its own fonts.
    # 2) A font server is to be used instead of the default path.
    #
EndSection 
Section "Module"
EndSection 
Section "InputDevice"
 Identifier  "Keyboard0"
 Driver      "keyboard"
EndSection
Section "InputDevice"
 Identifier  "Mouse0"
 Driver      "mouse"
 Option     "Protocol" "PS/2"
 Option     "Device" "/dev/hid/mouse_000"
EndSection
Section "Monitor"
       # DPMS is not enabled by default. Uncomment the following line to 
       # enable it.
       #Option      "DPMS"  "on"
 Identifier   "Monitor 0"
 HorizSync    30.0 - 110.0
 VertRefresh  75.0
EndSection
Section "Device"
 Identifier  "Console"
 DeviceFile "/dev/gvid"
EndSection
Section "Screen"
 #
 # Set the default depth.
 #
 #
 # The subsection associates a buffer depth with a screen size.
 #
 Identifier "Screen 0"
 Device     "Console"
 Monitor    "Monitor 0"
 DefaultDepth     24
 SubSection "Display"
  Depth     24
  Modes    "1280x1024"
 EndSubSection
EndSection

is this the file you mention about?
and how can I get related log about this case??

You are right! I was looking for this file. Well it has successfully detected your monitor's resolution, mouse, etc. The logs files should be located in /var/adm directory. Which version of HP-UX are you using? Can you post the output of "uname -a"? Also, please check if there's an executable file called "dtconfig" in /usr/dt/bin directory. If it's there, you may execute the following command to enable the graphical login:

/usr/dt/bin/dtconfig -e

and then reboot the machine.

1 Like

thanks a lot! but after I follow your indication. X window still can not auto start.

"uname -a" shows

HP-UX thp44186 B.11.11 U 9000/785 2209309777 unlimited-user license
 
 
 
"more var/adm/syslog/syslog.log" shows following message
Dec 29 07:58:49 thp44186 syslogd: restart
Dec 29 07:58:49 thp44186 vmunix: gate64: sysvec_vaddr = 0xc0002000 for 2 pages
Dec 29 07:58:49 thp44186 vmunix: Unexpected interrupt on EIRR bit 32
Dec 29 07:58:49 thp44186 vmunix: NOTICE: autofs_link(): File system was registered at index 3.
Dec 29 07:58:49 thp44186 vmunix: NOTICE: cachefs_link(): File system was registered at index 5.
Dec 29 07:58:49 thp44186 vmunix: NOTICE: nfs3_link(): File system was registered at index 6.
Dec 29 07:58:49 thp44186 vmunix: drp drp_install:  loading driver
Dec 29 07:58:49 thp44186 vmunix: 0 sba
Dec 29 07:58:49 thp44186 vmunix: 0/0 lba
Dec 29 07:58:49 thp44186 vmunix: 0/2 lba
Dec 29 07:58:49 thp44186 vmunix: Initializing the Ultra320 SCSI Controller at 0/2/1/0. Controller firmware version is 01.03.35.65
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0 mpt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.5 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.5.0 sdisk
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.6 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.6.0 sdisk
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: Initializing the Ultra320 SCSI Controller at 0/2/1/1. Controller firmware version is 01.03.35.65
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/1 mpt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/1.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/1.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: Initializing the Ultra320 SCSI Controller at 0/2/3/0. Controller firmware version is 01.03.35.69
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/0 mpt
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/0.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/0.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: Initializing the Ultra320 SCSI Controller at 0/2/3/1. Controller firmware version is 01.03.35.69
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/1 mpt
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/1.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/1.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: 0/3 lba
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/0 hcd
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/0.1 hub
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/0.1.2 hid
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/1 hcd
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/1.1 hub
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/1.1.2 hid
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/2 ehci
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0 side_ba
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.0 side
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.0.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.0.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.1 side
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.1.0 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.1.0.0 sdisk
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.1.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.1.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: 0/3/3/0 iether
Dec 29 07:58:49 thp44186 vmunix: 0/4 lba
Dec 29 07:58:49 thp44186 vmunix: 0/4/0/0 gvid_core
Dec 29 07:58:49 thp44186 vmunix: 8 memory
Dec 29 07:58:49 thp44186 vmunix: 16 ipmi
Dec 29 07:58:49 thp44186 vmunix: 17 asio0
Dec 29 07:58:49 thp44186 vmunix: 18 asio0
Dec 29 07:58:49 thp44186 vmunix: 128 processor
Dec 29 07:58:49 thp44186 vmunix: 129 processor
Dec 29 07:58:49 thp44186 vmunix: 152 processor
Dec 29 07:58:49 thp44186 vmunix: 153 processor
Dec 29 07:58:49 thp44186 vmunix: iether0: INITIALIZING HP  PCI 1000Base-T Built-in at hardware path 0/3/3/0
Dec 29 07:58:49 thp44186 vmunix: 
Dec 29 07:58:49 thp44186 vmunix:     System Console is on the ITE
Dec 29 07:58:49 thp44186 vmunix: Logical volume 64, 0x3 configured as ROOT
Dec 29 07:58:49 thp44186 vmunix: Logical volume 64, 0x2 configured as SWAP
Dec 29 07:58:49 thp44186 vmunix: WARNING: Logical volume for Dump expected but not found.
Dec 29 07:58:49 thp44186 vmunix:     Swap device table:  (start & size given in 512-byte blocks)
Dec 29 07:58:49 thp44186 vmunix:         entry 0 - major is 64, minor is 0x2; start = 0, size = 4194304
Dec 29 07:58:49 thp44186 vmunix:     Dump device table:  (start & size given in 1-Kbyte blocks)
Dec 29 07:58:49 thp44186 vmunix:         entry 0000000000000000 - major is 31, minor is 0x5000; start = 314208, size = 2097152
Dec 29 07:58:49 thp44186 vmunix: Starting the STREAMS daemons-phase 1
Dec 29 07:58:49 thp44186 vmunix: Create STCP device files
Dec 29 07:58:49 thp44186 vmunix: Starting the STREAMS daemons-phase 2
Dec 29 07:58:49 thp44186 vmunix:                $Revision: vmunix:    vw: -proj    selectors: CUPI80_BL2000_1108 -c 'Vw for CUPI80_BL2000_1108 build' -- cupi80_bl2000_1108 'CUPI80_BL2000_1108'  Wed Nov  8 19:24:56 PST 2000 $
Dec 29 07:58:49 thp44186 vmunix: Memory Information:
Dec 29 07:58:49 thp44186 vmunix:     physical page size = 4096 bytes, logical page size = 4096 bytes
Dec 29 07:58:49 thp44186 vmunix:     Physical: 2095104 Kbytes, lockable: 1553776 Kbytes, available: 1791796 Kbytes
Dec 29 07:58:49 thp44186 vmunix: 
Dec 29 07:58:50 thp44186 nettl[807]: nettl starting up.
Dec 29 07:58:57 thp44186 rpcbind: check_netconfig: Found CLTS loopback transport
Dec 29 07:58:57 thp44186 rpcbind: check_netconfig: Found COTS loopback transport
Dec 29 07:58:57 thp44186 rpcbind: check_netconfig: Found COTS ORD loopback transport
Dec 29 07:58:57 thp44186 rpcbind: init_transport: check binding for udp
Dec 29 07:58:57 thp44186 rpcbind: init_transport: check binding for tcp
Dec 29 07:58:57 thp44186 rpcbind: init_transport: check binding for ticlts
Dec 29 07:58:57 thp44186 rpcbind: init_transport: check binding for ticotsord
Dec 29 07:58:57 thp44186 rpcbind: init_transport: check binding for ticots
Dec 29 07:58:59 thp44186 inetd[1134]: Reading configuration
Dec 29 07:58:59 thp44186 inetd[1134]: ftp/tcp: Added service, server /usr/lbin/ftpd
Dec 29 07:58:59 thp44186 inetd[1134]: telnet/tcp: Added service, server /usr/lbin/telnetd
Dec 29 07:58:59 thp44186 inetd[1134]: tftp/udp: Added service, server /usr/lbin/tftpd
Dec 29 07:58:59 thp44186 inetd[1134]: bootps/udp: Added service, server /usr/lbin/bootpd
Dec 29 07:58:59 thp44186 inetd[1134]: login/tcp: Added service, server /usr/lbin/rlogind
Dec 29 07:58:59 thp44186 inetd[1134]: shell/tcp: Added service, server /usr/lbin/remshd
Dec 29 07:58:59 thp44186 inetd[1134]: exec/tcp: Added service, server /usr/lbin/rexecd
Dec 29 07:58:59 thp44186 inetd[1134]: ntalk/udp: Added service, server /usr/lbin/ntalkd
Dec 29 07:58:59 thp44186 inetd[1134]: ident/tcp: Added service, server /usr/lbin/identd
Dec 29 07:58:59 thp44186 inetd[1134]: printer/tcp: Added service, server /usr/sbin/rlpdaemon
Dec 29 07:58:59 thp44186 inetd[1134]: daytime/tcp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: daytime/udp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: time/tcp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: echo/tcp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: echo/udp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: discard/tcp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: discard/udp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: chargen/tcp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: chargen/udp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: kshell/tcp: Added service, server /usr/lbin/remshd
Dec 29 07:58:59 thp44186 inetd[1134]: klogin/tcp: Added service, server /usr/lbin/rlogind
Dec 29 07:58:59 thp44186 inetd[1134]: dtspc/tcp: Added service, server /usr/dt/bin/dtspcd
Dec 29 07:58:59 thp44186 inetd[1134]: recserv/tcp: Added service, server /usr/lbin/recserv
Dec 29 07:58:59 thp44186 inetd[1134]: registrar/tcp: Added service, server /etc/opt/resmon/lbin/registrar
Dec 29 07:58:59 thp44186 inetd[1134]: swat/tcp: Added service, server /opt/samba/bin/swat
Dec 29 07:58:59 thp44186 inetd[1134]: instl_boots/udp: Added service, server /opt/ignite/lbin/instl_bootd
Dec 29 07:58:59 thp44186 inetd[1134]: rpc.cmsd/udp: Added service, server /usr/dt/bin/rpc.cmsd
Dec 29 07:58:59 thp44186 inetd[1134]: rpc.ttdbserver/tcp: Added service, server /usr/dt/bin/rpc.ttdbserver
Dec 29 07:58:59 thp44186 inetd[1134]: Thru with configuration 
Dec 29 07:58:59 thp44186 inetd[1134]: Configuration complete
Dec 29 07:59:14 thp44186 cimserver[1640]: Listening on HTTPS port 5989.
Dec 29 07:59:14 thp44186 cimserver[1640]: Listening on local connection socket.
Dec 29 07:59:14 thp44186 cimserver[1640]: Started HP-UX WBEM Services version A.02.00.05.
Dec 29 07:59:22 thp44186 vmunix: NOTICE: modld: Module already loaded
Dec 29 07:59:22 thp44186 pwgrd: Started at Thu Dec 29 07:59:22 2011, pid = 2228
Dec 29 07:59:22 thp44186 vmunix: 0/3/1/0.1.2 hid
Dec 29 07:59:26 thp44186 diagmond[2314]: started
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2762]: Setting STREAMS-HEAD high water value to 245760.
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: nfsd do_one mpctl succeeded: ncpus = 4.
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: nfsd do_one pmap 2
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: nfsd do_one pmap 3
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: Number of NFS server daemons increased to 32 in order to cover all processors.
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2772]: nfsd do_one bind 0
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2773]: nfsd do_one bind 1
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: nfsd do_one bind 3
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2774]: nfsd do_one bind 2
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2773]: Return from t_optmgmt(XTI_DISTRIBUTE) 0
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: Return from t_optmgmt(XTI_DISTRIBUTE) 0
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2774]: Return from t_optmgmt(XTI_DISTRIBUTE) 0
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2775]: nfsd 1 0  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2776]: nfsd 3 0  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2777]: nfsd 2 0  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2778]: nfsd 1 1  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2779]: nfsd 2 1  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2780]: nfsd 3 1  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2782]: nfsd 1 2  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2783]: nfsd 3 2  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2784]: nfsd 3 3  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2785]: nfsd 3 4  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2787]: nfsd 1 3  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2786]: nfsd 3 5  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2788]: nfsd 3 6  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2789]: nfsd 1 4  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2790]: nfsd 1 5  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2773]: nfsd 1 7  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2791]: nfsd 1 6  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: nfsd 3 7  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2792]: nfsd 2 2  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2793]: nfsd 2 3  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2795]: nfsd 2 5  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2774]: nfsd 2 7  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2796]: nfsd 2 6  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2794]: nfsd 2 4  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2772]: Return from t_optmgmt(XTI_DISTRIBUTE) 0
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2816]: nfsd 0 0  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2817]: nfsd 0 1  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2819]: nfsd 0 3  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2820]: nfsd 0 4  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2821]: nfsd 0 5  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2772]: nfsd 0 7  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2818]: nfsd 0 2  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2822]: nfsd 0 6  sock 4
Dec 28 17:59:43 thp44186 krsd[2911]: Delay time is 300 seconds
Dec 29 08:16:37 thp44186 ftpd[4440]: FTP LOGIN FROM 192.168.144.191 [192.168.144.191], cx96

is these log shows any clue about my case??
sorry, i really don't understand what these codes means.

/var/adm/syslog/syslog.log stores the messages which kernel throws during booting. It shows hardware and respective driver detection.

In this case, even I am also clue less as to why X is not coming up at all. HP-UX 9 used to store logs in /usr/adm directory. Not sure about HP-UX 11. I would rather suggest you to remove the X server installation and re-install it on the machine.

I find a file "rc.log" in /usr/adm

is this the log data you talk about??

Old /etc/rc.log moved to /etc/rc.log.old
**************************************************
HP-UX Start-up in progress
Thu Dec 29 09:56:41 2011
**************************************************
Configure system crash dumps
Output from "/sbin/rc1.d/S080crashconf start":
----------------------------
EXIT CODE: 0
VxVM device node check
Output from "/sbin/rc1.d/S091vxvm-nodes-check start":
----------------------------
VxVM general startup
Output from "/sbin/rc1.d/S092vxvm-startup start":
----------------------------
VxVM reconfiguration recovery
Output from "/sbin/rc1.d/S093vxvm-reconfig start":
----------------------------
Mount file systems
Output from "/sbin/rc1.d/S100localmount start":
----------------------------
checking quotas
Update kernel and loadable modules
Output from "/sbin/rc1.d/S110kmbuild start":
----------------------------
"/sbin/rc1.d/S110kmbuild start" SKIPPED
Initialize loadable modules
Output from "/sbin/rc1.d/S112kminit start":
----------------------------
       * All configured modules are registered successfully.
       * Module gvid_info is loaded successfully.
NOTE:    Module status
Name  ID Status  Type
=====================================================
krm             1       UNLOADED WSIO
gvid_info       2       LOADED  WSIO
drmfgl          3       UNLOADED Misc
drmfglrx        4       UNLOADED Misc
gvid_him_cons   5       UNLOADED Misc
Setting hostname
Output from "/sbin/rc1.d/S320hostname start":
----------------------------
Start Kernel Logging facility
Output from "/sbin/rc1.d/S350kl start":
----------------------------
"/sbin/rc1.d/S350kl start" SKIPPED
Set privilege group
Output from "/sbin/rc1.d/S400set_prvgrp start":
----------------------------
"/sbin/rc1.d/S400set_prvgrp start" SKIPPED
Display date
Output from "/sbin/rc1.d/S420set_date start":
----------------------------
"/sbin/rc1.d/S420set_date start" SKIPPED
Copy processor logs to /var/tombstones
Output from "/sbin/rc1.d/S430pdcinfo start":
----------------------------
Save system crash dump if needed
Output from "/sbin/rc1.d/S440savecrash start":
----------------------------
savecrash directory not set;  defaulting to: /var/adm/crash
EXIT CODE: 2 -  savecrash found no core dump to save
"/sbin/rc1.d/S440savecrash start" SKIPPED
Start evp
Output from "/sbin/rc1.d/S450evp.init start":
----------------------------
Enable auxiliary swap space
Output from "/sbin/rc1.d/S500swap_start start":
----------------------------
swap device(s) active
Start syncer daemon
Output from "/sbin/rc1.d/S520syncer start":
----------------------------
syncer started
Configure Loopback interfaces (lo0)
Output from "/sbin/rc2.d/S008net.init start":
----------------------------
Message catalog can't be opened/accessed for language ja_JP.SJIS.
Language C will used.
VxVM volume recovery start
Output from "/sbin/rc2.d/S096vxvm-recover start":
----------------------------
Configuring all unconfigured software filesets
Output from "/sbin/rc2.d/S120swconfig start":
----------------------------
       * Turning off all network based resolving services in
         '/etc/nsswitch.conf'
       * Removing the temporary '/etc/nsswitch.conf'.
Recover editor crash files
Output from "/sbin/rc2.d/S200clean_ex start":
----------------------------
preserving editor files (if any)
Clean UUCP
Output from "/sbin/rc2.d/S202clean_uucp start":
----------------------------
cleaning up uucp
List and/or clear temporary files
Output from "/sbin/rc2.d/S204clean_tmps start":
----------------------------
NOTE:  Files in /tmp:
total 85696
-rw-r--r--   1 root       root            30 Nov 15  2005 GEOLANG
-rw-r--r--   1 root       sys             69 Nov 15  2005 V2C-RUN_config.log
-rw-r--r--   1 root       sys            808 Nov 15  2005 X11_newfonts.log
-rw-rw-rw-   1 root       sys           4096 Nov 30  2005 a
-rw-rw-rw-   1 root       sys          30662 Nov 30  2005 b
-rw-r--r--   1 cx96       UNIX           107 Nov 23 06:41 cx96.errorlog
-rw-rw-r--   1 cx96       UNIX         41040 Aug 28  2009 cx96start
-rw-r--r--   1 root       root             0 Feb  1  2006 dhcpclient.log.old
prw-rw-rw-   1 root       root             0 Aug 22 15:27 dhcpfifo.any
prw-rw-rw-   1 root       root             0 Aug 22 15:27 dhcpfifo.root
drwxr-xr-x   4 root       sys             96 Nov 18  2005 drp.pkg
-rw-r--r--   1 root       sys            170 Nov 17  2005 dtappint.log
drwxrwxr-x   2 root       sys           8192 Nov 15  2005 howto
-rwxrwxrwx   1 root       sys        29198336 Nov 30  2005 hp11.img[1]
-rwxrwxrwx   1 root       sys        10289152 Nov 30  2005 hp11.img[1]-enware2
-r--r--r--   1 root       sys           1003 May 26  2007 install.vars
-rw-r--r--   1 root       sys              0 Nov 15  2005 kminstall-lock.
drwxr-xr-x   2 root       root            96 Nov 15  2005 lost+found
-rw-rw-rw-   1 cx96       UNIX           664 Apr  3  2009 m1
-rw-rw-rw-   1 cx96       UNIX         12048 Apr  3  2009 m2
-rw-rw-rw-   1 cx96       UNIX           495 Apr  3  2009 m3
-rw-r-----   1 root       sys         296960 Jun 13  2008 mptdriver.tar
-rw-r--r--   1 root       sys            332 Nov 18  2005 patch.log
srwxrwxrwx   1 root       root             0 Dec 29 07:59 portal
-rw-------   1 root       root           604 Dec 29 09:52 portmap.file
-rw-r--r--   1 root       sys             44 Nov 30  2005 prngd.log
-rw-r--r--   1 root       sys            107 Nov 24 11:15 root.errorlog
-rw-------   1 root       root          2196 Dec 29 09:52 rpcbind.file
-rw-r-----   1 root       sys         286720 May 26  2008 scsiU320-00_B.11.11.0803_HP-UX_B.11.11_64.depot
-rw-r--r--   1 root       sys             56 Nov 15  2005 sd_ipd_acl.1704
-rw-r--r--   1 root       root          2875 Dec 29 08:03 sensor_info
-r--r--r--   1 root       sys          11267 Nov 15  2005 services
-rw-r--r--   1 root       sys              0 Nov 15  2005 swlist
-rw-rw-rw-   1 root       sys         204800 Dec 13 10:10 syslog.tar
drwxrwxr-x   2 cx96       UNIX            96 Jul  6  2006 tool
-rw-r--r--   1 root       sys            166 Nov 15  2005 usb_ioscan2387.out
-rw-r--r--   1 root       sys            166 Nov 18  2005 usb_ioscan9566.out
-rw-r--r--   1 root       sys              0 Nov 15  2005 vxvm_swlist_output
-rw-r--r--   1 root       root       3314597 Dec 29 09:00 wd_action.dbg
NOTE:  Files in /var/tmp:
total 11216
-rw-r--r--   1 root       sys            255 Nov 30  2005 AAAa03698
-rw-r--r--   1 root       sys            572 Nov 30  2005 AAAa04671
drwxr-xr-x   3 root       sys             96 Nov 30  2005 CAAa03698
-rw-rw-r--   1 root       sys        5636811 Jun 20  2007 arch.include.1
-rw-rw-rw-   1 root       root         19364 Nov 15  2005 ems_index_file.data
drwxr-xr-x   2 root       sys             96 Nov 15  2005 hsperfdata_root
drwxrwxrwx   2 root       sys             96 Jun 20  2007 ign_configure
dr-xr-xr-x   2 bin        bin             96 Nov 15  2005 ntp
-r--r--r--   1 root       sys              0 Nov 18  2005 remove
drwxr-xr-x   4 root       root            96 Nov 18  2005 stm2380
drwxr-xr-x   4 root       root            96 Nov 29  2005 stm2418
-rw-r--r--   1 root       sys           5274 Jun 13  2008 swagent.log
-rw-rw-r--   1 root       sys            210 Jun 20  2007 tmp_cfg_file
-rw-rw-rw-   1 root       root           700 Nov 17  2005 triplet_index_file.data
-rw-rw-r--   1 root       sys            144 Jun 20  2007 vol.tmp
-rw-rw-rw-   1 root       root         24152 Nov 15  2005 xml_index_file.data
Clean up old log files
Output from "/sbin/rc2.d/S206clean_adm start":
----------------------------
Start system message logging daemon
Output from "/sbin/rc2.d/S220syslogd start":
----------------------------
System message logger started
Start pty allocator daemon
Output from "/sbin/rc2.d/S230ptydaemon start":
----------------------------
Starting the ptydaemon
Configuring OLA/R interface
Output from "/sbin/rc2.d/S290pci_olar start":
----------------------------
Creating OLA/R device node at major 5...
Note that this system must have OLA/R capable hardware
and firmware for these features to be enabled.
OLA/R capabilities not supported on this platform
"/sbin/rc2.d/S290pci_olar start" SKIPPED
Start network tracing and logging daemon
Output from "/sbin/rc2.d/S300nettl start":
----------------------------
Initializing Network Tracing and Logging...
Done. 
Configure HP igelan Gigabit Ethernet interfaces
Output from "/sbin/rc2.d/S305hpigelan start":
----------------------------
Configure HP iether Gigabit Ethernet interfaces
Output from "/sbin/rc2.d/S306hpiether start":
----------------------------
Configure HP Gigabit Ethernet interfaces
Output from "/sbin/rc2.d/S308hpgelan start":
----------------------------
Configure HP Ethernet interfaces
Output from "/sbin/rc2.d/S320hpether start":
----------------------------
Create PCI FDDI device files.
Output from "/sbin/rc2.d/S329hppcifddi start":
----------------------------
Configure HP 100BASE-T interfaces
Output from "/sbin/rc2.d/S333hpbtlan start":
----------------------------
No 100BASE-T device configured in system (btlan)
"/sbin/rc2.d/S333hpbtlan start" SKIPPED
Configure VLAN interfaces
Output from "/sbin/rc2.d/S337vlan start":
----------------------------
Configure LAN interfaces
Output from "/sbin/rc2.d/S340net start":
----------------------------
Start name server daemon
Output from "/sbin/rc2.d/S370named start":
----------------------------
"/sbin/rc2.d/S370named start" SKIPPED
Start NFS core subsystem
Output from "/sbin/rc2.d/S400nfs.core start":
----------------------------
    starting NFS CORE networking
    
    starting up the rpcbind
 /usr/sbin/rpcbind
    starting up the nfskd daemon
 /usr/sbin/nfskd
Start NIS+ server subsystem
Output from "/sbin/rc2.d/S406nisplus.server start":
----------------------------
NOTE: NISPLUS_SERVER is not set, exiting.
Start NIS+ client subsystem
Output from "/sbin/rc2.d/S408nisplus.client start":
----------------------------
NOTE: NISPLUS_CLIENT is not set, exiting.
Start NIS server subsystem
Output from "/sbin/rc2.d/S410nis.server start":
----------------------------
NOTE: NIS_MASTER_SERVER or NIS_SLAVE_SERVER is not set, exiting.
Start NIS client subsystem
Output from "/sbin/rc2.d/S420nis.client start":
----------------------------
NOTE: NIS_CLIENT is not set, exiting.
Start NFS client subsystem
Output from "/sbin/rc2.d/S430nfs.client start":
----------------------------
    starting NFS CLIENT networking
    
    starting up the rpcbind
 rpcbind already started, using pid: 977
    starting up the BIO daemons
 /usr/sbin/biod 16
    starting up the Status Monitor daemon
 /usr/sbin/rpc.statd 
    starting up the Lock Manager daemon
 /usr/sbin/rpc.lockd 
    starting up the AutoFS daemon
 /usr/lib/netsvc/fs/autofs/automountd  
  Running the AutoFS command interface
  /usr/sbin/automount  
    mounting remote NFS file systems ...
    mounting CacheFS file systems ...
Start the Trusted Mode with NIS+ subsystem
Output from "/sbin/rc2.d/S440comsec start":
----------------------------
    starting the Trusted Table Sync Daemon (ttsyncd)
 Not an NIS+ root or master server
"/sbin/rc2.d/S440comsec start" SKIPPED
Configure pseudo devices for MAC/LLA access
Output from "/sbin/rc2.d/S462maclan start":
----------------------------
Start multicast routing daemon
Output from "/sbin/rc2.d/S490mrouted start":
----------------------------
"/sbin/rc2.d/S490mrouted start" SKIPPED
Start Internet services daemon
Output from "/sbin/rc2.d/S500inetd start":
----------------------------
Internet Services started
Start dynamic routing daemon
Output from "/sbin/rc2.d/S510gated start":
----------------------------
"/sbin/rc2.d/S510gated start" SKIPPED
Start router discover protocol daemon
Output from "/sbin/rc2.d/S520rdpd start":
----------------------------
"/sbin/rc2.d/S520rdpd start" SKIPPED
Configuring PPP Interface
Output from "/sbin/rc2.d/S522ppp start":
----------------------------
Creating 16 tunnel device nodes at major 31...
Start RARP protocol daemon
Output from "/sbin/rc2.d/S525rarpd start":
----------------------------
"/sbin/rc2.d/S525rarpd start" SKIPPED
Start remote system status daemon
Output from "/sbin/rc2.d/S530rwhod start":
----------------------------
"/sbin/rc2.d/S530rwhod start" SKIPPED
Configuring man pages for Internet Services
Output from "/sbin/rc2.d/S535inetsvcs start":
----------------------------
Starting mail daemon
Output from "/sbin/rc2.d/S540sendmail start":
----------------------------
WARNING: local host name (thp44186) is not qualified; fix $j in config file
/etc/mail/aliases: 7 aliases, longest 9 bytes, 88 bytes total
sendmail
Starting outbound connection daemons for DDFA software
Output from "/sbin/rc2.d/S550ddfa start":
----------------------------
"/sbin/rc2.d/S550ddfa start" SKIPPED
Starting Digi RealPort daemons
Output from "/sbin/rc2.d/S555drp.daemon start":
----------------------------
Start SNMP Master Network Management daemon
Output from "/sbin/rc2.d/S560SnmpMaster start":
----------------------------
Start OSPF MIB Network Management subAgent
Output from "/sbin/rc2.d/S565OspfMib start":
----------------------------
"/sbin/rc2.d/S565OspfMib start" SKIPPED
Start SNMP HP-UNIX Network Management subAgent
Output from "/sbin/rc2.d/S565SnmpHpunix start":
----------------------------
Start SNMP MIB-2 Network Management subAgent
Output from "/sbin/rc2.d/S565SnmpMib2 start":
----------------------------
Start SNMP Trap Dest Network Management subAgent
Output from "/sbin/rc2.d/S565SnmpTrpDst start":
----------------------------
Start DCE daemons
Output from "/sbin/rc2.d/S570dce start":
----------------------------
Beginning DCE startup...
NOTE: No components of DCE are configured.
Finished DCE startup.
"/sbin/rc2.d/S570dce start" SKIPPED
Start SNMP PCI FDDI Network Management subAgent
Output from "/sbin/rc2.d/S576SnmpFddi4 start":
----------------------------
Start RPC daemon if needed
Output from "/sbin/rc2.d/S590Rpcd start":
----------------------------
    starting the DCE RPC Daemon
 /opt/dce/sbin/rpcd
Start CIM cimserver subsystem
Output from "/sbin/rc2.d/S600cimserver start":
----------------------------
CIM cimserver started
Start Isogon License Server Daemon
Output from "/sbin/rc2.d/S600iforls start":
----------------------------
"/sbin/rc2.d/S600iforls start" SKIPPED
Initialize capacity on demand
Output from "/sbin/rc2.d/S602icod start":
----------------------------
"/sbin/rc2.d/S602icod start" SKIPPED
Starting ISEE hpservices mad daemon.
Output from "/sbin/rc2.d/S605hpservices start":
----------------------------
NOTE:    hpservices not configured for startup
"/sbin/rc2.d/S605hpservices start" SKIPPED
Start remote boot daemon
Output from "/sbin/rc2.d/S610rbootd start":
----------------------------
Remote boot daemon started
Starting X Font Server at TCP port 7000
Output from "/sbin/rc2.d/S620xfs start":
----------------------------
"/sbin/rc2.d/S620xfs start" SKIPPED
Start vt daemon
Output from "/sbin/rc2.d/S630vt start":
----------------------------
"/sbin/rc2.d/S630vt start" SKIPPED
Starting kks daemon
Output from "/sbin/rc2.d/S640kks start":
----------------------------
Starting HP EGConvert daemon
Output from "/sbin/rc2.d/S642egcd start":
----------------------------
Starting VJE-r daemon
Output from "/sbin/rc2.d/S644vjed start":
----------------------------
Starting UDC server
Output from "/sbin/rc2.d/S648eus start":
----------------------------
vjed(Version 2.0) on XWINDOWS(XIMP)
Copyright (C) 1992 by VACS Corporation.
OS TYPE: unix, DATE: Feb/10/1993
"/sbin/rc2.d/S648eus start" SKIPPED
Start time synchronization
Output from "/sbin/rc2.d/S660xntpd start":
----------------------------
"/sbin/rc2.d/S660xntpd start" SKIPPED
Start accounting
Output from "/sbin/rc2.d/S700acct start":
----------------------------
"/sbin/rc2.d/S700acct start" SKIPPED
Install/Load XF86 DLKM Helper Modules
Output from "/sbin/rc2.d/S700xf86 start":
----------------------------
Starting the password/group assist subsystem
Output from "/sbin/rc2.d/S705pwgr start":
----------------------------
pwgrd started
Starting HP Disk Array Manager daemons.
Output from "/sbin/rc2.d/S710hparamgr start":
----------------------------
Starting disk array monitor daemons.
Output from "/sbin/rc2.d/S710hparray start":
----------------------------
Start print spooler
Output from "/sbin/rc2.d/S720lp start":
----------------------------
??
line printer scheduler started
Starting HP Distributed Print Service
Output from "/sbin/rc2.d/S722pd start":
----------------------------
Start clock daemon
Output from "/sbin/rc2.d/S730cron start":
----------------------------
cron started
Start diagnostic subsystem
Output from "/sbin/rc2.d/S742diagnostic start":
----------------------------
Start auditing subsystem
Output from "/sbin/rc2.d/S760auditing start":
----------------------------
"/sbin/rc2.d/S760auditing start" SKIPPED
Start audio server daemon
Output from "/sbin/rc2.d/S770audio start":
----------------------------
"/sbin/rc2.d/S770audio start" SKIPPED
Start Distributed Single Logical Screen daemon
Output from "/sbin/rc2.d/S780slsd start":
----------------------------
"/sbin/rc2.d/S780slsd start" SKIPPED
Start USB hub daemon
Output from "/sbin/rc2.d/S785hub start":
----------------------------
SAM System administration configuration
Output from "/sbin/rc2.d/S800spa start":
----------------------------
Starting ObAM Application Server
Output from "/sbin/rc2.d/S860webadmin start":
----------------------------
"/sbin/rc2.d/S860webadmin start" SKIPPED
Initialize Software Distributor agent daemon
Output from "/sbin/rc2.d/S870swagentd start":
----------------------------
Starting servicecontrol manager daemons
Output from "/sbin/rc2.d/S890ServCtlMgr start":
----------------------------
Starting CIFS Client
Output from "/sbin/rc2.d/S900cifsclient start":
----------------------------
"/sbin/rc2.d/S900cifsclient start" SKIPPED
Configure HP RAID SA interfaces
Output from "/sbin/rc2.d/S900ciss start":
----------------------------
No RAID SA Adapters installed.
"/sbin/rc2.d/S900ciss start" SKIPPED
Copy processor logs to /var/tombstones
Output from "/sbin/rc2.d/S900cpumap2 start":
----------------------------
'/sbin/init.d/cpumap2 background' started in the background, pid=2452
Starting Event Monitoring Service
Output from "/sbin/rc2.d/S900ems start":
----------------------------
Starting the EMS Persistence Client
Start EMS SNMP subagent
Output from "/sbin/rc2.d/S900emsa start":
----------------------------
Configure HP Fibre Channel Mass Storage interfaces
Output from "/sbin/rc2.d/S900hpfcms start":
----------------------------
Configure HP Internal RAID interfaces
Output from "/sbin/rc2.d/S900i2o_raid start":
----------------------------
No Internal RAID Adapters installed.
"/sbin/rc2.d/S900i2o_raid start" SKIPPED
Configuring Ultra320 SCSI Mass Storage interfaces
Output from "/sbin/rc2.d/S900mpt start":
----------------------------
Starting SAMBA Server
Output from "/sbin/rc2.d/S900samba start":
----------------------------
"/sbin/rc2.d/S900samba start" SKIPPED
Starting the RST EMS listener
Output from "/sbin/rc2.d/S910rstEMSlistener start":
----------------------------
"/sbin/rc2.d/S910rstEMSlistener start" SKIPPED
Running /etc/conf/digi/drp-boot.sh
Output from "/sbin/rc2.d/S940drp.ditty start":
----------------------------
"/sbin/rc2.d/S940drp.ditty start" SKIPPED
Configure HP Fibre Channel Tachyon TL/TS Mass Storage interf
Output from "/sbin/rc2.d/S989fc_td start":
----------------------------
Configuring HP Fibre Channel FCD Mass Storage interfaces
Output from "/sbin/rc2.d/S990fc_fcd start":
----------------------------
VVR - Starting Communication Daemon
Output from "/sbin/rc2.d/S994vxnm-vxnetd start":
----------------------------
No VVR license installed on the system - vxnetd not started
"/sbin/rc2.d/S994vxnm-vxnetd start" SKIPPED
VVR - Starting VRAS daemon
Output from "/sbin/rc2.d/S996vradmind start":
----------------------------
  No VVR license installed on the system; vradmind not started.
"/sbin/rc2.d/S996vradmind start" SKIPPED
VVR - Starting VxRSync daemon
Output from "/sbin/rc2.d/S996vxrsyncd start":
----------------------------
  No VVR license installed on the system; in.vxrsyncd not started.
"/sbin/rc2.d/S996vxrsyncd start" SKIPPED
Starting VERITAS Enterprise Administrator Service (vxsvc)
Output from "/sbin/rc2.d/S999isisd start":
----------------------------
Start NFS server subsystem
Output from "/sbin/rc3.d/S100nfs.server start":
----------------------------
    starting NFS SERVER networking
    
    starting up the rpcbind daemon
 rpcbind already started, using pid: 977
    starting up the mount daemon
 /usr/sbin/rpc.mountd 
    starting up the NFS daemons
 /usr/sbin/nfsd 30
    starting up the Status Monitor daemon
 rpc.statd already started, using pid: 1054
    starting up the Lock Manager daemon
 rpc.lockd already started, using pid: 1060
Start X print server(s)
Output from "/sbin/rc3.d/S200tps.rc start":
----------------------------
"/sbin/rc3.d/S200tps.rc start" SKIPPED
Starting HP-UX Apache-based Web Server
Output from "/sbin/rc3.d/S823hpws_apache start":
----------------------------
"/sbin/rc3.d/S823hpws_apache start" SKIPPED
Starting HP-UX Tomcat-based Servlet Engine
Output from "/sbin/rc3.d/S823hpws_tomcat start":
----------------------------
"/sbin/rc3.d/S823hpws_tomcat start" SKIPPED
Starting HP-UX Webmin-based Admin
Output from "/sbin/rc3.d/S823hpws_webmin start":
----------------------------
"/sbin/rc3.d/S823hpws_webmin start" SKIPPED
Starting the HPUX Webproxy subsystem
Output from "/sbin/rc3.d/S823hpws_webproxy start":
----------------------------
"/sbin/rc3.d/S823hpws_webproxy start" SKIPPED
Starting HP-UX XML Web Server Tools
Output from "/sbin/rc3.d/S823hpws_xmltools start":
----------------------------
Start CDE login server
Output from "/sbin/rc3.d/S990dtlogin.rc start":
----------------------------
Starting PRNGD (Pseudo Random Number Generator Daemon)
Output from "/sbin/rc3.d/S99prngd.rc start":
----------------------------
"/sbin/rc3.d/S99prngd.rc start" SKIPPED
**************************************************
HP-UX run-level transition completed
Thu Dec 29 09:57:41 2011
**************************************************

You seem to have something wrong with your network profile...
Most of started in level 2 in relation with network are skipped, are they unconfigured?
Until you solved that issue I dont see how you will get X working...
I have seen cases where there were IP mismatch between DNS and /etc/hosts bring servers into severe issues... you are not in such case...

What do you have in /var/adm/syslog/syslog.log? and in OLDsyslog.log?

rc.log shows the output produced during starting of serviced configured for the run level. If it's a graphics driver problem, that will not show up in rc.log. Rather, it would show up in syslog.log file produced by kernel.

Can you post the content of syslog.log? Well, I don't know what kind of work you do on the workstation. But, if it's not something related to graphics, you can do a whole bunch of stuffs using console (way more than what you can do with CDE). Who needs all those fancy windows when you have a working shell!! :wink:

One way to know what is going on is to try to connect remotely using XDMCP, if it works, then Xserver is started... and so its a configuration issue...

finally! the X-window is work!!!

a collegue of my company help me to figure out the promblem.

tail /etc/dt/config/Xservers
#108
# * Local local@console /usr/bin/X11 :0
should be

  • Local local@console /usr/bin/X11 :0
    "#" have to remove if the computer have graphic card

the system is back to work now
thank you guys been so kind to help me before!