Re: nginx log empty

2012-10-05 Thread Cos Chan
On Thu, Oct 4, 2012 at 5:21 PM, Виталий Туровец core...@corebug.net wrote:
 What helped me in simillar situation is rebuilding nginx without unnecessary
 modules.

Could you share the configurations? I have removed some modules but
still same issue.

 04.10.2012 17:47 пользователь Cos roset...@gmail.com написал:



 Dear All

 My system is FreeBSD 9 with latest version nginx.

 Here is my conf file content:

 #user  www;
  worker_processes  1;

 #error_log/var/log/nginx/error.log;

 #pidlogs/nginx.pid;


 events {
  worker_connections  1024;
  }

 The problem is I can not see anything from /var/log/nginx-error.log,
 all error logs outputed to screen directly.

 I have tried uncomment above user and error_log options to specify
 error_log directory or user account. But same issue..

 Please suggest.

 --
 with kind regards
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 freebsd-questions-unsubscr...@freebsd.org



-- 
with kind regards
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: nginx log empty

2012-10-05 Thread Виталий Туровец
2012/10/5 Cos Chan roset...@gmail.com:
 On Thu, Oct 4, 2012 at 5:21 PM, Виталий Туровец core...@corebug.net wrote:
 What helped me in simillar situation is rebuilding nginx without unnecessary
 modules.

 Could you share the configurations? I have removed some modules but
 still same issue.

 04.10.2012 17:47 пользователь Cos roset...@gmail.com написал:



 Dear All

 My system is FreeBSD 9 with latest version nginx.

 Here is my conf file content:

 #user  www;
  worker_processes  1;

 #error_log/var/log/nginx/error.log;

 #pidlogs/nginx.pid;


 events {
  worker_connections  1024;
  }

 The problem is I can not see anything from /var/log/nginx-error.log,
 all error logs outputed to screen directly.

 I have tried uncomment above user and error_log options to specify
 error_log directory or user account. But same issue..

 Please suggest.

 --
 with kind regards
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 freebsd-questions-unsubscr...@freebsd.org



 --
 with kind regards

This one works fine:

nginx -V
nginx version: nginx/1.2.3
configure arguments: --prefix=/usr/local/etc/nginx --with-cc-opt='-I
/usr/local/include' --with-ld-opt='-L /usr/local/lib'
--conf-path=/usr/local/etc/nginx/nginx.conf
--sbin-path=/usr/local/sbin/nginx --pid-path=/var/run/nginx.pid
--error-log-path=/var/log/nginx-error.log --user=www --group=www
--with-debug --with-ipv6
--http-client-body-temp-path=/var/tmp/nginx/client_body_temp
--http-fastcgi-temp-path=/var/tmp/nginx/fastcgi_temp
--http-proxy-temp-path=/var/tmp/nginx/proxy_temp
--http-scgi-temp-path=/var/tmp/nginx/scgi_temp
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi_temp
--http-log-path=/var/log/nginx-access.log
--with-http_gzip_static_module --with-http_stub_status_module
--with-pcre

It was built with such options from port:
DEBUG,DEBUGLOG,IPV6,HTTP,HTTP_CACHE,HTTP_GZIP_STATIC,HTTP_REWRITE,HTTP_STATUS

Also i use CLANG as default compiler in my system, this is from /etc/make.conf:
WITHOUT_X11=YES
WITHOUT_GUI=YES
CC=clang
CXX=clang++
CPP=clang-cpp

I recommend you using clang as well, cause 1. it runs faster, 2.the
code it produces runs faster.
Hope this helps.
-- 




~~~
WBR,
Vitaliy Turovets
NOC Lead @TV-Net ISP
NOC Lead @Service Outsourcing company
+38(093)265-70-55
VITU-RIPE
X-NCC-RegID: ua.tv
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: nginx log empty

2012-10-05 Thread Solmin Vladimir

Hi!

$ cat /usr/local/etc/nginx/nginx.conf
#user  nobody;
worker_processes  10;
worker_priority -5;
worker_rlimit_nofile 20600;

pid/var/run/nginx.pid;

events {
worker_connections  20600;
use kqueue;
}


http {
include   mime.types;
default_type  application/octet-stream;

server_names_hash_bucket_size512;
server_tokens   off;

sendfileon;
send_timeout30s;
tcp_nopush  on;

keepalive_timeout  70 30;

client_max_body_size 100m;
open_file_cache max=10 inactive=40s;
open_file_cache_valid   60s;
open_file_cache_min_uses2;
open_file_cache_errors  on;

gzip  on;

proxy_cache_path /var/nginx/cache levels=1:2 keys_zone=cache:30m 
max_size=1G;

proxy_temp_path /var/nginx/cache/proxy 1 2;
proxy_ignore_headers Expires Cache-Control;
proxy_cache_use_stale error timeout invalid_header http_502;
proxy_cache_bypass $cookie_session;
proxy_no_cache $cookie_session;

server {
listen   80  default rcvbuf=8192 sndbuf=16384 backlog=32000 
accept_filter=httpready;

server_name  xxx;
access_log   /var/log/.access.log;
error_log/var/log/xxx.error.log;

Working fine for me, after portupgrade...

$ pkg_info |grep nginx
nginx-1.2.4,1   Robust and small WWW server
$ uname -a
FreeBSD .xx 9.0-RELEASE-p4 FreeBSD 9.0-RELEASE-p4 #0 
r239191M: Sat Aug 11 16:32:11 MSK 2012 root@ amd64


05.10.2012 12:42, Cos Chan пишет:

On Thu, Oct 4, 2012 at 5:21 PM, Виталий Туровец core...@corebug.net wrote:

What helped me in simillar situation is rebuilding nginx without unnecessary
modules.

Could you share the configurations? I have removed some modules but
still same issue.


04.10.2012 17:47 пользователь Cos roset...@gmail.com написал:



Dear All

My system is FreeBSD 9 with latest version nginx.

Here is my conf file content:

#user  www;
  worker_processes  1;

#error_log/var/log/nginx/error.log;

#pidlogs/nginx.pid;


events {
  worker_connections  1024;
  }

The problem is I can not see anything from /var/log/nginx-error.log,
all error logs outputed to screen directly.

I have tried uncomment above user and error_log options to specify
error_log directory or user account. But same issue..

Please suggest.

--
with kind regards
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
freebsd-questions-unsubscr...@freebsd.org





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


Re: A problem with loader

2012-10-05 Thread Zbigniew
OK, maybe different way: where is the source code for this loader
available? Somehow I'm unable to find it.
-- 
Z.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: A problem with loader

2012-10-05 Thread Polytropon
On Fri, 5 Oct 2012 09:30:56 +, Zbigniew wrote:
 OK, maybe different way: where is the source code for this loader
 available? Somehow I'm unable to find it.

You're searching for this? /usr/src/sys/boot/i386/loader
And the Forth related stuff: /usr/src/sys/boot/forth



-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: A problem with loader

2012-10-05 Thread Zbigniew
2012/10/5, Polytropon free...@edvax.de:

 You're searching for this? /usr/src/sys/boot/i386/loader
 And the Forth related stuff: /usr/src/sys/boot/forth

Made a quick search in the Internet - maybe too quick indeed. And
not really necessary, it seems.
Thanks.
-- 
Z.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD 8.3 with LSI MegaRAID 9265-8i

2012-10-05 Thread Jamie Paul Griffin
[ Joe Mays wrote on Thu  4.Oct'12 at 22:26:01 -0400 ]

 Well, this is a real problem. I have nothing where I am to build and burn an 
 ISO, and I am trying to work with someone several states away through an 
 IKVM switch. The server-to-be is on a port on the switch and I need them to 
 download the ISO via FTP and burn it to a disc and drop it in the tray. 
 Right now I'll happily pay $50 to to anyone who can provide me with an ISO 
 of 8.3 stable in a location that I can provide to the person in missouri so 
 he can download it and create the DVD. I'm serious. Paypal is at the ready.
 
 - Original Message - 
 From: Rick Miller vmil...@hostileadmin.com
 To: Joe Mays m...@win.net
 Sent: Thursday, October 04, 2012 9:55 PM
 Subject: Re: FreeBSD 8.3 with LSI MegaRAID 9265-8i
 
 
  On Thu, Oct 4, 2012 at 9:38 PM, Joe Mays m...@win.net wrote:
  Which ISO? The driver didn't make it into 8.3-RELEASE. Do you have a
  stable/8 iso that was made sometime after the 8.3 release?
 
 
  No, I was trying to install from 8.3 RELEASE. Where do I get a .iso of 
  8.3
  STABL:E that will include the new mfi driver? I can't find one on the ftp
  site.
 
  There is no ISO to download.  The most recent stable/8 code at
  http://svn.freebsd.org/base/stable/8/ includes the driver.  Check it
  out and build a release ISO based on that code.  Reference the URL
  below, but don't pay any mind to patching sysinstall, kernel
  config, or Executing/Using the kernel sections and it'll guide you
  in building a release.  Once the release is built, run mkisofs on it
  and you'll have your ISO.

When you install the 8.3-RELEASE, just use svn to download to stable source 
tree and rebuild the system from source, then you'll have the version you need. 
Are you able to do that?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD 8.3 with LSI MegaRAID 9265-8i

2012-10-05 Thread Jamie Paul Griffin
[ To FreeBSD Questions wrote on Fri  5.Oct'12 at 10:46:38 +0100 ]
 
 When you install the 8.3-RELEASE, just use svn to download to stable source 
 tree and rebuild the system from source, then you'll have the version you 
 need. Are you able to do that?

Sorry I meant to say build on another machine, you can use that to copy over to 
the machine you're having issues with. If you have another machine available
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: A problem with loader

2012-10-05 Thread Polytropon
On Fri, 5 Oct 2012 09:46:13 +, Zbigniew wrote:
 2012/10/5, Polytropon free...@edvax.de:
 
  You're searching for this? /usr/src/sys/boot/i386/loader
  And the Forth related stuff: /usr/src/sys/boot/forth
 
 Made a quick search in the Internet - maybe too quick indeed.

Just make a quick search in the src/ subtree, as I did. :-)



-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD 8.3 with LSI MegaRAID 9265-8i

2012-10-05 Thread Zyumbilev, Peter


On 05/10/2012 5:26, Joe Mays wrote:
 Well, this is a real problem. I have nothing where I am to build and
 burn an ISO, and I am trying to work with someone several states away
 through an IKVM switch. The server-to-be is on a port on the switch and
 I need them to download the ISO via FTP and burn it to a disc and drop
 it in the tray. Right now I'll happily pay $50 to to anyone who can
 provide me with an ISO of 8.3 stable in a location that I can provide to
 the person in missouri so he can download it and create the DVD. I'm
 serious. Paypal is at the ready.
 

Joe try these instead:

Install FreeBSD on another machine. Then

To build FreeBSD 9 do this:

   cd /usr
   svn co svn://svn.freebsd.org/base/head src
   cd src
   make buildworld
   cd release
   make release
   make install DESTDIR=/var/freebsd-snapshot

After running these commands, all produced distribution files (tarballs
for FTP, CD-ROM images, etc.) are available in the /var/freebsd-snapshot

Also you can try to follow this guide:

http://wiki.idefix.fechner.net/index.php/FreeBSD-Build_Own_CD


Peter






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


Re: FreeBSD 8.3 with LSI MegaRAID 9265-8i

2012-10-05 Thread Michael Ross

On Fri, 05 Oct 2012 04:26:01 +0200, Joe Mays m...@win.net wrote:

Well, this is a real problem. I have nothing where I am to build and  
burn an ISO, and I am trying to work with someone several states away  
through an IKVM switch. The server-to-be is on a port on the switch and  
I need them to download the ISO via FTP and burn it to a disc and drop  
it in the tray. Right now I'll happily pay $50 to to anyone who can  
provide me with an ISO of 8.3 stable in a location that I can provide to  
the person in missouri so he can download it and create the DVD. I'm  
serious. Paypal is at the ready.


Possible option?:
Have the person at the remote and plug an usb stick into the machine,
install onto that, and continue from there?


Michael


- Original Message - From: Rick Miller  
vmil...@hostileadmin.com

To: Joe Mays m...@win.net
Sent: Thursday, October 04, 2012 9:55 PM
Subject: Re: FreeBSD 8.3 with LSI MegaRAID 9265-8i



On Thu, Oct 4, 2012 at 9:38 PM, Joe Mays m...@win.net wrote:

Which ISO? The driver didn't make it into 8.3-RELEASE. Do you have a
stable/8 iso that was made sometime after the 8.3 release?



No, I was trying to install from 8.3 RELEASE. Where do I get a .iso of  
8.3
STABL:E that will include the new mfi driver? I can't find one on the  
ftp

site.


There is no ISO to download.  The most recent stable/8 code at
http://svn.freebsd.org/base/stable/8/ includes the driver.  Check it
out and build a release ISO based on that code.  Reference the URL
below, but don't pay any mind to patching sysinstall, kernel
config, or Executing/Using the kernel sections and it'll guide you
in building a release.  Once the release is built, run mkisofs on it
and you'll have your ISO.

http://blog.hostileadmin.com/2012/10/01/building-freebsd-with-multiple-kernels/

Also consider reading the release(7) manpage at
http://www.freebsd.org/cgi/man.cgi?query=releaseapropos=0sektion=0manpath=FreeBSD+8.3-RELEASEarch=defaultformat=html
for information on building a release.

-- Take care
Rick Miller


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

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


Re: FreeBSD 8.3 with LSI MegaRAID 9265-8i

2012-10-05 Thread Michael Powell
Joe Mays wrote:

 Well, this is a real problem. I have nothing where I am to build and burn
 an ISO, and I am trying to work with someone several states away through
 an IKVM switch. The server-to-be is on a port on the switch and I need
 them to download the ISO via FTP and burn it to a disc and drop it in the
 tray. Right now I'll happily pay $50 to to anyone who can provide me with
 an ISO of 8.3 stable in a location that I can provide to the person in
 missouri so he can download it and create the DVD. I'm serious. Paypal is
 at the ready.

Perhaps the latest testing snapshot may be useful. These are intended for
testing, and not really aimed at production. 

ftp://ftp.allbsd.org/pub/FreeBSD-snapshots/amd64-amd64/8.3-RELENG_8-20121005-JPSNAP/cdrom/

Don't know if that's exactly what you're looking for.

-Mike


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


Updating ports tree with subversion behind an http proxy server

2012-10-05 Thread dweimer
I am working on switching from updating my systems with csup to 
subversion, for the systems I have behind a proxy server.  When I was 
using csup, I used an SSH connection, tunneling the 5999 port through 
the proxy server.  Now that I am looking at subversion, I have found the 
~/.subverison/servers file, edited the [global] section removed the 
comment # from the front of the http-proxy-host and http-proxy-port 
lines, and added the correct values.
Realizing I may still have to add some configuration settings to allow 
the subversion http methods through to the proxy, I went ahead and tried 
to run a test check out command.  However it doesn't try to hit the 
proxy server, I just get an immediate no route to host error returned.
I know the server has access to the proxy, I was able to use pkg_add 
with the necessary environment variables to add subversion to this 
system.  The system is a fresh clean install of FreeBSD 9.0-release, 
with only the packages added for subversion.  Looking at the proxy 
server logs the check out doesn't log anything, which leads me to 
believe that svn isn't reading its configuration file, or is simply 
ignoring the http-proxy-host and http-proxy-port lines.
Has anyone setup one of their FreeBSD systems to use subversion behind 
an http proxy, and know what I am missing?


--
Thanks,
   Dean E. Weimer
   http://www.dweimer.net/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Updating ports tree with subversion behind an http proxy server

2012-10-05 Thread dweimer

On 2012-10-05 10:16, dweimer wrote:

I am working on switching from updating my systems with csup to
subversion, for the systems I have behind a proxy server.  When I was
using csup, I used an SSH connection, tunneling the 5999 port through
the proxy server.  Now that I am looking at subversion, I have found
the ~/.subverison/servers file, edited the [global] section removed
the comment # from the front of the http-proxy-host and
http-proxy-port lines, and added the correct values.
Realizing I may still have to add some configuration settings to
allow the subversion http methods through to the proxy, I went ahead
and tried to run a test check out command.  However it doesn't try to
hit the proxy server, I just get an immediate no route to host error
returned.
I know the server has access to the proxy, I was able to use pkg_add
with the necessary environment variables to add subversion to this
system.  The system is a fresh clean install of FreeBSD 9.0-release,
with only the packages added for subversion.  Looking at the proxy
server logs the check out doesn't log anything, which leads me to
believe that svn isn't reading its configuration file, or is simply
ignoring the http-proxy-host and http-proxy-port lines.
Has anyone setup one of their FreeBSD systems to use subversion
behind an http proxy, and know what I am missing?


Never mind, turns out I was just doing something stupid, had to use svn 
co http:// instead of svn co svn://...


--
Thanks,
   Dean E. Weimer
   http://www.dweimer.net/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: nvidia and flash plugin problem

2012-10-05 Thread Patrick Lamaiziere
Le Wed, 03 Oct 2012 19:13:11 +0930,
Shane Ambler free...@shaneware.biz a écrit :

 I have a GT 520 with 9.0 amd64 and found that v304.43 refused to run
 my second monitor so I went back to v295.

Did you check the resolution of the second monitor? Here on my box, v304
does not handle any more the previous resolution used:

http://osdir.com/ml/freebsd-x11/2012-09/msg00067.html

Regards.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


How many disk in one pool

2012-10-05 Thread Albert Shih
Hi all,

I'm actually running ZFS under FreeBSD. I've a question about how many
disks I «can» have in one pool. 

At this moment I'm running with one server (FreeBSD 9.0) with 4 MD1200
(Dell) meaning 48 disks. I've configure with 4 raidz2 in the pool (one on
each MD1200)

On what I understand I can add more more MD1200. But if I loose one MD1200
for any reason I lost the entire pool. 

In your experience what's the «limit» ? 100 disk ? 

How FreeBSD manage 100 disk ? /dev/da100 ? 

Regards.

JAS

-- 
Albert SHIH
DIO bâtiment 15
Observatoire de Paris
5 Place Jules Janssen
92195 Meudon Cedex
Téléphone : 01 45 07 76 26/06 86 69 95 71
xmpp: j...@obspm.fr
Heure local/Local time:
ven 5 oct 2012 22:52:22 CEST
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: [zfs-discuss] How many disk in one pool

2012-10-05 Thread Xin Li
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On 10/05/12 13:57, Albert Shih wrote:
 Hi all,
 
 I'm actually running ZFS under FreeBSD. I've a question about how
 many disks I «can» have in one pool.
 
 At this moment I'm running with one server (FreeBSD 9.0) with 4
 MD1200 (Dell) meaning 48 disks. I've configure with 4 raidz2 in the
 pool (one on each MD1200)
 
 On what I understand I can add more more MD1200. But if I loose one
 MD1200 for any reason I lost the entire pool.
 
 In your experience what's the «limit» ? 100 disk ?
 
 How FreeBSD manage 100 disk ? /dev/da100 ?

We have real system equipped with even more than 100 disks and yes,
the devices would be named after their numbers.

One thing that you need to keep in mind: if you don't use the
zpool.cache and there are a lot of disks, the current implementation
could take very long (like several tens of minutes) for the system to
import the pool.

Another consideration is that larger pools are more vulnerable to
damages: should one vdev fails, the whole pool is gone.  So make sure
you have sufficient redundancy on every vdevs and keep in mind that
your JBOD chassis, cable, adapters are all points of failures.

Cheers,
- -- 
Xin LI delp...@delphij.nethttps://www.delphij.net/
FreeBSD - The Power to Serve!   Live free or die
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.19 (FreeBSD)

iQEcBAEBCAAGBQJQb0zjAAoJEG80Jeu8UPuzDkIH/RZ07eG9lrlg9vDoe1MEJODu
qiVSyidrCHzw53medLOInR+kOt1CJPQX61t2eVyy3oK3MdDj+INtOCGWfO2zXukp
PLWvOCzTUoE3A/cSz2KA+1QaXI5kK/CLS4Y0NII7ibwKP7g8/17mvJqCg+UQup3K
Y3+t0+QTL9iSOtMtrgdL3ft/5DnjoU10RlKhDzjevRwNTaO+cmcr9AW5RnINTUrD
Ig1Zv3rOu+wc0hJ2pDIT8+LC6lIhjmGBi5e3iow5tf3P5VgVRbNAGufFtmVloO1q
tPVJyxK+yWK0+5FIXeeKuVeVbDGmpdtwe2+xpqbd2pnLb6Swh8jLD3ojJwAF4r4=
=HacZ
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


RE: [zfs-discuss] How many disk in one pool

2012-10-05 Thread Edward Ned Harvey (opensolarisisdeadlongliveopensolaris)
 From: zfs-discuss-boun...@opensolaris.org [mailto:zfs-discuss-
 boun...@opensolaris.org] On Behalf Of Albert Shih
 
 I'm actually running ZFS under FreeBSD. I've a question about how many
 disks I can have in one pool.
 
 At this moment I'm running with one server (FreeBSD 9.0) with 4 MD1200
 (Dell) meaning 48 disks. I've configure with 4 raidz2 in the pool (one on
 each MD1200)
 
 On what I understand I can add more more MD1200. But if I loose one
 MD1200
 for any reason I lost the entire pool.
 
 In your experience what's the limit ? 100 disk ?
 
 How FreeBSD manage 100 disk ? /dev/da100 ?

Correct about if you lose one storage tray you lose the pool.  Ideally you 
would span your redundancy across trays as well as across disks - but in your 
situation, 12 disks in raidz2 - and 4 trays - it's just not realistic for you.  
You would have to significantly increase cost (not to mention rebuild pool) in 
order to keep the same available disk space and gain the redundancy.

Go ahead and add more trays.  I've never heard of any limit of number of disks 
you can have in ZFS.  I'm sure there is a limit, but whatever it is, you're 
nowhere near it.

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


Re[2]: cksum entire dir??

2012-10-05 Thread Австин Ким
Thu, 4 Oct 2012 22:28:03 -0400 от Mike Jeays mike.je...@rogers.com:
 
 rsync --dry-run may be a simple solution that would meet your needs? You 
 might need to add the --delete option.
 
 Take another look at man rsync.

Yeah, that's exactly what I was looking for!  Or to be precise:

rsync -acinv --delete remote.example.com:Directory 
ParentOfCorrespondingDirectoryOnLocalhost

(The point here being that I was looking for a tool to help me check to see if 
directories on two separate hosts be in sync, rather than forcibly to sync 
unidirectionally, as some files are newer on one side and vice versa.)

Thanks!

--Austin___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

freebsd-update

2012-10-05 Thread Doug Hardie
I am using freebsd-update to update a system running a generic kernel.  I ran 
into an interesting situation where after it has downloaded the updates it 
enters a configuration phase where it shows updated config files with the old 
and new.  You can hit return to enter vi and clean up the file.  After that you 
get to a selection of files where you only get the question does this look 
reasonable?  Your options are Y or N.  Y makes the changes and N just 
terminates the entire update forcing you to start over again from the 
beginning.  Why can't you correct issues with those config files?  Why bother 
to even ask if there is only one possible response 
(Y)?___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: [zfs-discuss] How many disk in one pool

2012-10-05 Thread Richard Elling
On Oct 5, 2012, at 1:57 PM, Albert Shih albert.s...@obspm.fr wrote:

 Hi all,
 
 I'm actually running ZFS under FreeBSD. I've a question about how many
 disks I «can» have in one pool. 
 
 At this moment I'm running with one server (FreeBSD 9.0) with 4 MD1200
 (Dell) meaning 48 disks. I've configure with 4 raidz2 in the pool (one on
 each MD1200)
 
 On what I understand I can add more more MD1200. But if I loose one MD1200
 for any reason I lost the entire pool. 
 
 In your experience what's the «limit» ? 100 disk ? 

I can't speak for current FreeBSD, but I've seen more than 400
disks (HDDs) in a single pool.

 -- richard

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


Re: a wireless network freezes the machine?

2012-10-05 Thread Victor Sudakov
Victor Sudakov wrote:
 
  
  Is it possible that wpa_supplicant or some other part of the WiFi
  setup causes the hangs? Nothing else has changed in the system besides
  its role from the access point to a WiFi client.
 
 Actually, kern/170066 may be related, but it's different hardware and
 in my case, the box does not freeze immediately at wpa_supplicant's
 start, though it does freeze eventually, especially if there is some
 load on the video subsystem (Intel SandyBridge with the recent
 x11-drivers/xf86-video-intel) like watching a movie.

Now after a period of observation I am sure that it is the
wpa_supplicant which freezes the machine.  And this happens only when
wpa_supplicant cannot associate with a configured access point.

If the access point is online and available, everything works fine for
hours. 

-- 
Victor Sudakov,  VAS4-RIPE, VAS47-RIPN
sip:suda...@sibptus.tomsk.ru
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org