similar to: [AVS] Question concerning reverse synchronization of a zpool

Displaying 20 results from an estimated 600 matches similar to: "[AVS] Question concerning reverse synchronization of a zpool"

2007 Dec 04
2
X4500 ILOM thinks disk 20 is faulted, ZFS thinks not.
Hey Guys, Have any of y''all seen a condition where the ILOM considers a disk faulted (status is 3 instead of 1), but ZFS keeps writing to the disk and doesn''t report any errors? I''m going to do a scrub tomorrow and see what comes back. I''m curious what caused the ILOM to fault the disk. Any advice is greatly appreciated. Best Regards, Jason P.S. The system is
2007 Aug 21
12
Is ZFS efficient for large collections of small files?
Is ZFS efficient at handling huge populations of tiny-to-small files - for example, 20 million TIFF images in a collection, each between 5 and 500k in size? I am asking because I could have sworn that I read somewhere that it isn''t, but I can''t find the reference. Thanks, Brian -- - Brian Gupta http://opensolaris.org/os/project/nycosug/
2008 May 13
6
variable name containing variable name
Hello, i''m new to puppet (and ruby). I have a problem when using a variable name containing a variable name and containing a reserved variable name : I have a class : class kernel-Linux-binary { $test = $operatingsystem ? { Fedora => "/usr/bin/test", default => undef } } and i want to call "test" and replace Linux by
2007 Sep 04
23
I/O freeze after a disk failure
Hi all, yesterday we had a drive failure on a fc-al jbod with 14 drives. Suddenly the zpool using that jbod stopped to respond to I/O requests and we get tons of the following messages on /var/adm/messages: Sep 3 15:20:10 fb2 scsi: [ID 107833 kern.warning] WARNING: /scsi_vhci/disk at g20000004cfd81b9f (sd52): Sep 3 15:20:10 fb2 SCSI transport failed: reason ''timeout'':
2010 Feb 15
2
anyone using pxelinux.0 > 3.36 successfully with HP DLXXX G3, G5?
Hello * this morning I tried to upgrade from pxelinux 3.11 to 3.84 and discovered that the localboot stuff does not work on HP DL360 G3 and G5. The latest syslinux Version I found with a working localboot is 3.36. pxelinux.cfg/default: default harddisk prompt 1 label harddisk localboot 0 implicit 0 timeout 250 This so simple, it should just work, shouldn't it? The
2011 Apr 19
2
How do I enable dmidecode and sysdump
It say to give a copy of dmidecode or sysdump if I need to use localboot -1 pxelinux.0 worked with localboot 0 but gpxelinux.0 didn't it needed localboot -1 This was on my hp machines
2010 Mar 08
0
results for pxelinux-4.00-pre36 on HP DL360G6 and DL360G4p
Hello, just tried gpxelinux-4.00-pre36, but don't receive any output console when running disk.c32 or chain.c32. Could you please have a look in the sysdump I mailed earlier. Thanks in advance Thomas -- Thomas Mieslinger IT Operations Core Infrastructure Services Telefon: +49-721-91374-4404 E-Mail: thomas.mieslinger at 1und1.de 1&1 Internet AG Brauerstra?e 48 76135 Karlsruhe
2007 Jun 15
3
zfs and EMC
Hi there, have a strange behavior if i?ll create a zfs pool at an EMC PowerPath pseudo device. I can create a pool on emcpower0a but not on emcpower2a zpool core dumps with invalid argument .... ???? Thats my second maschine with powerpath and zfs the first one works fine, even zfs/powerpath and failover ... Is there anybody who has the same failure and a solution ? :) Greets Dominik
2010 Feb 21
1
SYSLINUX 3.85 released
Syslinux 3.85 is a bug fix and minor new feature release. The biggest change is undoubtedly that gPXELINUX is now considered feature complete, and should be able to be a drop-in for PXELINUX for all uses. Special thanks to Intel Corporation, my current employer, for their support for my Syslinux work. Changes in 3.85: * gPXELINUX: updated to gPXE 1.0.0. gPXELINUX can now do NBP
2010 Mar 05
4
Syslinux 3.85 chain.c32 problem solved
Thanks to debugging information from Thomas Mieslinger, I have root-caused the failure of chain.c32 in Syslinux 3.85. I have put out Syslinux 3.86-pre1 and Syslinux 4.00-pre33 which fix the problem. I expect to release a Syslinux 3.86 relatively shortly (ideally in the next two weeks), with bug fixes only. I would like to figure out if there are other bug fixes we can get in in reasonable time,
2008 Feb 15
38
Performance with Sun StorageTek 2540
Under Solaris 10 on a 4 core Sun Ultra 40 with 20GB RAM, I am setting up a Sun StorageTek 2540 with 12 300GB 15K RPM SAS drives and connected via load-shared 4Gbit FC links. This week I have tried many different configurations, using firmware managed RAID, ZFS managed RAID, and with the controller cache enabled or disabled. My objective is to obtain the best single-file write performance.
2008 Apr 07
10
setting environment variables
Hi all, I''m running Puppet on FreeBSD and recently I started building my own packages. I would like to set the PKGROOT variable on all hosts so that packages are fetched from my server instead of freebsd.org. Is it possible to set this with puppet? I''ve read the suggestion on Trac [1], and it solves the problem when puppet is run with an rc script, but it won''t work
2007 Aug 21
0
ZFS/NFS - SC 3.2 and AVS - HOWTO [SOLVED]
Hello, I will try to concentrate in this post the informations about the configurations that i''m deploying, thinking that it should be usefull for somebody else.. The objective of my tests is: High Availability services with ZFS/NFS on solaris 10 using a two-node Sun Cluster. The scenarios are two: 1) Using "shared discs" (global devices). 2) Using "non-shared
2009 Nov 14
3
authlogic fails on existing accounts when crypted_password is blank
I recently ran a migration to add the following to an existing user model: t.string "crypted_password" t.string "password_salt" t.string "persistence_token" There is an existing (cleartext) password field, but authlogic doesn''t seem to be reading that on existing accounts. As a result, all logins for existing accounts fail. How can I get
2009 Nov 20
3
Proper usage of identify(label)
I was reading this page: http://api.rubyonrails.org/classes/Fixtures.html#M000326 and was trying to get hashed labels working. However, calling it from within a unit test results in this error: def test_defaults_to_disabled identify(''one'') end 2) Error: test_defaults_to_disabled(AdminTest): NoMethodError: undefined method `identify'' for
2009 Nov 20
3
Ensuring that foreign key is valid
I am trying to set up a validation in a model to ensure that a record can''t be saved unless the foreign key it belongs_to is a valid record. My model says: class Admin < ActiveRecord::Base validates_presence_of :user_id validates_numericality_of :user_id validates_uniqueness_of :user_id validates_associated :user belongs_to :user end but I can still create an admin
2012 Sep 06
1
Is rsync -avS same as rsync -av --sparse
-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.samba.org/pipermail/rsync/attachments/20120906/95019970/attachment.html>
2007 May 02
16
ZFS Support for remote mirroring
Does ZFS support any type of remote mirroring? It seems at present my only two options to achieve this would be Sun Cluster or Availability Suite. I thought that this functionality was in the works, but I haven''t heard anything lately. Thanks! Aaron Newcomb http://opennewsshow.org http://thesourceshow.org This message posted from opensolaris.org
2014 May 28
1
Asterisk crashes suddenly
Hello friends, I have been experienced suddenly stops for my Asterisk server, I do not why is it happening. Asterisk's debug messages only tell me I have lacked g729 codec for translation to one peer minutes before the crashes occur [2014-05-27 09:48:30] WARNING[15384][C-0000017c] channel.c: Unable to find a codec translation path from (ulaw) to (g729) [2014-05-27 09:48:30]
2009 Nov 17
2
rake db:seed with authlogic fails to populate users
I have a db/seeds.rb file that I want to load, but while the rest of the seeds file works fine, nothing is ever populated in :users. I just fails silently, so I can''t figure out what exactly is causing the problem. I have authlogic installed into the user.rb model with acts_as_authentic. I''m sure that''s part of the problem, but I''m not sure that manually