Sponsored Content
Operating Systems Solaris Solaris 11 to 11.1 update help Post 302981777 by Peasant on Monday 19th of September 2016 11:27:55 AM
Old 09-19-2016
This is obvious, but i need to ask it :

Have you followed the procedure described here :
Upgrading to Oracle Solaris 11.1

Procedure is dependent on couple of things :
1. Your operating system exact version (SRU).
2. If you are running zones or not, additional steps must be taken depending,again, on the SRU level.
3. A working repository for the version you wish to upgrade.
So if you want to upgrade from 11 to 11.1.x.x, you will need (at least) IPS full 11.1 + same repository patched to 11.1.x.x where x.x is only the latest IPS downloaded and applied to existing 11.1 IPS repo.

Also, 11.1 is old, you should go higher if you can depending on the needs and setup.

Can you post output of commands :
Code:
pkg info entire
pkg list -af entire
pkg publisher
zoneadm list -cv

Perhaps those can provide additional information to help you.
 

10 More Discussions You Might Find Interesting

1. Solaris

How to update patches to Solaris 10?

I am seeking help to add patches to Solaris 10 on 64 bit Sparc server. This is to prepare the server for the installation of Oracle 10g. Please list command and specific directory that patches should be added to. Thanks (4 Replies)
Discussion started by: duke0001
4 Replies

2. Solaris

How update Solaris ?

I have Solaris 10 01/06 version on my server, but i wanna update her from my DVD-Disc to 08/07. How i can do it ? I has try boot from disc, but don't find Upgrade function =( Please help me anyone! (1 Reply)
Discussion started by: jess_t03
1 Replies

3. Solaris

update openshh on solaris 10

Hi All, I've downloaded and extracted openssh4.1 on solaris 10. When I run the install-sh, it replied with "./install-sh: no input file specified". The file is executable and been move to owner root or the rest of the files. Why is that? Please help. Thanks in advance, itik (4 Replies)
Discussion started by: itik
4 Replies

4. Solaris

Undo the Veritas mirroring and update from Solaris 8 to Solaris 10

Hi all I wish to undo the mirroring for root and update the Solaris version from 8 to 10. Since i am lack of knowledge and experience on this, hope you all can help me double check the step and correct me. Existing disk groups details root@leo # vxdg list NAME STATE ID... (3 Replies)
Discussion started by: SmartAntz
3 Replies

5. Solaris

Update Solaris patch

Hi All I had update the solaris version, and now wish to update the patch. but when i check my patch version, i cant find any version for that. any idea? root@leo # showrev Hostname: leo Hostid: 839b58a3 Release: 5.10 Kernel architecture: sun4u Application architecture: sparc... (8 Replies)
Discussion started by: SmartAntz
8 Replies

6. Solaris

Update Solaris from 8 to 10

Hi all, i am facing a problem. i cant update the 8 to 10. It show me the error cannot mount the root, swap, and other filesystem. when i run # format in the normal situation, it give me the below result # format 0. c1t0d0 <SUN146G cyl 14087 alt 2 hd 24 sec 848> ... (12 Replies)
Discussion started by: SmartAntz
12 Replies

7. Solaris

Solaris Update 2 to 7

I need to get from Solaris 10 update 2 to update 7, whats the quickest way just apply kernel patch or live upgrade? If it is just kernel patching can i go straight from update 2 to 7 or do I have to apply each revision level patch i.e. go from update 2 to 3 to 4 etc... (2 Replies)
Discussion started by: mr_crosby
2 Replies

8. Solaris

Install update 6 on solaris with update 3

I want to update my solaris 10 server which is currently on update 3 stage. A new application require it to be on update 6. What is the best way to make it update 6. should i just install the patch or should i go for the liveupgrade?? thanks for you help in advance (3 Replies)
Discussion started by: uxravi
3 Replies

9. Solaris

Solaris Repo Update

Hi Folks, Just a quick question on this, I've tried to run this a couple of times now - first time it failed I increased the swap. I'm not sure that increasing the physical memory will do any good, but will try later today - has anyone seen this or anything similar? SunOS fvssphsun01 5.11... (8 Replies)
Discussion started by: gull04
8 Replies

10. Solaris

How to update Solaris 10 Update 3 to Update 11?

Hi friends, We have a Solaris machine running 10 update 3 -bash-3.2# cat /etc/release Solaris 10 11/06 s10s_u3wos_10 SPARC Copyright 2006 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms. ... (6 Replies)
Discussion started by: prvnrk
6 Replies
SRU(3pm)						User Contributed Perl Documentation						  SRU(3pm)

NAME
SRU - Search and Retrieval by URL SYNOPSIS
## a simple CGI example use SRU::Request; use SRU::Response; ## create CGI object my $cgi = CGI->new(); ## create a SRU request object from the CGI object my $request = SRU::Request->newFromCGI( $cgi ); ## create a SRU response based from the request my $response = SRU::Response->newFromRequest( $request ); if ( $response->type() eq 'explain' ) { ... } elsif ( $response->type() eq 'scan' ) { ... } elsif ( $response->type() eq 'searchRetrieve' ) { ... } ## print out the response print $cgi->header( -type => 'text/xml' ); print $response->asXML(); DESCRIPTION
The SRU package provides a framework for working with the Search and Retrieval by URL (SRU) protocol developed by the Library of Congress. SRU defines a web service for searching databases containing metadata and objects. SRU often goes under the name SRW which is a SOAP version of the protocol. You can think of SRU as a RESTful version of SRW, since all the requests are simple URLs instead of XML documents being sent via some sort of transport layer. You might be interested in SRU if you want to provide a generic API for searching a data repository and a mechanism for returning metadata records. SRU defines three verbs: explain, scan and searchRetrieve which define the requests and responses in a SRU interaction. This set of modules attempts to provide a framework for building an SRU service. The distribution is made up of two sets of Perl modules: modules in the SRU::Request::* namespace which represent the three types of requests; and modules in the SRU::Response::* namespace which represent the various responses. Typical usage is that a request object is created using a factory method in the SRU::Request module. The factory is given either a URI or a CGI object for the HTTP request. SRU::Request will look at the URI and build the appropriate request object: SRU::Request::Explain, SRU::Request::Scan or SRU::Request::SearchRetrieve. Once you've got a request object you can build a response object by using the factory method newFromRequest() in SRU::Request. This method will examine the request and build the corresponding result object which you can then populate with result data appropriately. When you are finished populating the response object with results you can call asXML() on it to get the full XML for your response. To understand the meaning of the various requests and their responses you'll want to read the docs at the Library of Congress. A good place to start is this simple introductory page: http://www.loc.gov/standards/sru/simple.html For more information about working with the various request and response objects in this distribution see the POD in the individual packages: o SRU::Request o SRU::Request::Explain o SRU::Request::Scan o SRU::Request::SearchRetrieve o SRU::Response o SRU::Response::Explain o SRU::Response::Scan o SRU::Response::SearchRetrieve o SRU::Server Questions and comments are more than welcome. This software was developed as part of a National Science Foundation grant for building distributed library systems in the Ockham Project. More about Ockham can be found at http://www.ockham.org. TODO
o create a client (SRU::Client) o allow searchRetrieve responses to be retrieved as RSS o make sure SRU::Server can function like real-world SRU interfaces o handle CQL parsing errors o better argument checking in response constructors AUTHORS
Ed Summers <ehs@pobox.com> COPYRIGHT AND LICENSE
Copyright 2004-2009 by Ed Summers This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.4 2009-12-02 SRU(3pm)
All times are GMT -4. The time now is 04:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy