DevTech101

DevTech101

solaris11

How to configure a Solaris 11 EVS switch

How to install and configure an EVS switch pkg install evs rad-evs-controller Configure the EVS switch evsadm set-prop -p controller=ssh://evsuser@app1.domain.com evsadm set-controlprop -p l2-type=vlan (default) evsadm set-controlprop -p vlan-range=1-4096 evsadm set-controlprop -h app1 -p uplink-port=aggr1 evsadm set-controlprop -h app2 -p uplink-port=aggr1 evsadm set-controlprop -h app3 -p uplink-port=aggr1 evsadm show-controlprop -p l2-type,vlan-range,uplink-port Set network tag evsadm …

How to configure a Solaris 11 EVS switch Read More »

Solaris 11.2 helpfull links

Solaris-specific Providers for Puppet (The Observatory) https://blogs.oracle.com/observatory/entry/solaris_specific_providers_for_puppet How to Get Started Creating Oracle Solaris Kernel Zones in Oracle Solaris 11 http://www.oracle.com/technetwork/articles/servers-storage-admin/howto-create-kernal-zones-s11-2251331.html Mandalika's scratchpad: Solaris 11.2 Highlights [Part 2] in 4 Minutes or Less http://technopark02.blogspot.com/2014/05/solaris-112-highlights-part-2-in-4.html?m=1  

Solaris 11 Metaset – Allow Remote Rpcbind

Solaris 11 metaset – allow remote rpcbind By default remote rpc bind is disabled in Solaris 11 (secure by default). Note: The remote workaround can be used with older versions of Metaset to form a cluster like working, or if you use Sun Cluster but its not working properly. To modify the remote rpc propriety. …

Solaris 11 Metaset – Allow Remote Rpcbind Read More »

Dtrace timing on vnic/pvi

dtrace -n 'i_dls_link_rx:entry{self->d=1;} xsvnic_rx_recv:entry{self->t=timestamp;} xsvnic_rx_recv:return/self->t && self->d/{@x[“time”] = quantize(timestamp-self->t);self->t=0; self->d = 0;} tick-10s{exit(0);}' dtrace: description 'i_dls_link_rx:entry' matched 4 probes  CPU     ID                    FUNCTION:NAME   78   9033                        :tick-10s   time            value  ————- Distribution ————- count            16384 |                                         0            32768 |@@@@@@@@@@@@@@@@@@@@@@@@@                1223            65536 |@@@@@@@@@@@@@@@                          720           131072 |                                         8           262144 |                                         0 select …

Dtrace timing on vnic/pvi Read More »

Recommended Network Tuning For Oracle Database and Weblogic On Solaris

Recommended performance tuning in Solaris 11 for Oracle DB and Weblogic Recommended Oracle Database Tuning. ipadm set-prop -p max_buf=16777216 tcp ipadm set-prop -p send_buf=2097152 tcp ipadm set-prop -p recv_buf=2097152 tcp ipadm set-prop -p _cwnd_max=2097152 tcp ipadm set-prop -p _conn_req_max_q=40000 tcp ipadm set-prop -p _conn_req_max_q0=40000 tcp #ipadm set-prop -p smallest_anon_port=10000 tcp #ipadm set-prop -p _time_wait_interval=10000 tcp …

Recommended Network Tuning For Oracle Database and Weblogic On Solaris Read More »

Best Practices – Top Ten Tuning Tips Updated for LDOMs

Best Practices – Top Ten Tuning Tips Updated By jsavit on Mar 28, 2014 This post is one of a series of "best practices" notes for Oracle VM Server for SPARC (formerly called Logical Domains). This is an update to a previous entry on the same topic. Top Ten Tuning Tips – Updated Oracle VM …

Best Practices – Top Ten Tuning Tips Updated for LDOMs Read More »

How to update solaris to new SRU and remove & add an idr in a zone

How to install a new IDR and back out an old IDR at the same time Going from SRU 12.0.5 with idr 793 to SRU 17.5 with idr1041 pkg -R /zones/myzone/root list |grep idr Now install the new IDR will specifying to back-out the old IDR at the same time pkg -R /zones/myzone/root install –accept …

How to update solaris to new SRU and remove & add an idr in a zone Read More »