You can test the firewall and PC X assuming :0.0 by going to the UNIX host and trying:
Now, if it cannot connect, you can go to the PC and try the same thing. If it works, it is firewall somewhere, and if not, the PC X service is not working. Also, try an Xterm or other X app on the PC to make sure X does more than connect there.
I have the following shell script to map a drive to a windows machine:
echo Enter password:
stty -echo
read passwd
stty echo
mount -t smbfs -ousername=myusername,password=$passwd //192.168.2.5/sharename /mnt/mountname
It works fine and the share mounts, but for some reason I get this... (4 Replies)
Hi everyone
first of all you should know that I've been working with solaris for a few days only. :)
I need to install some programs and I have had the following troubles:
1. When I used /.configure it showed the following message:
"no acceptable C compiler found in $PATH"
I included... (2 Replies)
Dear brothers.
i tried so many times to install openssl-0.9.8g in x86 machine. i have done ./config without any error notification. when i execute the make command i am having the same error
fatal error: Command failed for target `build_crypto'.
i installed c compiler the verson of... (1 Reply)
Hi ppl, anyone has encounter this error before? I can't remote login to another machine residing in the same subnet via CDE and the error I get in var/dt/Xerrors is
XDMCP fatal error: Session declined No valid address
Warning:
Name: submenu_options_button
Class: XmRowColumn
... (2 Replies)
Hi,
on a Linux RED HAT I issue the following to mount a shared filesystem on a Win server 2003 and it fails :
# smbmount //172.16.0.42/eb_depot /mnt/eb_depot -o username=domaine/Administrateur rw
Password:
30494: session setup failed: ERRDOS - ERRnoaccess (Access denied.)
SMB connection... (0 Replies)
Hi,
we have re installes our Windows domain and Activedirectory, and from then until now we can not mount shared windows filesystems on Linux server and we receive :
mount -t smbfs -o username=user1,password=xxxxx //xxx.16.0.xxx/dir
/mnt/dir
3550: session setup failed: ERRDOS - ERRnoaccess... (0 Replies)
Hi Friends
I have a compiler(Sun Forte,I believe) running in my Solaris 9 box.
since y'day my development team is finding this error when they compile:
ld.so.1: expr: fatal: libgmp.so.3: open failed: No such file or directory
I ran a search for this file and found it in one of my file... (2 Replies)
I am trying to install Expect 5.43 on my Solaris 10 x86 PC. When I run the make file I get - Command failed for target 'exp_inter.o'. I tried to find the file (find / -name exp_inter.o -print 2>/dev/null) but could not. Where can I get this file from? (2 Replies)
Hello all, I just post here to expose an issue I have encountered two days ago and finally successfully solve just right now using info on this site( but not only).
Config : Two SUN/ORACLE sparc Solaris 10 system.
Purpose : do a remote CDE login from host one to the host two.
method: from... (0 Replies)
Today, I noticed some errors in our SSL cert renewal log files, mostly related to domains where the IP address had changed. Concerned about this, rebuilt out SSL cert, which normally goes well without a hiccup.
However, for today, for some reason which I cannot explain, there was a PHP error... (0 Replies)
Discussion started by: Neo
0 Replies
LEARN ABOUT FREEBSD
ssl_set_session
SSL_set_session(3SSL) OpenSSL SSL_set_session(3SSL)NAME
SSL_set_session - set a TLS/SSL session to be used during TLS/SSL connect
SYNOPSIS
#include <openssl/ssl.h>
int SSL_set_session(SSL *ssl, SSL_SESSION *session);
DESCRIPTION
SSL_set_session() sets session to be used when the TLS/SSL connection is to be established. SSL_set_session() is only useful for TLS/SSL
clients. When the session is set, the reference count of session is incremented by 1. If the session is not reused, the reference count is
decremented again during SSL_connect(). Whether the session was reused can be queried with the SSL_session_reused(3) call.
If there is already a session set inside ssl (because it was set with SSL_set_session() before or because the same ssl was already used for
a connection), SSL_SESSION_free() will be called for that session.
NOTES
SSL_SESSION objects keep internal link information about the session cache list, when being inserted into one SSL_CTX object's session
cache. One SSL_SESSION object, regardless of its reference count, must therefore only be used with one SSL_CTX object (and the SSL objects
created from this SSL_CTX object).
RETURN VALUES
The following return values can occur:
0 The operation failed; check the error stack to find out the reason.
1 The operation succeeded.
SEE ALSO ssl(3), SSL_SESSION_free(3), SSL_get_session(3), SSL_session_reused(3), SSL_CTX_set_session_cache_mode(3)1.0.1e 2013-02-11 SSL_set_session(3SSL)