Archivo de la categoría: solaris

Reset Solaris 11 root password x86 sparc

setenv network-boot-arguments host-ip=192.168.1.225,router-ip=192.168.1.1,subnet-mask=255.255.255.0,file=http://192.168.1.213:5555/cgi-bin/wanboot-cgi boot net -s failsafe root/solaris (default password) As you can see in the configuration file root is a role Assign the root role to your local account. # usermod -R root jdoe-local root@db04:~# cat /etc/user_attr # # The system provided entries are stored in different files # under «/etc/user_attr.d». They should not… Read More: Reset Solaris 11 root password x86 sparc »

Editing SNMP Support for Solaris 10 OS

vim /etc/sma/snmp/snmpd.conf Restart svcadm restart svc:/application/management/snmpdx:default svcadm restart svc:/application/management/dmi:default svcadm restart svc:/application/management/sma:default Solaris 10 Edit community string, acl on config file: /etc/sma/snmp/snmpd.conf By default SNMP service is installed and enabled on Solaris 10 with service name: sma After change config file you need to restart sma service for changes take effect.  # svcadm restart sma… Read More: Editing SNMP Support for Solaris 10 OS »

Resolving Problems With a zoneadm attach Operation

Patches and Packages Are Out of Sync The target system must be running the same versions of the following required operating system packages and patches as those installed on the original host. Packages that deliver files under an inherit-pkg-dir resource Packages where SUNW_PKG_ALLZONES=true If packages and patches are different between the original host and the… Read More: Resolving Problems With a zoneadm attach Operation »

ldoms solaris sparc ldom ldm

https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=482193093532802&parent=SrDetailText&sourceId=3-13274423271&id=1019467.1&_afrWindowMode=0&_adf.ctrl-state=nhmqwbzoc_21   Applies to: SPARC T4-1 – Version All Versions and later Sun SPARC Enterprise T5120 Server – Version All Versions and later SPARC T3-1 – Version All Versions and later Sun SPARC Enterprise T5140 Server – Version All Versions and later Sun SPARC Enterprise T5440 Server – Version All Versions and later All Platforms… Read More: ldoms solaris sparc ldom ldm »

Jobs – Move Running Process to Background & Nohup

(method 1) ALREADY RUNNING PROCESS INTO BACKGROUND Pro:   Puts running process into background Con:  If you quit out of the shell window the process stops   Reference: http://www.unix.com/unix-advanced-expert-users/78975-make-foreground-running-process-run-background-without-hang-up.html   1. Ctrl-z 2. jobs or alternate method which lists the PID (note the PID is not the jobnum, the job number is shell specific to… Read More: Jobs – Move Running Process to Background & Nohup »

zfs notes

zfs create rpool/db2 zfs create rpool/db3 zfs create rpool/db4 zfs create rpool/db5 zfs create rpool/db6 zfs create rpool/db7 zfs set mountpoint=/db1 rpool/db1 zfs set mountpoint=/db2 rpool/db2 zfs set mountpoint=/db3 rpool/db3 zfs set mountpoint=/db4 rpool/db4 zfs set mountpoint=/db5 rpool/db5 zfs set mountpoint=/db6 rpool/db6 zfs set mountpoint=/db7 rpool/db7 snapshot zfs snapshot rpool/db1@mig1 zfs list zfs rollback rpool/db1@mig1… Read More: zfs notes »