Archivo del Autor: carlosap

Migrating a Solaris 10 zone to a Solaris 10 branded zone on Solaris 11

http://solaris11adventures.blogspot.mx/2013/05/migrating-solaris-10-zone-to-solaris-10.html So there’s an official Oracle procedure somewhere. Mine just goes into a little more detail and putting in workarounds for some of the bugs I found. *Edit: Points 5 and 11 is not necessary with the latest Solaris packages installed. Zone name: zone1 On old (Solaris 10) global zone: zoneadm -z zone1 ready cd… Leer más »

wps.com office

https://www.wps.com   Vea, edite y cree documentos Office en cualquier parte Más de 550 millones de usuarios de Android Más de 875,000 revisiones de Google Play Totalmente compatible con Microsoft Office® y Google Docs No se necesita suscripción: ¡100% GRATIS!

CREATE SYNONYM ( join multiple databases in tableau sql server)

CREATE SYNONYM [dbo].[tbl1] FOR [db1].[dbo].[tbl1] The above code, if run on db2, would create an object tbl1 which would behave as a table under the dbo schema in db2, but would actually reference [db1].[dbo].[tbl1]. If you are on 2000, then no, it’s fully qualified names or nothing, I’m afraid. Nota: –>Ubicarse en la base donde… Leer más »

Oracle Solaris 11 configuration and administration notas

Make some first indexing, updatedb note. you’ll have to use ‘slocate’, not ‘locate’   Oracle Solaris 11 configuration and administration Introduction See http://pbraun.nethence.com/doc/sysutils_solaris/network.html for network configuration. Vmware tools on solaris https://kb.vmware.com/kb/1023956 http://prefetch.net/blog/index.php/2011/09/28/getting-vmware-tools-to-configure-on-solaris-10-guests/ System configuration Disable graphical login, svcadm disable gdm Mount an NFS share, cd /etc/ vi vfstab nfssrv:/path/to/share  – /mnt/mountpoint nfs – no ro,soft If… Leer más »

Progress Explorer AdminServer slow

Before restarting the AdminServer, in order to rule out an issue with a java Ipv6 not releasing ports properly so it ends up with being owned by kernel: Edit DLC/properties/AdminServerPlugins.properties under the [PluginPolicy.Progress.AdminServer] section and add the following to the end of the current jvmargs line: -Djava.net.preferIPv4Stack=true -Djava.net.preferIPv6Addresses=false

Solaris Containers cheat sheet

This a quick cheat sheet of the commands that can be used when using zones (containers), for a more complete guide see solaris zones. Zone States Configured Configuration has been completed and storage has been committed. Additional configuration is still required. Incomplete Zone is in this state when it is being installed or uninstalled. Installed… Leer más »

zone creation solaris 10

https://blogs.oracle.com/mandalika/entry/solaris_10_zone_creation_for chmod 700 /desm chmod 700 /desm/zoneoe zlogin zoneoe shutdown -i 0 zoneadm -z zoneoe halt zoneadm -z zoneoe uninstall zoneadm list -cv zonecfg -z zoneoe ——————————- create -b set zonepath=/desm/zoneoe set autoboot=true set ip-type=shared add net set address=192.168.1.205 set physical=e1000g0 set defrouter=192.168.1.1 end remove inherit-pkg-dir dir=/usr remove inherit-pkg-dir dir=/sbin remove inherit-pkg-dir dir=/lib remove inherit-pkg-dir… Leer más »