Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Ok i though express was the "free one" I guess it's the same now.
I'll give Solaris 11 a shot with napp-it
My hardware is on it's way.
Btw, would you consider making a less expensive or not a yearly paid fee for the extras for napp it? (Possibly for home use only? i.e: one time $150)
As you can see, there is a slash after the email user before the @ sign in the "to" field. Is this normal??
Also, is replication suppose to work for iscsi/comstar luns? I have tried importing or creating the LU on the backup server for the replicated volume but I get stfadm errors. This is after setting the replication job to manual.
Ex If your LU refers to a file or volume, you must set Comstar on target server manually..
Can you tell me what steps then?
I can see the volume under Disks->Volumes ( I used a Vol LU target on the sender machine)
If I try to Create Vol LU and point to that volume I get "Error creating sbdadm: data file error".
If I try to import the LU I get "Error importing stmfadm: meta file error" .
Also have tried with snaps.
I have installed the iscsi and turned on Comstar. I have created the target group and the target.
What am I missing?
Thanks.
Have you disabled read only for the replicated dataset?
BTW, I have tested and mounted the NFS replication without issues, but the iscsi vols do not show up under zfs folder to unmark readonly, etc.
I'm having difficulty setting up my initial ZFS filesystems with SMB and NFS access, and am wondering if someone could walk me through a simple case.
So I created a ZFS folder called "testfs" from within napp-it. If I set the NFS property" to "on" and a SMB share, I can access it from both NFS and SMB. So that's great. But I want to make it so that I can only access the share by one user: "nick". I've already set up this user in napp-it.
In order to do so, I went to ACL on folders, deleted the ACL "everyone@", added one for user "nick" with "modify_set".
After doing so, I can access via SMB with user "nick" just fine, and other users get access denied, so that's great.
But now when I try to access via NFS with user "nick", I get access denied.
I suspect I'm missing some small critical step, but am having trouble determining what I'm doing wrong. Can someone help me out? Thanks.
About poor contacts... Today, I took out the controller and put it in another PCIe slot (4x only, though). I got more errors through that (mostly Transfer errors, but also some Hard, but no Soft), but I was able to copy data to it with about 35 MB/s (says Windows Explorer), and read data with about 60-65 MB/s. That's about double the speeds I had before, even though that PCIe slot is only 4x not 8x like the one before. So I guess I'm narrowing down the problem... Could be I had some ESD while connecting it? Dunno... Problem is more, how do I prove the vendor that the port is not working correctly?
Strange thing is still, I cannot shut down my box anymore, it always gets stuck halfway. Any idea in which log I could try to read some hints as to why this happens all the time?
Thanks,
Cap'
What is the deal with snapshot when using ZFS?
People recommand to do the following:
take esxi snapshot including memory&quiescing guest FS.
take ZFS snapshot
delete esxi snapshot.
But why? Hot snaps have always been working well on raid5, is this something specific to zfs?
see NFS share options like (Solaris 11 is different)
rw=host1:host2:host3,root=host1:host2:host3,ro=host4 ZFS
I have decided to RMA my mainboard and the controller at the same time (different vendors), as one of them is probably broken somehow, but there's no way I could find out for sure which one. It ran much better in the x4 slot, but not perfect (had more Transfer errors and still could not reboot), so there is a chance that both are defective. This will take about 3 weeks :-( so it will take a while until I can report back. Meanwhile, thanks to all for their valuable input!
Any plans on implementing this in your gui? Could be helpful for some...
Radical measure! If you haven't disassembled your server yet you could try cleaning your controller contacts using an pencil eraser. Gently rub them on a 90 degree angle with the contacts direction to prevent ripping them off. Then install the controller and see the results.
Be aware that this is only half a measure because the whole chain of contacts should be cleaned (motherboard slots, cables, disk contacts, etc.
Best luck!
I noticed the same thing on my NAS, always had to do it twice as you describe it. Thought it's either a bug or by design, so I didn't care too much about it... would be interested though what it is!
I figured out why it isn't working! My seagate SAS drive is NOT generating a string:
=== START OF INFORMATION SECTION ===
(no idea offhand how to fix this though...) If you want the first N lines of the output, I can certainly post that...
currently I check if a drive check returns the above string, otherwise I check for another disk type
if (!($r=~/=== START/s)) {
Easiest way is to add a OR check for another string from a successfull check like
if (!($r=~/=== START|another successfull string/s)) {
You may also post the string that is unique for a successfull check (contains sn, temp and health)
=== START OF INFORMATION SECTION ===
Device Model: [No Information Found]
Serial Number: [No Information Found]
Firmware Version: [No Information Found]
# device must be specified! (sat, scsi, ata),
# try scsi first (SAS2)
$r=`sudo /usr/sbin/smartctl -a -d scsi -T permissive /dev/rdsk/$disk`; # default = sat= sat,16 is needed for 48bit ATA support
# default (16) is reported to have problems on some intel ahci
# print "<hr>smartctl -a -d scsi -T permissive /dev/rdsk/$disk <hr> $r\n"; # debug, needs html header line 32
# print "--------------- scsi? -> $r\n";
$type="scsi";
$k="$id\_smart_dtype";
$disk{$k}="$type";
$k="$id\_smart_type";
$disk{$k}.=" $type"; # add type
# opt read temp extra/directly
if (!($r=~/Temperature/s)) {
$r.= `sudo /usr/sbin/smartctl -l scttempsts -d scsi -T permissive /dev/rdsk/$disk`; #sat
}
## if no START or Vendor is found, try SAT
if (!($r=~/=== START|Vendor:/s)) { # === START OF INFORMATION SECTION ===
$r=`sudo /usr/sbin/smartctl -a -d sat,12 -T permissive /dev/rdsk/$disk`;
# print "<hr>smartctl -a -d sat,12 -T permissive /dev/rdsk/$disk <hr> $r\n";
$type="sat,12";
$k="$id\_smart_dtype";
$disk{$k}="$type";
$k="$id\_smart_type";
$disk{$k}.=" $type";
# opt read temp extra/directly
if (!($r=~/Temperature/s)) {
$r.= `sudo /usr/sbin/smartctl -l scttempsts -d sat -T permissive /dev/rdsk/$disk`;
}
}
I got vmware tools working on solaris 11. Used a trick though, install solaris express 11, install vmware tools from esxi 5 U1 then perform upgrade from se 5.11 to solaris 11.11
vmware tools continue to work on solaris 11
Hello dsumike
thank you for your testings.
I will try it with my disks and controllers and add your suggestions to next nightly
SMART Health Status: OK
Current Drive Temperature: 23 C
Drive Trip Temperature: 68 C
Elements in grown defect list: 0
#temp
if ($s=~/Temperature/i) {
if ($s=~/Max Temperature/i) { next; } # no min/max
if ($s=~/Temperature Limit/i) { next; } # no limit count
[COLOR="Red"]if ($s=~/Trip Temperature/i) { next; } # no Drive Trip Temperature (dsumike modification)[/COLOR]
$s=~s/.* +//;
$s=~s/ .*//; # only temp not temp + min/max
$k="smart_temp";
if ($s=~/\d$/) { $s.=" �C" }
$sv{$k}=$s;
next;
}
hello dsumike
It is hard to care about all the differences with Smartmontools and different disks and controllers as well as the differences between Illumian, OI and Solaris 11 (and eventually SmartOS.)
so, I built 2 new domain controllers and demoted the old one and now one of my napp-its won't join.
I deleteded it fomr AD.
Maybe I can't type the right things into napp-it AD menu. Any guesses. All ADs now are 2008 R2. One thing I notice is it says. "No server suitable for synchronization found"
I put the IP for the DC that has all the fsmo roles.