-
Recent Posts
Archives
- July 2020
- April 2020
- February 2020
- January 2020
- December 2019
- November 2019
- August 2019
- July 2019
- June 2019
- May 2019
- February 2019
- January 2019
- November 2018
- October 2018
- September 2018
- August 2018
- June 2018
- May 2018
- April 2018
- February 2018
- January 2018
- December 2017
- November 2017
- October 2017
- August 2017
- June 2017
- May 2017
- April 2017
- March 2017
- February 2017
- January 2017
- December 2016
- November 2016
- September 2016
- August 2016
- March 2016
- December 2015
- November 2015
- October 2015
- September 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- November 2014
- October 2014
- September 2014
- August 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
Categories
Monthly Archives: September 2014
clustermode dns loadbalancing
Setup DNS loadbalancing clustermode. The lifs belonging to the same dns-zone should be in the same vserver. The vserver is in fact the dns-zone. 1. Create vserver vserver create nfs -rootvolume rootvol -aggregate aggr1_n2 -ns-switch file -nm-switch file -rootvolume-security-style unix … Continue reading
Posted in Uncategorized
Leave a comment
clustermode upgrade
1. put image.tgz on webserver. clustershell: system image update -node <nodename> http://<webserver>/image.tgz or 2. put image.tgz in /mroot/pkg/ clustershell: system image update -node file:///mroot/pkg/image.tgz
Posted in Uncategorized
Leave a comment
solaris 10 nocacheflush
Solaris 10 Set Dynamically (using the debugger): echo zfs_nocacheflush/W0t1 | mdb -kw Revert to Default: echo zfs_nocacheflush/W0t0 | mdb -kw Set the following parameter in the /etc/system file: set zfs:zfs_nocacheflush = 1
Posted in Uncategorized
Leave a comment
7-mode upgrade 32bit to 64bit
filer1> priv set diag filer1*> aggr 64bit-upgrade start aggr4 -mode grow-all
Posted in Uncategorized
Leave a comment
solaris 11 who uses which port.
# mkdir /scripts # vi /scripts/ports #!/bin/ksh line=’———————————————‘ pids=$(/usr/bin/ps -ef | sed 1d | awk ‘{print $2}’) if [ $# -eq 0 ]; then read ans?”Enter port you would like to know pid for: ” else ans=$1 fi for f … Continue reading
Posted in Uncategorized
Leave a comment
solaris 11 custom zone install
Adding Additional Packages in a Zone by Using a Custom AI Manifest The process of adding extra software in a zone at installation can be automated by revising the AI manifest. The specified packages and the packages on which they … Continue reading
Posted in Uncategorized
Leave a comment
solaris 11 zonereplication and start
Migrate the zone to other machine using replication. example: zonename azone; zonepath root zones/azone # zfs snapshot -r zones/azone@0 # zfs send -R zones/azone@0 | ssh root@othermachine zfs receive zones/azone Run script on other machine #./script zones/azone/rpool ————————————– #!/bin/bash zfsfs=$1 … Continue reading
Posted in Uncategorized
Leave a comment