RE: Orion on unix systems

2001-01-16 Thread Jason Boehle
Looks like HP has a SDK/JRE: http://www.unix.hp.com/java/java2/sdkrte/index.html -Jason -Original Message- From: Juan Lorandi (Chile) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 12:23 PM To: Orion-Interest Subject: RE: Orion on unix systems If you have a JVM for HPUX

Re: Orion on unix systems

2001-01-16 Thread Ernst de Haan
Hi Derek, Sure it can. Check out the FAQ on orionserver.com. I'm running Orion on FreeBSD myself. BTW: You should make your question more specific. What HPUX version (10, 11, etc) are you referring to, and what JRE/JDK did you have in mind (if any)? -- Ernst Derek Akers wrote: > Question: ca

RE: Orion on unix systems

2001-01-16 Thread Juan Lorandi (Chile)
If you have a JVM for HPUX, yes... The only JVM that *may* run in HPUX that I know of is Kaffe (http://www.kaffe.org) HTH JP -Original Message- From: Derek Akers [mailto:[EMAIL PROTECTED]] Sent: Martes, 16 de Enero de 2001 12:25 To: Orion-Interest Subject: Orion on unix systems

Orion on unix systems

2001-01-16 Thread Derek Akers
Question: can orion run on HPUX?

RE: Orion on Unix (again)

2001-01-11 Thread Heng Chee, Lee - SG
ing it automatically, isn't it? Thanks and best regards -Original Message- From: Lorin Kobashigawa-Bates [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 11, 2001 2:24 AM To: Orion-Interest Cc: Orion-Interest Subject: Re: Orion on Unix (again) Yes we had this problem also. I

Re: Orion on Unix (again)

2001-01-10 Thread Lorin Kobashigawa-Bates
Yes we had this problem also. I wasn't able to figure out why in the short time frame we had, < 1hr and it doesn't happen on our solaris boxes only the development box our client had set up. So my assumption is it's some kind of paranoid security setting on Solaris. We got around it by not exit

Re: Orion on Unix (again)

2001-01-10 Thread Ronald Hatcher
; >To: Orion-Interest <[EMAIL PROTECTED]> >Subject: Orion on Unix (again) >Date: Wed, 10 Jan 2001 11:55:32 +0800 >MIME-Version: 1.0 >Content-Transfer-Encoding: 7bit > >Hi, >First all, thanks for answering my previous question about running orion as >non-root user. I have a

Re: Orion on Unix (again)

2001-01-10 Thread Sach Jobb
First of all, don't ever use telnet for anything. It's a clear text protocol and anyone snooping the line can easily snag your username and password. The suitable replacement for telnet (actually all rsh services) is SSH (secure shell) which uses encrypted sessions, and is thus difficult to monito

Orion on Unix (again)

2001-01-09 Thread Heng Chee, Lee - SG
Hi, First all, thanks for answering my previous question about running orion as non-root user. I have another question which I couldn't find any info in the orionsupport site. I would like to be able to telnet from a remote machine to my Sun box and start the orion remotely, so far so good, but o

Re: orion on unix

2001-01-08 Thread Philipp Meier
On Sun, Jan 07, 2001 at 07:43:42PM -0500, Scott M. Stirling wrote: > Throwing Apache in the front end is bound to decrease performance, > versus using Orion's HTTP server. It's certainly the easiest (and a > good portable one -- better than ipchains) solution, but I didn't > mention because it d

RE: orion on unix

2001-01-08 Thread Kemp Randy-W18971
This answer is essentially correct. Unix or Solaris uses ports up to 1024 as privileged and you need to have root access. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 07, 2001 9:31 AM To: Orion-Interest Subject: Re: orion on unix There

RE: orion on unix

2001-01-08 Thread Heng Chee, Lee - SG
on unix Are you trying to start orion on port 80? In UNIX-based systems ports 1-1024 are called "privilaged ports" and can only be bound to as user root. Try changing the port to 8080 or something else above 1024 in ~/config/default-web-site.xml. Now you are going to tell me that it

Re: orion on unix

2001-01-08 Thread Johan Fredriksson
Easy workaround: Start orion as root. Use ormi to restart it. (basically java -jar admincontrol.jar ipaddr I think) - Original Message - From: "Heng Chee, Lee - SG" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Sunday, January 07

RE: orion on unix

2001-01-07 Thread Mike Cannon-Brookes
Scott, There is some JNI code to do this on OrionSupport - should be up soon. Mike > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Scott M. > Stirling > Sent: Monday, January 08, 2001 11:44 AM > To: Orion-Interest > Subje

RE: orion on unix

2001-01-07 Thread M.
I was going to suggest something similar, which is to start up Orion as root and then have the process change UID to a non-root user, just like Apache. But starting the process as root is precisely the thing the user was trying to avoid. Throwing Apache in the front end is bound to decrease perf

Re: orion on unix

2001-01-07 Thread M.
On 07 Jan 2001 21:23:02 +0100, Nils Frohberg wrote: > Yes, but sudo will still run orion with UID 0. This will not improve security. Then >you might as well make a group called 'orion', and put all the users that need access >to orion into this group. Change the dir/file perms so that it is read

RE: orion on unix

2001-01-07 Thread Tony Wilson
running as their own user. Apache allows for this. Tony Wilson -Original Message- From: Heng Chee, Lee - SG [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 07, 2001 12:54 AM To: Orion-Interest Subj

Re: orion on unix

2001-01-07 Thread Sach Jobb
Are you trying to start orion on port 80? In UNIX-based systems ports 1-1024 are called "privilaged ports" and can only be bound to as user root. Try changing the port to 8080 or something else above 1024 in ~/config/default-web-site.xml. Now you are going to tell me that it has to be bound to p

RE: orion on unix

2001-01-07 Thread Frank Eggink
ng like ssh -L80:nnn.nnn.nnn.nnn:8080 orion@localhost > > Ron Hatcher > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Christian > Billen > Sent: 07 January 2001 16:20 > To: Orion-Interest > Subject: RE: orion on unix

Re: orion on unix

2001-01-07 Thread Nils Frohberg
Yes, but sudo will still run orion with UID 0. This will not improve security. Then you might as well make a group called 'orion', and put all the users that need access to orion into this group. Change the dir/file perms so that it is read/writable for these users. If you try to get orion to

Re: orion on unix

2001-01-07 Thread M.
I think there is a better solution than using ipchains (which I'm not sure is supported anywhere but on Linux, and is bound to incurr some overhead, though I'm not sure if it would be significant), or at least an alternative. Install sudo if you haven't already. You have to configure sudo with t

RE: orion on unix

2001-01-07 Thread Ronald Hatcher
01 16:20 To: Orion-Interest Subject: RE: orion on unix You could run the following command in your script as root: ipchains -A input --destination-port 80 -p tcp -j REDIRECT 10080 Then su to the orion user and start orion on a port > 1024 as non root, there is an article on orionsupport.com ab

RE: orion on unix

2001-01-07 Thread Christian Billen
n Billen -Original Message- From: Heng Chee, Lee - SG [SMTP:[EMAIL PROTECTED]] Sent: Sunday, January 07, 2001 2:54 AM To: Orion-Interest Subject: orion on unix Hi, I used to run orion on NT machine and now I have to deploy it on a Sun Sparc Solaris machine. Honestly, my know

Re: orion on unix

2001-01-07 Thread anton
ofcourse same website has tutorial named "Running Orion on Unix" maybe it has instructions that u need. I hope this helps -Anton - Original Message - From: "Ronald Hatcher" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Sund

RE: orion on unix

2001-01-07 Thread Ronald Hatcher
54 To: Orion-Interest Subject: orion on unix Hi, I used to run orion on NT machine and now I have to deploy it on a Sun Sparc Solaris machine. Honestly, my knowledge on unix system admin is very limited. Ok, now I have this problem: I have untar the orion archieve to a folder called orion, this folde

Re: orion on unix

2001-01-07 Thread Brautigam Robert
> Hi, Hi, > I used to run orion on NT machine and now I have to deploy it on a Sun Sparc > Solaris machine. [...] > starting HTTP-Server : Permission denied". I can only startup orion if I > log in as root user. This is not acceptable because I can't let everyone to [...] > Or is there any alte

orion on unix

2001-01-07 Thread Heng Chee, Lee - SG
Hi, I used to run orion on NT machine and now I have to deploy it on a Sun Sparc Solaris machine. Honestly, my knowledge on unix system admin is very limited. Ok, now I have this problem: I have untar the orion archieve to a folder called orion, this folder and all the files and subfolders under i