Consult

2012-05-17 Thread Diego Nahuel Martinez
Hi team,
 
I would like to know if 8.2R of BSD supports IBM Power P5 processors.
So far I read below
http://www.freebsd.org/releases/8.2R/hardware.html#PROC-POWERPC
that there is some support but not sure which processor that is.
 
Regards,
 
Diego Martinez
 
 
 
Saludos,

Diego N. Martinez

Unixware  Middleware
Metrogas S.A. 

Tel: (+54)  11 4309-1677
Fax: (+54) 11 4309-1662 


*
¡IMPORTANTE!
Para evitar accidentes por inhalación de monóxido de carbono:
- Mantenga los ambientes ventilados en forma permanente.
- Revise que la llama sea color azul y uniforme.
- Instale y haga revisar periódicamente sus artefactos sólo a través de 
gasistas matriculados.
Recuerde que los artefactos a gas pueden emitir Monóxido de Carbono: un gas 
altamente tóxico e imperceptible.
Más consejos en http://www.metrogas.com.ar
*
Este mensaje es privado y confidencial y va dirigido sólo al destinatario 
indicado. Si lo ha recibido por error, por favor avísenos inmediatamente vía 
e-mail a error-m...@metrogas.com.ar y tenga la amabilidad de eliminarlo de su 
sistema. La utilización o divulgación de su contenido puede importar la 
comisión de un delito. No copie, reproduzca o divulgue -en forma parcial o 
total- su contenido. Cualquier opinión contenida, es exclusiva de su autor y no 
representa la opinión de MetroGAS S.A. - Muchas gracias.
This message is private and confidential and it is only intended for the 
addressee named above. If you have received this message and it is not 
addressed to you, please advise us immediately at error-m...@metrogas.com.ar 
and kindly remove it from your system. The use or disclosure of its contents 
may be regarded as an offense. Do not copy, reproduce or disclose them, either 
partially or fully. Opinions are the exclusive responsibility of the author and 
do not represent the opinion of MetroGAS S.A. - Thank you.
:: http://www.metrogas.com.ar

___
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


MySQL Error: Can't create a new thread (errno 35); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug

2008-09-23 Thread Sam Nilsson

Hello,

The error message: Can't create a new thread (errno 35); if you are not 
out of available memory, you can consult the manual for a possible 
OS-dependent bug


Our website started getting this error several weeks ago (when we 
increased the number of application server machines connecting to the 
database from 5 to 7.  It seems to happen anywhere from every 2 days to 
once a week, there does not seem to be a consistent pattern.  Our CPU 
utilization, memory utilization,  and number of HTTP Requests seem to be 
at normal (they are no where closed to being maxed out).  When this 
error happens we CAN log onto the server with the MySQL database, but I 
CAN NOT use the mysql client to connect to the mysql database (localhost 
connection as root) - it reports the error mentioned above.   The way we 
temporarily solve the problem is to restart one of our web servers.


Here is our technology stack:

Web Servers: 7, Each server has:
  4 Gb of Memory on each server
  FreeBSD 6.2-RELEASE-p9
  2.4 GHz CPU
  Apache 2.2
  Webware for Python
  Python 2.5

DB Servers: One Master, Two Read Only (replication)
  4 GB of Memory on each server
  FreeBSD 6.3-RELEASE-p3 FreeBSD 6.3-RELEASE-p3
  MySQL 5.0.1


We have tried bumping up our number of max allowed connections (up to 
1000) on MySQL and kern.ssize to 512Mb for FreeBSD.   That did not help. 
 The max connections usually hovers ~300, so it does not even get close 
to the 1000 we have set.  Finally the last place that we have looked is 
the openfiles, it is set at 20,000 for the whole system, with 14K per 
process on the FreeBSD operating system.



Here are some relevent items from my.cnf:
 - set-variable = max_connections=1000
 - set-variable = key_buffer_size=384M
 - set-variable = read_buffer_size=64M
 - set-variable = read_rnd_buffer_size=32M
 - set-variable = thread_cache_size=20

Any help would be much appreciated.

Thanks
- Sam Nilsson


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


Re: MySQL Error: Can't create a new thread (errno 35); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug

2008-09-23 Thread Vincent Hoffman
Sam Nilsson wrote:
 Hello,

 The error message: Can't create a new thread (errno 35); if you are
 not out of available memory, you can consult the manual for a possible
 OS-dependent bug

 Our website started getting this error several weeks ago (when we
 increased the number of application server machines connecting to the
 database from 5 to 7.  It seems to happen anywhere from every 2 days
 to once a week, there does not seem to be a consistent pattern.  Our
 CPU utilization, memory utilization,  and number of HTTP Requests seem
 to be at normal (they are no where closed to being maxed out).  When
 this error happens we CAN log onto the server with the MySQL database,
 but I CAN NOT use the mysql client to connect to the mysql database
 (localhost connection as root) - it reports the error mentioned
 above.   The way we temporarily solve the problem is to restart one of
 our web servers.

 Here is our technology stack:

 Web Servers: 7, Each server has:
   4 Gb of Memory on each server
   FreeBSD 6.2-RELEASE-p9
   2.4 GHz CPU
   Apache 2.2
   Webware for Python
   Python 2.5

 DB Servers: One Master, Two Read Only (replication)
   4 GB of Memory on each server
   FreeBSD 6.3-RELEASE-p3 FreeBSD 6.3-RELEASE-p3
   MySQL 5.0.1


 We have tried bumping up our number of max allowed connections (up to
 1000) on MySQL and kern.ssize to 512Mb for FreeBSD.   That did not
 help.  The max connections usually hovers ~300, so it does not even
 get close to the 1000 we have set.  Finally the last place that we
 have looked is the openfiles, it is set at 20,000 for the whole
 system, with 14K per process on the FreeBSD operating system.


 Here are some relevent items from my.cnf:
  - set-variable = max_connections=1000
  - set-variable = key_buffer_size=384M
  - set-variable = read_buffer_size=64M
  - set-variable = read_rnd_buffer_size=32M
  - set-variable = thread_cache_size=20

 Any help would be much appreciated.

 Thanks
 - Sam Nilsson

If you havent already, you could try increasing the per process memory
limit as per examples in
http://unix.derkeiler.com/Mailing-Lists/FreeBSD/hackers/2008-05/msg00258.html
(man tuning also says a bit about these tuneables but doesnt have the
examples that post does)


Vince

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [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: MySQL Error: Can't create a new thread (errno 35); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug

2008-09-23 Thread Mel
On Tuesday 23 September 2008 12:13:58 Sam Nilsson wrote:

 DB Servers: One Master, Two Read Only (replication)
4 GB of Memory on each server
FreeBSD 6.3-RELEASE-p3 FreeBSD 6.3-RELEASE-p3
MySQL 5.0.1

 Here are some relevent items from my.cnf:
   - set-variable = max_connections=1000
   - set-variable = key_buffer_size=384M
   - set-variable = read_buffer_size=64M
   - set-variable = read_rnd_buffer_size=32M
   - set-variable = thread_cache_size=20

You're shooting yourself in the foot:
1000*2MB=2G for thread stack
+ 384M
+ 1000 * (sort_buffer_size+64M+binlog_cache_size_innodb)

You don't have that much memory.
http://dev.mysql.com/doc/refman/5.0/en/innodb-configuration.html

There's a similar formula for MyISAM, but can't seem to find it at the moment.


-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: MySQL Error: Can't create a new thread (errno 35); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug

2008-09-23 Thread Sam Nilsson

Vincent Hoffman wrote:

If you havent already, you could try increasing the per process memory
limit as per examples in
http://unix.derkeiler.com/Mailing-Lists/FreeBSD/hackers/2008-05/msg00258.html
(man tuning also says a bit about these tuneables but doesnt have the
examples that post does)


Vince


Hi Vince,

Thanks for the advice. We have already raised the memory limits:

kern.maxdsiz=1843M # 1.8GB
kern.dfldsiz=1843M # 1.8GB

Any other ideas?

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


Re: FreeBSD Server Settings Consult

2008-05-03 Thread Free BSD
4 GB physical ram but only 3GB usable via System.
AMD X2 64 3800+ (2 CPUs)

i386 Platform

# pciconf -lv|grep ^none
[EMAIL PROTECTED]:0:17:5:  class=0x040100 card=0x0c84105b chip=0x30591106
rev=0x60 hdr=0x00


Only difference is IPFW/Quota/Device Polling/2000HZ


On 6.3 (now on 7) it was having random crashes 1-7 days at a time and did
not produce a kernel dump.


Web/IRC Hosting server

All Sysctls are there from researching the internet for suggested values.




# cat /etc/sysctl.conf

kern.ipc.maxsockbuf=1048576

net.inet.tcp.sendspace=125000
net.inet.tcp.recvspace=125000


net.local.stream.recvspace=65536
net.local.stream.sendspace=65536
net.inet.udp.recvspace=65536
net.inet.udp.maxdgram=65535

kern.ipc.somaxconn=2048
kern.maxvnodes=132072
kern.maxfiles=32768
kern.maxfilesperproc=32768


net.inet.tcp.msl=7500
net.inet.tcp.mssdflt=1460
security.bsd.see_other_uids=0
security.bsd.see_other_gids=0
kern.fallback_elf_brand=3

net.inet.tcp.newreno=0
net.inet.ip.intr_queue_maxlen=1024


net.inet.tcp.rfc1323=1
net.inet.tcp.delayed_ack=0
net.inet.ip.check_interface=0

net.inet.icmp.bmcastecho=0
net.inet.icmp.maskrepl=0
net.inet.icmp.icmplim=500

net.inet.icmp.drop_redirect=1
net.inet.icmp.log_redirect=0

net.inet.ip.rtexpire=2

net.inet.ip.rtmaxcache=1024


net.inet.ip.rtminexpire=2
net.inet.tcp.blackhole=2
net.inet.tcp.icmp_may_rst=0
net.inet.tcp.inflight.enable=0
net.inet.tcp.log_in_vain=0
net.inet.tcp.sack.enable=1
net.inet.udp.blackhole=1
net.inet.udp.log_in_vain=0
net.link.ether.inet.log_arp_wrong_iface=0

# cat /boot/loader.conf
kern.ipc.maxsockets=32768

kern.ipc.nmbclusters=81920


kern.ipc.nmbufs=131072
kern.ipc.shm_use_phys=1
kern.maxproc=8192
net.inet.tcp.tcbhashsize=16384

kern.maxfiles=32768
kern.maxfilesperproc=32768
accf_http_load=YES



Copyright (c) 1992-2008 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 7.0-STABLE #0: Fri May  2 12:52:50 CDT 2008
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/THE-IRC
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ (2000.79-MHz 686-class
CPU)
  Origin = AuthenticAMD  Id = 0x40fb2  Stepping = 2

Features=0x178bfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,SSE,SSE2,HTT
  Features2=0x2001SSE3,CX16
  AMD Features=0xea500800SYSCALL,NX,MMX+,FFXSR,RDTSCP,LM,3DNow!+,3DNow!
  AMD Features2=0x1fLAHF,CMP,SVM,ExtAPIC,CR8
  Cores per package: 2
real memory  = 3152936960 (3006 MB)
avail memory = 3078762496 (2936 MB)
ACPI APIC Table: K8M890 AWRDACPI
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
ioapic0: Changing APIC ID to 2
ioapic0 Version 0.3 irqs 0-23 on motherboard
ioapic1 Version 0.3 irqs 24-47 on motherboard
kbd1 at kbdmux0
ath_hal: 0.9.20.3 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413)
acpi0: K8M890 AWRDACPI on motherboard
acpi0: [ITHREAD]
acpi0: Power Button (fixed)
acpi0: reservation of 0, a (3) failed
acpi0: reservation of 10, bbde (3) failed
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x408-0x40b on acpi0
cpu0: ACPI CPU on acpi0
powernow0: PowerNow! K8 on cpu0
cpu1: ACPI CPU on acpi0
powernow1: PowerNow! K8 on cpu1
acpi_button0: Power Button on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pcib1: PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
vgapci0: VGA-compatible display mem
0xc000-0xcfff,0xdd00-0xddff irq 16 at device 0.0 on pci1
pcib2: ACPI PCI-PCI bridge irq 27 at device 2.0 on pci0
pci2: ACPI PCI bus on pcib2
pcib3: ACPI PCI-PCI bridge irq 31 at device 3.0 on pci0
pci3: ACPI PCI bus on pcib3
rl0: RealTek 8139 10/100BaseTX port 0xf200-0xf2ff mem
0xd000-0xd0ff irq 19 at device 9.0 on pci0
miibus0: MII bus on rl0
rlphy0: RealTek internal media interface PHY 0 on miibus0
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
rl0: Ethernet address: 00:15:58:61:20:4c
rl0: [ITHREAD]
atapci0: VIA 6420 SATA150 controller port
0xff00-0xff07,0xfe00-0xfe03,0xfd00-0xfd07,0xfc00-0xfc03,0xfb00-0xfb0f,0xf400-0xf4ff
irq 20 at device 15.0 on pci0
atapci0: [ITHREAD]
ata2: ATA channel 0 on atapci0
ata2: [ITHREAD]
ata3: ATA channel 1 on atapci0
ata3: [ITHREAD]
atapci1: VIA 8237 UDMA133 controller port
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfa00-0xfa0f at device 15.1 on pci0
ata0: ATA channel 0 on atapci1
ata0: [ITHREAD]
ata1: ATA channel 1 on atapci1
ata1: [ITHREAD]
uhci0: VIA 83C572 USB controller port 0xf900-0xf91f irq 21 at device 16.0
on pci0
uhci0: [GIANT-LOCKED]
uhci0: [ITHREAD]
usb0: VIA 83C572 USB controller on uhci0
usb0: USB revision 1.0
uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 on usb0
uhub0: 2 ports with 2 removable, self powered
uhci1: VIA 83C572 USB 

Re: FreeBSD Server Settings Consult

2008-05-03 Thread Patrick Clochesy
This is a 64-bit platform... Any reasons you're on an i386 kernel? At  
the least it would fix your RAM issue.


-Patrick

On May 3, 2008, at 3:56 PM, Free BSD [EMAIL PROTECTED] wrote:


4 GB physical ram but only 3GB usable via System.
AMD X2 64 3800+ (2 CPUs)

i386 Platform

# pciconf -lv|grep ^none
[EMAIL PROTECTED]:0:17:5:  class=0x040100 card=0x0c84105b chip=0x30591106
rev=0x60 hdr=0x00


Only difference is IPFW/Quota/Device Polling/2000HZ


On 6.3 (now on 7) it was having random crashes 1-7 days at a time  
and did

not produce a kernel dump.


Web/IRC Hosting server

All Sysctls are there from researching the internet for suggested  
values.





# cat /etc/sysctl.conf

kern.ipc.maxsockbuf=1048576

net.inet.tcp.sendspace=125000
net.inet.tcp.recvspace=125000


net.local.stream.recvspace=65536
net.local.stream.sendspace=65536
net.inet.udp.recvspace=65536
net.inet.udp.maxdgram=65535

kern.ipc.somaxconn=2048
kern.maxvnodes=132072
kern.maxfiles=32768
kern.maxfilesperproc=32768


net.inet.tcp.msl=7500
net.inet.tcp.mssdflt=1460
security.bsd.see_other_uids=0
security.bsd.see_other_gids=0
kern.fallback_elf_brand=3

net.inet.tcp.newreno=0
net.inet.ip.intr_queue_maxlen=1024


net.inet.tcp.rfc1323=1
net.inet.tcp.delayed_ack=0
net.inet.ip.check_interface=0

net.inet.icmp.bmcastecho=0
net.inet.icmp.maskrepl=0
net.inet.icmp.icmplim=500

net.inet.icmp.drop_redirect=1
net.inet.icmp.log_redirect=0

net.inet.ip.rtexpire=2

net.inet.ip.rtmaxcache=1024


net.inet.ip.rtminexpire=2
net.inet.tcp.blackhole=2
net.inet.tcp.icmp_may_rst=0
net.inet.tcp.inflight.enable=0
net.inet.tcp.log_in_vain=0
net.inet.tcp.sack.enable=1
net.inet.udp.blackhole=1
net.inet.udp.log_in_vain=0
net.link.ether.inet.log_arp_wrong_iface=0

# cat /boot/loader.conf
kern.ipc.maxsockets=32768

kern.ipc.nmbclusters=81920


kern.ipc.nmbufs=131072
kern.ipc.shm_use_phys=1
kern.maxproc=8192
net.inet.tcp.tcbhashsize=16384

kern.maxfiles=32768
kern.maxfilesperproc=32768
accf_http_load=YES



Copyright (c) 1992-2008 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993,  
1994

   The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 7.0-STABLE #0: Fri May  2 12:52:50 CDT 2008
   [EMAIL PROTECTED]:/usr/obj/usr/src/sys/THE-IRC
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ (2000.79-MHz 686- 
class

CPU)
 Origin = AuthenticAMD  Id = 0x40fb2  Stepping = 2

Features= 
0x178bfbff 
FPU, 
VME, 
DE, 
PSE, 
TSC, 
MSR, 
PAE, 
MCE, 
CX8, 
APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,SSE,SSE2,HTT

 Features2=0x2001SSE3,CX16
 AMD Features=0xea500800SYSCALL,NX,MMX+,FFXSR,RDTSCP,LM,3DNow!+, 
3DNow!

 AMD Features2=0x1fLAHF,CMP,SVM,ExtAPIC,CR8
 Cores per package: 2
real memory  = 3152936960 (3006 MB)
avail memory = 3078762496 (2936 MB)
ACPI APIC Table: K8M890 AWRDACPI
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
cpu0 (BSP): APIC ID:  0
cpu1 (AP): APIC ID:  1
ioapic0: Changing APIC ID to 2
ioapic0 Version 0.3 irqs 0-23 on motherboard
ioapic1 Version 0.3 irqs 24-47 on motherboard
kbd1 at kbdmux0
ath_hal: 0.9.20.3 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413,  
RF5413)

acpi0: K8M890 AWRDACPI on motherboard
acpi0: [ITHREAD]
acpi0: Power Button (fixed)
acpi0: reservation of 0, a (3) failed
acpi0: reservation of 10, bbde (3) failed
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x408-0x40b on acpi0
cpu0: ACPI CPU on acpi0
powernow0: PowerNow! K8 on cpu0
cpu1: ACPI CPU on acpi0
powernow1: PowerNow! K8 on cpu1
acpi_button0: Power Button on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pcib1: PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
vgapci0: VGA-compatible display mem
0xc000-0xcfff,0xdd00-0xddff irq 16 at device 0.0 on  
pci1

pcib2: ACPI PCI-PCI bridge irq 27 at device 2.0 on pci0
pci2: ACPI PCI bus on pcib2
pcib3: ACPI PCI-PCI bridge irq 31 at device 3.0 on pci0
pci3: ACPI PCI bus on pcib3
rl0: RealTek 8139 10/100BaseTX port 0xf200-0xf2ff mem
0xd000-0xd0ff irq 19 at device 9.0 on pci0
miibus0: MII bus on rl0
rlphy0: RealTek internal media interface PHY 0 on miibus0
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
rl0: Ethernet address: 00:15:58:61:20:4c
rl0: [ITHREAD]
atapci0: VIA 6420 SATA150 controller port
0xff00- 
0xff07,0xfe00-0xfe03,0xfd00-0xfd07,0xfc00-0xfc03,0xfb00-0xfb0f, 
0xf400-0xf4ff

irq 20 at device 15.0 on pci0
atapci0: [ITHREAD]
ata2: ATA channel 0 on atapci0
ata2: [ITHREAD]
ata3: ATA channel 1 on atapci0
ata3: [ITHREAD]
atapci1: VIA 8237 UDMA133 controller port
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfa00-0xfa0f at device 15.1 on  
pci0

ata0: ATA channel 0 on atapci1
ata0: [ITHREAD]
ata1: ATA channel 1 on atapci1
ata1: [ITHREAD]
uhci0: VIA 83C572 USB controller port 0xf900-0xf91f irq 21 at  
device 16.0

on pci0

FreeBSD Server Settings Consult

2008-05-02 Thread Free BSD
We've been having some problems with our server and I was wondering if
someone had any advice or suggestions for our current system settings.

# cat /etc/sysctl.conf

kern.ipc.maxsockbuf=1048576
net.inet.tcp.sendspace=65536
net.inet.tcp.recvspace=65536
net.local.stream.recvspace=65536
net.local.stream.sendspace=65536
net.inet.udp.recvspace=65536
net.inet.udp.maxdgram=65535
kern.ipc.somaxconn=8192
kern.maxvnodes=132072
kern.maxfiles=65535
kern.maxfilesperproc=65536
net.inet.tcp.msl=7500
net.inet.tcp.mssdflt=1460
security.bsd.see_other_uids=0
security.bsd.see_other_gids=0
kern.fallback_elf_brand=3
net.inet.tcp.newreno=1
net.inet.tcp.rfc1323=1
net.inet.tcp.delayed_ack=0
net.inet.ip.check_interface=0
vfs.vmiodirenable=1
net.inet.ip.portrange.randomized=1
net.inet.icmp.bmcastecho=0
net.inet.icmp.maskrepl=0
net.inet.icmp.icmplim=500
kern.randompid=89061
net.inet.icmp.drop_redirect=1
net.inet.icmp.log_redirect=0
net.inet.ip.random_id=89061
net.inet.ip.rtexpire=2
net.inet.ip.rtmaxcache=256
net.inet.ip.rtminexpire=2
net.inet.tcp.blackhole=2
net.inet.tcp.icmp_may_rst=0
net.inet.tcp.inflight.enable=0
net.inet.tcp.log_in_vain=0
net.inet.tcp.sack.enable=1
net.inet.udp.blackhole=1
net.inet.udp.log_in_vain=0
net.link.ether.inet.log_arp_wrong_iface=0
net.link.ether.inet.max_age=1200


# cat /boot/loader.conf

kern.ipc.maxsockets=32768
kern.ipc.nmbclusters=32768
kern.ipc.nmbufs=131072
kern.ipc.shm_use_phys=1
kern.maxproc=8192
net.inet.tcp.tcbhashsize=16384
kern.maxfiles=65535
kern.maxfilesperproc=65536

# cat /etc/rc.conf (minus networking)

clear_tmp_enable=YES
update_motd=NO
tcp_extensions=YES
firewall_enable=YES
firewall_script=/etc/ipfw.rules
linux_enable=YES
sshd_enable=NO
usbd_enable=NO

fsck_y_enable=YES
oidentd_enable=YES
pureftpd_enable=no

syslogd_enable=YES
syslogd_flags=-ss

ntpd_enable=YES
ntpd_flags=-4 -p/var/run/ntpd.pid
tcp_keepalive=YES
icmp_bmcastecho=NO
icmp_bandlim==YES

portmap_enable=NO
icmp_drop_redirect=YES
quota_enable=YES
check_quotas=YES
#accounting_enable=YES
named_program=/usr/sbin/named
named_flags=-u bind -c /etc/namedb/named.conf
named_enable=YES
local_startup=/usr/local/etc/rc.d
openssh_enable=YES
openssh_flags=-4 -f/etc/ssh/sshd_config
openssh_pidfile=/var/run/sshd.pid
sendmail_enable=NO
network_interfaces=rl0 lo0
webmin_enable=YES
dumpdev=AUTO
dumpdir=/var/crash
courier_imap_imapd_enable=YES
courier_imap_imapd_ssl_enable=YES
courier_imap_pop3d_enable=YES
courier_imap_pop3d_ssl_enable=YES
courier_authdaemond_enable=YES
tor_enable=NO
chkservd_enable=YES
apop3d_enable=NO
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD Server Settings Consult

2008-05-02 Thread Bob Hall
On Fri, May 02, 2008 at 07:28:44AM -0400, Free BSD wrote:
 We've been having some problems with our server and I was wondering if
 someone had any advice or suggestions for our current system settings.

You'll probably get more help if you post the problems and any
diagnostic info. :)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD Server Settings Consult

2008-05-02 Thread Free BSD
Well from bad experience that goes no where, due-to rare issue and no
supporting logs/core dumps... Therefore that be a complete no :(

On Fri, May 2, 2008 at 11:30 AM, Bob Hall [EMAIL PROTECTED] wrote:

 On Fri, May 02, 2008 at 07:28:44AM -0400, Free BSD wrote:
  We've been having some problems with our server and I was wondering if
  someone had any advice or suggestions for our current system settings.

 You'll probably get more help if you post the problems and any
 diagnostic info. :)
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 [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: FreeBSD Server Settings Consult

2008-05-02 Thread Mel
On Friday 02 May 2008 13:28:44 Free BSD wrote:
 We've been having some problems with our server and I was wondering if
 someone had any advice or suggestions for our current system settings.

Would help to know, at minimum:
- ammount of ram
- ammount of cpu's
- platform (uname -m )
- pciconf -lv|grep ^none
- dmesg output that complains about hardware
- what's different about your kernel with respect to GENERIC

What the problems are:
- from the sysctl variables, I'm guessing you want more network performance
- you mention core dumps, does the kernel crash?

Some background:
- what's the primary purpose of the machine
- why are things like ipc tuned?


 kern.maxfilesperproc=65536

The above will only work with programs that use open(2) exclusively and not 
fopen, because fopen is limited to SHRT_MAX, being 32767.


-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Research About FreeSBD , consult

2007-09-27 Thread Sanchez, Danilo
Daniel 

Thanks very much for your support I really appreciate it. 

I have a 2nd level of questions more related to the current domain of
FreeBSD in the market (% of participation , mindshare , competitive
advantages, others) 

Is there a contact within your Organization I can call/contact to talk
about it please. I would like to interview him/her 

Kind Regards, 

Danilo B. Sanchez M.
MBA Candidate '08 
F.W. Olin Graduate School of Business 
Babson College 
[EMAIL PROTECTED] 
Phone: 781-879-2445


-Original Message-
From: Daniel Gerzo [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 27, 2007 2:37 AM
To: Sanchez, Danilo
Cc: freebsd-questions@FreeBSD.org
Subject: Re: Research About FreeSBD

Hello Danilo,

Thursday, September 27, 2007, 8:12:59 AM, you wrote:

 Good Night !

 I am working on an Open Source Project and specifically I am
researching
 about Freebsd as a Company. I would like to know more about your
current
 market position , financial performance , etc.

 Can I find this information in your web page or may be contact
somebody
 in your Organization ? 

Although FreeBSD is not a company, you will find some financial
information and some other things about the project at
http://www.freebsdfoundation.org/.

-- 
Best regards,
 Danielmailto:[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: Research About FreeSBD , consult

2007-09-27 Thread Wojciech Puchar

Daniel

Thanks very much for your support I really appreciate it.

I have a 2nd level of questions more related to the current domain of
FreeBSD in the market (% of participation , mindshare , competitive
advantages, others)


the answers are lots, lots a lot of and a lot of.
as FreeBSD (name says it clearly) is FREE, we can't talk about percents of 
market unless you precisely define percent of what.


percent of computers - nonsense measure, as it prefers ones that needs 100 
computers to do work of 1 properly used computer.
percent of work done - define what work exactly? you should define the 
counting method like doing this - 5 points, doing that 3 points etc..

percent of others?

please define clearly.

the only clear answer is what i can say about me - i use only FreeBSD



Is there a contact within your Organization I can call/contact to talk
about it please. I would like to interview him/her


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


Re[2]: Research About FreeSBD , consult

2007-09-27 Thread Daniel Gerzo
Hello Danilo,

Thursday, September 27, 2007, 3:33:21 PM, you wrote:

 Daniel 

 Thanks very much for your support I really appreciate it.

You are welcome.

 I have a 2nd level of questions more related to the current domain of
 FreeBSD in the market (% of participation , mindshare , competitive
 advantages, others) 

 Is there a contact within your Organization I can call/contact to talk
 about it please. I would like to interview him/her

You will find contact information at:
http://www.freebsd.org/administration.html and
http://www.freebsdfoundation.org/contact.shtml


-- 
Best regards,
 Danielmailto:[EMAIL PROTECTED]

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