Sponsored Content
Operating Systems HP-UX Unable to connect to HP-UX 11.11 via eXceed 7.1 Post 302076913 by smokie on Friday 16th of June 2006 02:36:37 PM
Old 06-16-2006
Data Unable to connect to HP-UX 11.11 via eXceed 7.1

Hello HP-UX Gurus,

I am having issues trying to start an x-session via eXceed 7.1.
When I bring up eXceed via XDMCP Braodcast I see the host name and IP Address but when I try to connect the X window does not come up.

I made the modification to the following file “/etc/dt/config/Xaccess” and it looks as follows.

--------------
# grant service to all remote displays


CHOOSER BROADCAST # any indirect host can get a chooser
--------------


I ran the following command and dtlogin is running.

--------------
# ps -ef |grep dtlogin
root 1210 1188 0 12:14:39 ? 0:00 /usr/dt/bin/dtlogin
--------------

I also noticed that the following file "/etc/dt/config/Xconfig" has the following uncommented out as well.

--------------
Dtlogin*grabServer: False
--------------

Are their any other files I need to modify?
Smilie


Thanks in advance,
Denis
deniskaran@gmail.com
 

10 More Discussions You Might Find Interesting

1. Solaris

Unable to connect to Internet

Hi friends recently i have installed SXDE 1/08 into my machine,and i installed wifi driver also its working fine,Recently i was unable to connect to Internet,I have not changed any configurations and any installations,thing is that i got my iwk0 interface is UP and IP address also and i can... (6 Replies)
Discussion started by: srinivas2828
6 Replies

2. Solaris

Unable to connect to RSC on v240!!!

Hi Gurus, One of our test servers is unable to come up. Its v240, I am unable to connect to RSC also. when I am trying to ping the IP assign to RSC its coming “no answer from <IP>. What all can be done to get connect to server RSC?? (2 Replies)
Discussion started by: kumarmani
2 Replies

3. Emergency UNIX and Linux Support

Unable to connect using SFTP

I shall explain the situation that I am facing to the best extent possible. I require some help, as this situation is an urgent one. I am trying to automate sending data from one AIX machine to another. A script runs that tries to push data received from an upstream application to another AIX... (7 Replies)
Discussion started by: ggayathri
7 Replies

4. HP-UX

Unable to connect SSH from HP-UX

Hi, I'm trying to connect from an HP-UX with SSH2 client(ssh2 3.1.2 on hppa1.1-hp-hpux11.00) to an SSH2 server on a VxWorks system. The SSH connection is failing with the below connection logs: > /usr/local/bin/ssh2 -v -l testuser 10.10.10.10 debug: Ssh2/ssh2.c:1391: Using file... (4 Replies)
Discussion started by: ysafi
4 Replies

5. UNIX for Advanced & Expert Users

Unable to connect to sqlplus from unix

Hi, I have been trying to connect to sqlplus the same way I used to do in my earlier company but I get these error messages , please suggest way out - user name - xyzuser schema name - xyzschema $ sqlplus xyzuser@xyzschema ksh: sqlplus: not found. $ sqlplus -s xyzuser@xyzschema... (5 Replies)
Discussion started by: dhirajdsharma
5 Replies

6. IP Networking

Unable to connect to localhost in Debian 6?

Hello Everyone, I have unable to run the default server with localhost in my Debian machine. While trying to run Django I get: Error: That IP address can't be assigned-to. error While trying to run galaxy-dist I get this error: socket.error: Cannot assign requested address I can't telnet... (3 Replies)
Discussion started by: sachit adhikari
3 Replies

7. Red Hat

Unable to connect Wireless

I have managed to install Broadcom BCM43228 Wireless adapter on a laptop running CentOS 5.9 using instructions at: wiki.centos.org/HowTos/Laptops/Wireless/Broadcom I had the problem "Error for wireless request "Set Encode" (8B2A): SET failed on device... mentioned on the same page and solved... (0 Replies)
Discussion started by: cooltoad
0 Replies

8. Red Hat

Unable to connect to internet

Hello, I just installed CentOS 7 (Server with GUI) and guess what I could install Virtual Box Guest additions without installing any extra package/software which is great news ! Now bad news or not so great news. My Host OS is Windows 10, Virtual Box is the virtualization software. CentOS7-1... (0 Replies)
Discussion started by: bluemind2005
0 Replies

9. Solaris

Unable to connect using ftp

hi I am having issues when trying to connect using ftp, I am having the following error: User (10.100.48.73:(none)): moz 331 Password required for moza. Password: 530 Login incorrect. Login failed. ftp> by 221 Goodbye. I have created a user like this: useradd -g 10 -d /lam/moza -m -s... (11 Replies)
Discussion started by: fretagi
11 Replies

10. AIX

Unable to connect ASMI

After following the instructions given by resident moderator Bakunin over here https://www.unix.com/aix/279862-installed-memory-32gb-but-shows-only-16gb.html #1 Connect to ASMI #2 Configure the deconfigured memory #3 Start the machine OK, everything is fine, however now cannot connect to... (5 Replies)
Discussion started by: filosophizer
5 Replies
mms_init(3MMS)					     Media Management System Library Functions					    mms_init(3MMS)

NAME
mms_init, mms_ainit, mms_goodbye, mms_agoodbye, mms_hello - manage sessions between the client application and MMS SYNOPSIS
cc [ flag...] file... -lmms [ library...] #include <mms_api.h> int mms_init(void *session, int *version); int mms_ainit(void *session, int *version, void (*callbk)(void *arg)); int mms_hello(void *session, char *host, char *app, char *ai, char *tag, char *pass); int mms_goodbye(void *session, int force); int mms_agoodbye(void *session, int force); DESCRIPTION
The mms_init() function creates and initializes the data structure used by a client to communicate with the Media Management System (MMS) synchronously. The mms_ainit() function creates and initializes the data structure used by a client to communicate with MMS asynchronously. On successful completion, session contains the pointer to the data structure and version contains the MMS API library version. If non-null, the callbk argument specifies which client routine to invoke if the asynchronous session shuts down. In the following functions, session is a session pointer returned by either mms_init() or mms_ainit(). The format of the client's logging routine is the following: void logfunctionname(char *, char *) The first argument is the prefix and the second is the API error message of the error encountered. The mms_hello() function establishes the session connection between the client and MMS. The client specifies the host where MM is running (host), application name (app), application instance (ai), application tag (tag), and application password (pass) to use to connect with MMS. These values must be present in MMS for the connection to be allowed. The mms_goodbye() function shuts down a synchronous session between the client and MMS. The mms_agoodbye() function shuts down an asynchronous session between the client and MMS. If force is set, no goodbye is sent to MM. RETURN VALUES
Upon successful completion, MMS_API_OK is returned. If a function has a processing error, it returns an error code indicating the type of error. ERRORS
These functions will fail if: MMS_API_ERR Unrecoverable internal processing error occurred. MMS_API_NOT_ERR_RSP Response is not an error response. MMS_API_SHUTDOWN Client has shut down API. MMS_ASYNC_API_FAILURE Reader thread unable to obtain reader mutex. MMS_CFG_FILE_ERR Unable to open watcher daemon's network configuration file. MMS_DUPLICATE_REG Event is already registered. MMS_E_CONNECT_ERR Failed to connect to MMS. MMS_E_INVALID_RESPONSE Invalid MMS response to command. MMS_E_NET_IO_ERR Connection failure to MMS. MMS_E_SYNTAX_ERR MMS response contained a syntax error. MMS_ERR_BIAS Unknown Error code. MMS_EV_REG_FAILED MMS did not accept event registration. MMS_EV_UNREG_FAILED MMS did not accept event unregistration. MMS_INVALID_RSP Unknown response type received. MMS_MALLOC_ERROR Unable to allocate required space. MMS_MISSING_TASKID Unable to find task ID in response. MMS_SELECT_ERROR Select system call failed. MMS_TRACE_FAILURE Unable to open API's trace file. MMS_WRONG_API_MODE API session does not support this API command. MMS_WRONG_TASKID Wrong task ID found for accept response. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Uncommitted | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
libmms(3LIB), mms_rsp_type(3MMS), mms_send_cmd(3MMS), attributes(5) SunOS 5.11 28 Oct 2008 mms_init(3MMS)
All times are GMT -4. The time now is 06:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy