Re: CA Key and Self-Signed Server Certificate Generation

2005-01-12 Thread Ringaby Anders
At the prompt, I did the following command: # sh sign.sh server.csr : command not foundline: 6: 'usr/sbin/sign.sh: sign.sh: line 15: syntax error near unexpected token `in 'usr/sbin/sign.sh: sign.sh: line 15: `case $CSR in Now, what I don't understand is that I used the syntax as

Re: CA Key and Self-Signed Server Certificate Generation

2005-01-11 Thread Ringaby Anders
Hello again, Servie. Since sign.sh is a script, have you checked that the interpreter at line number 1 (should be #!/bin/sh in this case) is correct? Maybe the path is different in your system, or another interpreter is required like ksh or bash (that would be #!/bin/ksh or #!/bin/bash on line

Re: Error 127 - gcc: Command not found

2004-12-10 Thread Ringaby Anders
Hello Anders, Hi, Servie. I am just puzzled if doing rpm -Uvh *.rpm is not allowed at all by FC3? AFAIK, with Red Hat distros 7.3, 8.0 or 9.0 I could install all the rpm all together. Not very sure, if this is a new security feature by FC3? Not very sure myself. I have'nt tried FC.

Re: Error 127 - gcc: Command not found

2004-12-06 Thread Ringaby Anders
Hello Servie. Have you checked that the directory, where gcc is located, is in your PATH environment variable? You can check by doing either of this: echo $PATH or: type gcc In order to add the directory where gcc is located, before running make, do this:

Re: how to get client IP on Server

2004-06-18 Thread Ringaby Anders
There is also the possibility to use the getpeername() function on a connected socket. Here are some pieces of code: struct sockaddr_in addr; int address_size; address_size = sizeof(addr); if(getpeername(sd, addr, address_size) != -1) {

Encryption and weblogic module

2004-04-16 Thread Ringaby Anders
Hello everyone. I am quite new to ssl, so I have a question. While a connection between a pc client and a web server is encrypted, I do not know if the connection that may result thereafter is encrypted too, that is, if ssl.conf contain an entry that look like this: Location /xx/xxx/*yyy*