Subversion and FreeBSD permission problems

2008-03-23 Thread Darrell Blake
I'm fairly new to FreeBSD and SVN but myself and a few developer
friends are undertaking a small project and I've been tasked with
getting the source control working. I decided to use FreeBSD for the
server for numerous reasons, stability and security among them. I'm no
stranger to Unix, however, I've been using Linux for a long time.

Anyway, my server is up and running and I've install svn via the ports
system (acquire from portsnap). I have set up a repository in
/usr/local/svn/repository via svnadmin create
/usr/local/svn/repository and imported a test project into it via
svn import TestProject file:///usr/local/svn/repository/TestProject.
I then fired off the deamon server via svnserve -d -r
/usr/local/svn/repository which all seems to have worked well.

The thing is, I can't actually perform a checkout of the repository
via the server.

If I move into a temp directory and do svn checkout
file:///usr/local/svn/repository/TestProject it works fine but if I
do svn svn://127.0.0.1/TestProject I get an error stating svn:
Can't connect to host '127.0.0.1': Connection refused.

Also, if I try and use TortoiseSVN to browse the repository externally
I get an error stating Error * Can't connect to host '192.168.0.10':
No connection could be made because the  target machine actively
refused it.

Does anyone have any idea what I could be doing wrong? I've been
reading the free O'Reilly Subversion book but I'm a bit clueless. I
suspect it's something to do with permissions on FreeBSD but I just
don't know enough about it =o)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Subversion and FreeBSD permission problems

2008-03-23 Thread Giorgos Keramidas
On Sun, 23 Mar 2008 16:01:48 +, Darrell Blake [EMAIL PROTECTED] wrote:
 I'm fairly new to FreeBSD and SVN but myself and a few developer
 friends are undertaking a small project and I've been tasked with
 getting the source control working. I decided to use FreeBSD for the
 server for numerous reasons, stability and security among them. I'm no
 stranger to Unix, however, I've been using Linux for a long time.

 Anyway, my server is up and running and I've install svn via the ports
 system (acquire from portsnap). I have set up a repository in
 /usr/local/svn/repository via svnadmin create
 /usr/local/svn/repository and imported a test project into it via
 svn import TestProject file:///usr/local/svn/repository/TestProject.
 I then fired off the deamon server via svnserve -d -r
 /usr/local/svn/repository which all seems to have worked well.

 The thing is, I can't actually perform a checkout of the repository
 via the server.

 If I move into a temp directory and do svn checkout
 file:///usr/local/svn/repository/TestProject it works fine but if I
 do svn svn://127.0.0.1/TestProject I get an error stating svn:
 Can't connect to host '127.0.0.1': Connection refused.

When you run svnserve without a --listen-port option it listens by
default on port 3690.

Can you check with telnet to see if that port is accessible from remote
hosts?  If it isn't, are you running any firewall?

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Subversion and FreeBSD permission problems

2008-03-23 Thread David Kelly


On Mar 23, 2008, at 11:01 AM, Darrell Blake wrote:

If I move into a temp directory and do svn checkout
file:///usr/local/svn/repository/TestProject it works fine but if I
do svn svn://127.0.0.1/TestProject I get an error stating svn:
Can't connect to host '127.0.0.1': Connection refused.

Also, if I try and use TortoiseSVN to browse the repository externally
I get an error stating Error * Can't connect to host '192.168.0.10':
No connection could be made because the  target machine actively
refused it.



I suggest using svn+ssh: rather than svn:

Then so long as you can ssh into the machine you can do svn.

--
David Kelly N4HHE, [EMAIL PROTECTED]

Whom computers would destroy, they must first drive mad.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Subversion and FreeBSD permission problems

2008-03-23 Thread Mark G.

David Kelly wrote:


On Mar 23, 2008, at 11:01 AM, Darrell Blake wrote:

If I move into a temp directory and do svn checkout
file:///usr/local/svn/repository/TestProject it works fine but if I
do svn svn://127.0.0.1/TestProject I get an error stating svn:
Can't connect to host '127.0.0.1': Connection refused.

Also, if I try and use TortoiseSVN to browse the repository externally
I get an error stating Error * Can't connect to host '192.168.0.10':
No connection could be made because the  target machine actively
refused it.


What does the output of `sockstat -4` look like?  It should
list the SVN server's listening port.




I suggest using svn+ssh: rather than svn:

Then so long as you can ssh into the machine you can do svn.



Here is a short paper I wrote about SVN over SSH on FreeBSD.

https://www.giovannetti.ca/bsd/SubversionOnFreeBSDWithSSH.pdf

Mark
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Subversion and FreeBSD permission problems

2008-03-23 Thread Darrell Blake
I'm SSHing to my server from my desktop as I haven't actually got a
monitor on the server but when I do a sockstat I get the following
output regarding svn:

svusersvnserve   846   3  tcp6   *:3690*:*

When I try and do telnet 127.0.0.1 3690 on the server I get...

telnet: connect to address 127.0.0.1: Connection refused.
telnet: Unable to connect to remote host

...and if I try and do telnet 192.168.0.10 3690 from my desktop I get...

Connecting To 192.168.0.10...Could not open connection to the host, on port 3690
: Connect failed

I'm not opposed to using SVN via SSH but I'd kind like to get a
vanilla SVN server going first. It's becoming an unusually steep
learning curve =o)


On Sun, Mar 23, 2008 at 8:34 PM, Mark G.
[EMAIL PROTECTED] wrote:
 David Kelly wrote:
  
   On Mar 23, 2008, at 11:01 AM, Darrell Blake wrote:
   If I move into a temp directory and do svn checkout
   file:///usr/local/svn/repository/TestProject it works fine but if I
   do svn svn://127.0.0.1/TestProject I get an error stating svn:
   Can't connect to host '127.0.0.1': Connection refused.
  
   Also, if I try and use TortoiseSVN to browse the repository externally
   I get an error stating Error * Can't connect to host '192.168.0.10':
   No connection could be made because the  target machine actively
   refused it.

  What does the output of `sockstat -4` look like?  It should
  list the SVN server's listening port.


  
  
   I suggest using svn+ssh: rather than svn:
  
   Then so long as you can ssh into the machine you can do svn.
  

  Here is a short paper I wrote about SVN over SSH on FreeBSD.

  https://www.giovannetti.ca/bsd/SubversionOnFreeBSDWithSSH.pdf

  Mark

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Subversion and FreeBSD permission problems

2008-03-23 Thread Mark G.

Hi Darrell,

Please don't top post.  Further help follows.

Darrell Blake wrote:

I'm SSHing to my server from my desktop as I haven't actually got a
monitor on the server but when I do a sockstat I get the following
output regarding svn:

svusersvnserve   846   3  tcp6   *:3690*:*

When I try and do telnet 127.0.0.1 3690 on the server I get...

telnet: connect to address 127.0.0.1: Connection refused.
telnet: Unable to connect to remote host

...and if I try and do telnet 192.168.0.10 3690 from my desktop I get...

Connecting To 192.168.0.10...Could not open connection to the host, on port 3690
: Connect failed

I'm not opposed to using SVN via SSH but I'd kind like to get a
vanilla SVN server going first. It's becoming an unusually steep
learning curve =o)




I wonder if you have inetd running and intercepting these
connections--not likely, but you can check.

Have you gone through the /path-to-repository/conf/svnserve.conf
file and twiddled with any of the settings in there?

Check man svnserve.conf and man svnserve (there's a debug setting
for the server that might provide some clues as to why connections
are failing).  Particularly, in svnserve.conf(5) is:

  anon-access = none|read|write
  Determines the access  level  for  unauthenticated  users.   write
  access  allows  all repository operations.  read access allows all
  operations except committing  and  changing  revision  properties.
  none access allows no access.  The default level is read.

   auth-access = none|read|write ...

Mark





___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Subversion and FreeBSD permission problems

2008-03-23 Thread Mark G.

Hi again,

Darrell Blake wrote:

I'm SSHing to my server from my desktop as I haven't actually got a
monitor on the server but when I do a sockstat I get the following
output regarding svn:

svusersvnserve   846   3  tcp6   *:3690*:*



I just noticed the 'tcp6' in the above line.  Looks like your
svn server is listening on an IP version 6 address.  It won't
answer a request made from an IP version 4 address (it can't
even see it), which is what 127.0.0.1 and 192.168.*.* are.

Does the output to 'sockstat -4' show any services?  Note the
-4 option restricts sockstat's output to IP v4 addresses.

Mark
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Subversion and FreeBSD permission problems

2008-03-23 Thread Giorgos Keramidas
On Sun, 23 Mar 2008 23:13:12 +, Darrell Blake [EMAIL PROTECTED] wrote:
 I'm SSHing to my server from my desktop as I haven't actually got a
 monitor on the server but when I do a sockstat I get the following
 output regarding svn:

 svusersvnserve   846   3  tcp6   *:3690*:*

 When I try and do telnet 127.0.0.1 3690 on the server I get...

 telnet: connect to address 127.0.0.1: Connection refused.
 telnet: Unable to connect to remote host

 ...and if I try and do telnet 192.168.0.10 3690 from my desktop I get...

 Connecting To 192.168.0.10...Could not open connection to the host, on port 
 3690
 : Connect failed

Ok, now is a good time to check your firewall ruleset :)

It looks like you are blocking incoming connections to the
svnserve port.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Subversion on FreeBSD?

2005-10-10 Thread Yuan Jue
Hi all

Is there a subversion system for FreeBSD sourcecode? Or there is only CVS to 
control the source code? Does that mean that subversion is not stable enough 
to take this big job?

-- 
Best Regards.

Yuan Jue
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Subversion on FreeBSD?

2005-10-10 Thread Stijn Hoop
On Mon, Oct 10, 2005 at 07:53:34PM +0800, Yuan Jue wrote:
 Is there a subversion system for FreeBSD sourcecode? Or there is only CVS to 
 control the source code? Does that mean that subversion is not stable enough 
 to take this big job?

There is an older one:

http://lists.freebsd.org/pipermail/freebsd-hackers/2004-September/008112.html

Web interface located here (as stated in that post):

http://svn.clkao.org/svnweb/freebsd/log/cvs/

However, I think clkao stopped updating it?

FWIW, I think Subversion would be stable enough, but no-one's gone through
the trouble of converting the CVS repository while preserving the project's
history. I tried to using cvs2svn about a year back but ran into some
snags, and I've never found the time to retry now that cvs2svn is improved.

--Stijn

-- 
An Orb is for life, not just for Christmas.


pgpLLzajLv5aR.pgp
Description: PGP signature


Re: Subversion on FreeBSD?

2005-10-10 Thread Ashley Moran

Yuan Jue wrote:

Hi all

Is there a subversion system for FreeBSD sourcecode? Or there is only CVS to 
control the source code? Does that mean that subversion is not stable enough 
to take this big job?





If you were evaluating Subversion then it is stable enough to handle big 
projects.  Off the top of my head, Samba and several Apache projects use 
Subversion.  I think what stops most people switching to it is usually 
the migration rather than the package ourself.  When we migrated from 
Visual Source Shredder to SVN we gave up and abandoned the history (just 
re-imported the files), but for some projects that might not be viable.


Ashley
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD on Subversion : (was Re: Subversion on FreeBSD?)

2005-10-10 Thread Norberto Meijome

Ashley Moran wrote:

Yuan Jue wrote:


Hi all

Is there a subversion system for FreeBSD sourcecode? Or there is only 
CVS to control the source code? Does that mean that subversion is not 
stable enough to take this big job?





If you were evaluating Subversion then it is stable enough to handle big 
projects.  Off the top of my head, Samba and several Apache projects use 
Subversion.  I think what stops most people switching to it is usually 
the migration rather than the package ourself.  When we migrated from 
Visual Source Shredder to SVN we gave up and abandoned the history (just 
re-imported the files), but for some projects that might not be viable.


I just finished migrating our (small, miniscule compared to FBSD's CVS) 
repository from cvs to svn and it went without a hitch. *MUCH* simpler 
and faster than vss to svn. (vss-svn: managed to import the history 
though with some issues with new lines (win32 to win32 conversion, so no 
idea what was the problem).). Maybe because cvs2svn is in Python and 
vss2svn is a Perl beast?


Anyway, is anyone interested in porting (or having it ported) the cvs 
repository to svn? maybe running both in paralell (cvs rw, svn ro, i 
figure).


what amount of traffic would be expected for this kind of svn server?

best,
B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: subversion on FreeBSD 4.10

2005-03-15 Thread Rene C. Mendoza
Rene C. Mendoza wrote:
Daniel S. Haischt wrote:
did you compile Apache 2.x with WebDAV support (i.e. mod_dav)?
Rene C. Mendoza schrieb:
Hi!
I'm trying to install subversion-1.1.3 on FreeBSd 4.10 from ports. 
By the way, my ports tree is updated regularly.
When I install in the subversion port directory, installation just 
seems to stop or sleep.

Here is the relevant line where it sleeps:
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a 
-n dav libexec/apache2/mod_dav.so

I may have missed something. Can anybody help show me what I'm doing 
wrong?

Thanks in advance,
Rene


yes i did. i use penv in our server.  here are the environment 
settings on www/apache2.

# penv -c list
WITH_DAV_MODULES=yes
WITH_AUTH_MODULES=yes
WITH_SSL_MODULES=yes
WITH_MISC_MODULES=yes
WITH_BERKELEYDB=db42
WITH_LDAP_MODULES=yes
on devel/subversion, i have these penv settings:
# penv -c list
WITH_MOD_DAV_SVN=yes
WITH_BOOK=yes
did i miss anything?
thanks,
rene

Here's some more info on my problem.  When I run the following command 
manually, it just doesn't seem to do anything at all.  Has anyone here 
able been successful in compiling subversion with mod_dav_svn?  I tried 
upgrading to FreeBSD 5.3 with updated ports and I still get the same 
problem.

/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a -n 
dav libexec/apache2/mod_dav.so




smime.p7s
Description: S/MIME Cryptographic Signature


RE: subversion on FreeBSD 4.10

2005-03-15 Thread Subhro


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-freebsd-
 [EMAIL PROTECTED] On Behalf Of Rene C. Mendoza
 Sent: Wednesday, March 16, 2005 9:38
 To: freebsd-questions@freebsd.org
 Subject: Re: subversion on FreeBSD 4.10
 
 Here's some more info on my problem.  When I run the following command
 manually, it just doesn't seem to do anything at all.  Has anyone here
 able been successful in compiling subversion with mod_dav_svn?  I tried
 upgrading to FreeBSD 5.3 with updated ports and I still get the same
 problem.
 
 /usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a -n
 dav libexec/apache2/mod_dav.so


When you run apxs manually, then do you find it consuming any processor
time? You can check from top.

Regards,
S.

Indian Institute of Information Technology
Subhro Sankha Kar
Block AQ-13/1, Sector V
Salt Lake City
PIN 700091
India


smime.p7s
Description: S/MIME cryptographic signature


Re: subversion on FreeBSD 4.10

2005-03-15 Thread Rene C. Mendoza
Subhro wrote:
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:owner-freebsd-
[EMAIL PROTECTED] On Behalf Of Rene C. Mendoza
Sent: Wednesday, March 16, 2005 9:38
To: freebsd-questions@freebsd.org
Subject: Re: subversion on FreeBSD 4.10
   

Here's some more info on my problem.  When I run the following command
manually, it just doesn't seem to do anything at all.  Has anyone here
able been successful in compiling subversion with mod_dav_svn?  I tried
upgrading to FreeBSD 5.3 with updated ports and I still get the same
problem.
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a -n
dav libexec/apache2/mod_dav.so
   


When you run apxs manually, then do you find it consuming any processor
time? You can check from top.
Regards,
S.
Indian Institute of Information Technology
Subhro Sankha Kar
Block AQ-13/1, Sector V
Salt Lake City
PIN 700091
India
 

yup. here is the top command result:
last pid: 88945;  load averages:  1.00,  1.00,  0.93up 0+05:01:38  
19:02:31
32 processes:  2 running, 30 sleeping
CPU states: 98.1% user,  0.0% nice,  1.9% system,  0.0% interrupt,  0.0% 
idle
Mem: 16M Active, 237M Inact, 82M Wired, 48K Cache, 60M Buf, 158M Free
Swap: 1006M Total, 1006M Free

 PID USERNAME PRI NICE   SIZERES STATETIME   WCPUCPU COMMAND
88849 root 1320  4740K  4316K RUN 36:18 98.88% 98.88% perl5.8.6
 543 rene  960  5084K  2212K select   0:03  0.00%  0.00% sshd
 480 rene  960  5084K  2212K select   0:03  0.00%  0.00% sshd
 387 root  960  8420K  5256K select   0:01  0.00%  0.00% httpd
 345 root  960  3120K  2548K select   0:01  0.00%  0.00% sendmail
 580 root  200  2432K  1956K pause0:00  0.00%  0.00% tcsh
 238 root  960  1408K   964K select   0:00  0.00%  0.00% syslogd
 364 root   80  1448K  1096K nanslp   0:00  0.00%  0.00% cron
 481 rene  200  2432K  1940K pause0:00  0.00%  0.00% tcsh
88945 rene  960  2412K  1632K RUN  0:00  0.00%  0.00% top
 544 rene  200  2428K  1892K pause0:00  0.00%  0.00% tcsh
 478 root   40  5084K  2204K sbwait   0:00  0.00%  0.00% sshd
 541 root   40  5084K  2204K sbwait   0:00  0.00%  0.00% sshd
 579 rene   80  1700K  1360K wait 0:00  0.00%  0.00% su
 351 smmsp 200  3016K  2388K pause0:00  0.00%  0.00% sendmail
 425 root   50  1372K   988K ttyin0:00  0.00%  0.00% getty
 391 root  960  2492K  2068K select   0:00  0.00%  0.00% sshd
I tried installing without mod_dav_svn and subversion installed 
cleanly.   Problem  with apxs/mod_dav_svn?

thanks,
Rene


smime.p7s
Description: S/MIME Cryptographic Signature


RE: subversion on FreeBSD 4.10

2005-03-15 Thread Subhro


 -Original Message-
 From: Rene C. Mendoza [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 16, 2005 10:01
 To: Subhro
 Cc: freebsd-questions@freebsd.org
 Subject: Re: subversion on FreeBSD 4.10
 
 Subhro wrote:
 
 
 Here's some more info on my problem.  When I run the following command
 manually, it just doesn't seem to do anything at all.  Has anyone here
 able been successful in compiling subversion with mod_dav_svn?  I tried
 upgrading to FreeBSD 5.3 with updated ports and I still get the same
 problem.
 
 /usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a -n
 dav libexec/apache2/mod_dav.so
 
 
 
 
 When you run apxs manually, then do you find it consuming any processor
 time? You can check from top.
 
 yup. here is the top command result:
 
 last pid: 88945;  load averages:  1.00,  1.00,  0.93up 0+05:01:38
 19:02:31
 32 processes:  2 running, 30 sleeping
 CPU states: 98.1% user,  0.0% nice,  1.9% system,  0.0% interrupt,  0.0%
 idle
 Mem: 16M Active, 237M Inact, 82M Wired, 48K Cache, 60M Buf, 158M Free
 Swap: 1006M Total, 1006M Free
 
   PID USERNAME PRI NICE   SIZERES STATETIME   WCPUCPU COMMAND
 88849 root 1320  4740K  4316K RUN 36:18 98.88% 98.88%
 perl5.8.6
   543 rene  960  5084K  2212K select   0:03  0.00%  0.00% sshd
   480 rene  960  5084K  2212K select   0:03  0.00%  0.00% sshd
   387 root  960  8420K  5256K select   0:01  0.00%  0.00% httpd
   345 root  960  3120K  2548K select   0:01  0.00%  0.00% sendmail
   580 root  200  2432K  1956K pause0:00  0.00%  0.00% tcsh
   238 root  960  1408K   964K select   0:00  0.00%  0.00% syslogd
   364 root   80  1448K  1096K nanslp   0:00  0.00%  0.00% cron
   481 rene  200  2432K  1940K pause0:00  0.00%  0.00% tcsh
 88945 rene  960  2412K  1632K RUN  0:00  0.00%  0.00% top
   544 rene  200  2428K  1892K pause0:00  0.00%  0.00% tcsh
   478 root   40  5084K  2204K sbwait   0:00  0.00%  0.00% sshd
   541 root   40  5084K  2204K sbwait   0:00  0.00%  0.00% sshd
   579 rene   80  1700K  1360K wait 0:00  0.00%  0.00% su
   351 smmsp 200  3016K  2388K pause0:00  0.00%  0.00% sendmail
   425 root   50  1372K   988K ttyin0:00  0.00%  0.00% getty
   391 root  960  2492K  2068K select   0:00  0.00%  0.00% sshd
 
 I tried installing without mod_dav_svn and subversion installed
 cleanly.   Problem  with apxs/mod_dav_svn?

When was perl built on this system? And may I have a look at /etc/make.conf?


Regards,
S.

Indian Institute of Information Technology
Subhro Sankha Kar
Block AQ-13/1, Sector V
Salt Lake City
PIN 700091
India


smime.p7s
Description: S/MIME cryptographic signature


Re: subversion on FreeBSD 4.10

2005-03-15 Thread Rene C. Mendoza
Subhro wrote:
 

-Original Message-
From: Rene C. Mendoza [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 16, 2005 10:01
To: Subhro
Cc: freebsd-questions@freebsd.org
Subject: Re: subversion on FreeBSD 4.10
Subhro wrote:
   

Here's some more info on my problem.  When I run the following command
manually, it just doesn't seem to do anything at all.  Has anyone here
able been successful in compiling subversion with mod_dav_svn?  I tried
upgrading to FreeBSD 5.3 with updated ports and I still get the same
problem.
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a -n
dav libexec/apache2/mod_dav.so
   

When you run apxs manually, then do you find it consuming any processor
time? You can check from top.
 

yup. here is the top command result:
last pid: 88945;  load averages:  1.00,  1.00,  0.93up 0+05:01:38
19:02:31
32 processes:  2 running, 30 sleeping
CPU states: 98.1% user,  0.0% nice,  1.9% system,  0.0% interrupt,  0.0%
idle
Mem: 16M Active, 237M Inact, 82M Wired, 48K Cache, 60M Buf, 158M Free
Swap: 1006M Total, 1006M Free
 PID USERNAME PRI NICE   SIZERES STATETIME   WCPUCPU COMMAND
88849 root 1320  4740K  4316K RUN 36:18 98.88% 98.88%
perl5.8.6
 543 rene  960  5084K  2212K select   0:03  0.00%  0.00% sshd
 480 rene  960  5084K  2212K select   0:03  0.00%  0.00% sshd
 387 root  960  8420K  5256K select   0:01  0.00%  0.00% httpd
 345 root  960  3120K  2548K select   0:01  0.00%  0.00% sendmail
 580 root  200  2432K  1956K pause0:00  0.00%  0.00% tcsh
 238 root  960  1408K   964K select   0:00  0.00%  0.00% syslogd
 364 root   80  1448K  1096K nanslp   0:00  0.00%  0.00% cron
 481 rene  200  2432K  1940K pause0:00  0.00%  0.00% tcsh
88945 rene  960  2412K  1632K RUN  0:00  0.00%  0.00% top
 544 rene  200  2428K  1892K pause0:00  0.00%  0.00% tcsh
 478 root   40  5084K  2204K sbwait   0:00  0.00%  0.00% sshd
 541 root   40  5084K  2204K sbwait   0:00  0.00%  0.00% sshd
 579 rene   80  1700K  1360K wait 0:00  0.00%  0.00% su
 351 smmsp 200  3016K  2388K pause0:00  0.00%  0.00% sendmail
 425 root   50  1372K   988K ttyin0:00  0.00%  0.00% getty
 391 root  960  2492K  2068K select   0:00  0.00%  0.00% sshd
I tried installing without mod_dav_svn and subversion installed
cleanly.   Problem  with apxs/mod_dav_svn?
   

When was perl built on this system? And may I have a look at /etc/make.conf?
Regards,
S.
Indian Institute of Information Technology
Subhro Sankha Kar
Block AQ-13/1, Sector V
Salt Lake City
PIN 700091
India
 

Before I upgraded the box, I've upgraded all the ports including perl.  
Here's my make.conf.

# The CPUTYPE variable controls which processor should be targeted for
# generated code.  This controls processor-specific optimizations in
# certain code (currently only OpenSSL) as well as modifying the value
# of CFLAGS to contain the appropriate optimization directive to gcc.
# The automatic setting of CFLAGS may be overridden using the
# NO_CPU_CFLAGS variable below.
# Currently the following CPU types are recognized:
#   Intel x86 architecture:
#   (AMD CPUs)k7 k6-2 k6 k5
#   (Intel CPUs)p4 p3 p2 i686 i586/mmx i586 i486 i386
#   Alpha/AXP architecture: ev6 pca56 ev56 ev5 ev45 ev4
#
# If you experience any problems after setting this flag, please unset
# it again before submitting a bug report or attempting to modify code.
# It may be that certain types of software will become unstable after being
# compiled with processor-specific (or higher - see below) optimization 
flags.
# If in doubt, do not set CPUTYPE or CFLAGS to non-default values.
#
CPUTYPE=i686
#NO_CPU_CFLAGS=true# Don't add -march=cpu to CFLAGS automatically
#NO_CPU_COPTFLAGS=true# Don't add -march=cpu to COPTFLAGS 
automatically
#
# CFLAGS controls the compiler settings used when compiling C code.
# Note that optimization settings above -O (-O2, ...) are not recommended
# or supported for compiling the world or the kernel - please revert any
# nonstandard optimization settings to -O before submitting bug reports
# to the developers.
# Note also that at this time the -O2 setting is known to produce BROKEN
# CODE on the Alpha platform.
#
CFLAGS= -O -pipe
#
# CXXFLAGS controls the compiler settings used when compiling C++ code.
# Note that CXXFLAGS is initially set to the value of CFLAGS.  If you wish
# to add to CXXFLAGS value, += must be used rather than =.  Using =
# alone will remove the often needed contents of CFLAGS from CXXFLAGS.
#
#CXXFLAGS+= -fmemoize-lookups -fsave-memoized
#
# BDECFLAGS are a set of gcc warning settings that Bruce Evans has suggested
# for use in developing FreeBSD and testing changes.  They can be used by
# putting CFLAGS+=${BDECFLAGS} in /etc/make.conf.  -Wconversion is not
# included here due to compiler bugs, e.g., mkdir()'s mode_t argument.
#
BDECFLAGS=-W

subversion on FreeBSD 4.10

2005-03-11 Thread Rene C. Mendoza
Hi!
I'm trying to install subversion-1.1.3 on FreeBSd 4.10 from ports. By 
the way, my ports tree is updated regularly.
When I install in the subversion port directory, installation just seems 
to stop or sleep.

Here is the relevant line where it sleeps:
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a -n 
dav libexec/apache2/mod_dav.so

I may have missed something. Can anybody help show me what I'm doing wrong?
Thanks in advance,
Rene



smime.p7s
Description: S/MIME Cryptographic Signature


Re: subversion on FreeBSD 4.10

2005-03-11 Thread Daniel S. Haischt
did you compile Apache 2.x with WebDAV support (i.e. mod_dav)?
Rene C. Mendoza schrieb:
Hi!
I'm trying to install subversion-1.1.3 on FreeBSd 4.10 from ports. By 
the way, my ports tree is updated regularly.
When I install in the subversion port directory, installation just seems 
to stop or sleep.

Here is the relevant line where it sleeps:
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a -n 
dav libexec/apache2/mod_dav.so

I may have missed something. Can anybody help show me what I'm doing wrong?
Thanks in advance,
Rene

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: subversion on FreeBSD 4.10

2005-03-11 Thread Rene C. Mendoza
Daniel S. Haischt wrote:
did you compile Apache 2.x with WebDAV support (i.e. mod_dav)?
Rene C. Mendoza schrieb:
Hi!
I'm trying to install subversion-1.1.3 on FreeBSd 4.10 from ports. By 
the way, my ports tree is updated regularly.
When I install in the subversion port directory, installation just 
seems to stop or sleep.

Here is the relevant line where it sleeps:
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a 
-n dav libexec/apache2/mod_dav.so

I may have missed something. Can anybody help show me what I'm doing 
wrong?

Thanks in advance,
Rene


yes i did. i use penv in our server.  here are the environment settings 
on www/apache2.

# penv -c list
WITH_DAV_MODULES=yes
WITH_AUTH_MODULES=yes
WITH_SSL_MODULES=yes
WITH_MISC_MODULES=yes
WITH_BERKELEYDB=db42
WITH_LDAP_MODULES=yes
on devel/subversion, i have these penv settings:
# penv -c list
WITH_MOD_DAV_SVN=yes
WITH_BOOK=yes
did i miss anything?
thanks,
rene



smime.p7s
Description: S/MIME Cryptographic Signature


Re: subversion on FreeBSD 4.10

2005-03-11 Thread Daniel S. Haischt
can you add the following subversion ports option:
 WITH_APACHE2_APR=yes
from the port's Makefile:
 You can enable the mod_dav_svn module for Apache 2.X
 by defining WITH_MOD_DAV_SVN.  This option implies
 the WITH_APACHE2_APR option.
Rene C. Mendoza schrieb:
Daniel S. Haischt wrote:
did you compile Apache 2.x with WebDAV support (i.e. mod_dav)?
Rene C. Mendoza schrieb:
Hi!
I'm trying to install subversion-1.1.3 on FreeBSd 4.10 from ports. By 
the way, my ports tree is updated regularly.
When I install in the subversion port directory, installation just 
seems to stop or sleep.

Here is the relevant line where it sleeps:
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a 
-n dav libexec/apache2/mod_dav.so

I may have missed something. Can anybody help show me what I'm doing 
wrong?

Thanks in advance,
Rene


yes i did. i use penv in our server.  here are the environment settings 
on www/apache2.

# penv -c list
WITH_DAV_MODULES=yes
WITH_AUTH_MODULES=yes
WITH_SSL_MODULES=yes
WITH_MISC_MODULES=yes
WITH_BERKELEYDB=db42
WITH_LDAP_MODULES=yes
on devel/subversion, i have these penv settings:
# penv -c list
WITH_MOD_DAV_SVN=yes
WITH_BOOK=yes
did i miss anything?
thanks,
rene

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: subversion on FreeBSD 4.10

2005-03-11 Thread Daniel S. Haischt
OK, I have to admit that this was a stupid suggestion ;-)
WITH_APACHE2_APR will be set to yes if using WITH_MOD_DAV_SVN
(as you did).
Did you try to manually execute the command ...
/usr/local/sbin/apxs -e -S \
LIBEXECDIR=/usr/local/libexec/apache2 \
-a -n dav libexec/apache2/mod_dav.so
... just to ensure APXS is realy the reason for this
issue?
Daniel S. Haischt schrieb:
can you add the following subversion ports option:
 WITH_APACHE2_APR=yes
from the port's Makefile:
 You can enable the mod_dav_svn module for Apache 2.X
 by defining WITH_MOD_DAV_SVN.  This option implies
 the WITH_APACHE2_APR option.
Rene C. Mendoza schrieb:
Daniel S. Haischt wrote:
did you compile Apache 2.x with WebDAV support (i.e. mod_dav)?
Rene C. Mendoza schrieb:
Hi!
I'm trying to install subversion-1.1.3 on FreeBSd 4.10 from ports. 
By the way, my ports tree is updated regularly.
When I install in the subversion port directory, installation just 
seems to stop or sleep.

Here is the relevant line where it sleeps:
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a 
-n dav libexec/apache2/mod_dav.so

I may have missed something. Can anybody help show me what I'm doing 
wrong?

Thanks in advance,
Rene


yes i did. i use penv in our server.  here are the environment 
settings on www/apache2.

# penv -c list
WITH_DAV_MODULES=yes
WITH_AUTH_MODULES=yes
WITH_SSL_MODULES=yes
WITH_MISC_MODULES=yes
WITH_BERKELEYDB=db42
WITH_LDAP_MODULES=yes
on devel/subversion, i have these penv settings:
# penv -c list
WITH_MOD_DAV_SVN=yes
WITH_BOOK=yes
did i miss anything?
thanks,
rene


--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]