Sun solaris user define process

Hi friend;

Need your help once more. I do installation on Sun can you show me a way how I can configure the maximum number of users in Sun Solaris Sparc(didn't learn yet their version,still waiting response) source.

How can I make those?

X display server

X display I will use this right:

RPM - qa vnc < < if it exists I'll run

vncserver-geometry 24 - depth 1280 x 1024 (should I say starting the service VNC server or something like that?)


The value of umask 022:
Set the 'ulimit' as 'unlimited': (using Korn Shell)

Can I define where and how?

The following command displays the current settings of ulimit:

I should put those in root, applmgr and oramgr, if I'm below I just put their right session? If so how I can put these value permanently?

$ ulimit - a

Time (seconds): unlimited
file (Blocks): unlimited
Data (KBytes): 131072
Stack (KBytes): 2048
Memory (KBytes): 216272
coredump (Blocks): unlimited
nofiles (descriptors): 4096
Vmemory (KBytes): 1048576

Set them all as unlimited as follows:

ulimit unlimited t
ulimit unlimited f
ulimit unlimited d
ulimit-s unlimited
ulimit unlimited m
ulimit unlimited-c
ulimit-n unlimited
ulimit - v unlimited
=================================================
Section 5: Additional steps to Solaris SPARC from Sun
=================================================

Make sure that/usr/ccs/bin, / usr/bin and "/ bin" appear in the $PATH before/usr/ucb.
The "tr" must be in the directory/usr/bin instead of/usr/ucb.

If this is the case, change your $PATH as follows:
/ usr/bin: / usr/ccs/bin: / usr/sbin /: usr/ucb

I use echo $PATH if they are does not exist in the path what should I type?

Thank you very much

Hello

the VNC Server service started?

See (Note: 181244.1 - Configuration of VNC or XVFB as the X to 11i Applications Server).

If I want to put these permenantly of value for the user root-appl and db I type these variables their .profile?

You are referring to values of Wha?

To create user and group orders as long as the same as linux?

g s/n useradd-d/home/yyyy yyyy

Groupadd dba

useradd
http://docs.Sun.com/app/docs/doc/816-5166/useradd-1M?a=view

Groupadd
http://docs.Sun.com/app/docs/doc/802-5747-1M/6i9g1e15j?l=SV&a=view

Kind regards
Hussein

Tags: Oracle Applications

Similar Questions

  • memory usage by a process of oracle on sun Solaris

    Hello forum,.

    I want to track the memory usage by a process of oracle on sun solaris 64-bit SPARC system.

    I tried to do it by the command of the PMAC, but I found that the output for each pid (process oracle) is even around 8GB. Please note that the 8 GB is the size of our LMS.

    Please let me know the command by which I can check that "how much memory that uses an oracle on Sun Solaris Sparc 64-bit server process.

    Thank you
    Sharad

    See http://tech.e2sn.com/oracle/performance/unix-performance-tools/process-memory-matrix

    Hemant K Collette

  • What are user defined variables (UDV)?

    I'm trying to debug an application in real time and have worked on known issues for LabVIEW Real-time 2011. There is a term called "user defined Variables (UDV)" that opens occationally document known issues with other documents. It seems that UDVs can be created under target FPGA but I am unable to find any useful information on them. I know only local, global, shared, single, variable IO process.

    Hi Lucie,.

    The /o Variables using the help documentation gives a pretty good explanation of what a user-defined variable is in the section "data i/o Variables for Custom FPGA of e/s". I hope that this documentation helps!

    Best,

    tannerite

  • question of the decidability of oralce user defined rules

    Hello

    Accoring to some posts online (http://weblog.clarkparsia.com/2007/08/27/understanding-swrl-part-2-dl-safety/ http://protege.cim3.net/cgi-bin/wiki.pl?SWRLLanguageFAQ), in general, SWRL is undecidable. However, we can add some restrictions to SWRL to regain the decidability: Variables in DL security rules bind only to those explicitly named in the ontology. Add this restriction is sufficient to establish decidable SWRL rules. So, I wonder how the rules defined by the user Oracle reached the decidability. SWRL does adpot the simliar way? Thank you very much in advance.

    Hong

    Salvation Hong,

    It is a good question. Yes, we have adopted a similar idea. Chaining before engine database Oracle database are the existing resources of RDF known variables in rules of deduction. We will not generate a new RDF resource that does not exist already in the ontologies. This is very important because it ensures that the inference process will be completed in a period of time.

    The foregoing does not apply to the inference (a new 12.1) user-defined well.

    Thank you

    Zhe

  • Task to the mapping of object status: is it possible to have user-defined status?

    Hi guru.

    'Task of object state Mapping' tab for the definition of the process allows you to set the "status of the object' to 'status '.

    'Status of the object' contains values defined on "Definition of the State" for defined object "resource". It is possible to extend this list by adding user-defined status. But the allocation of these statutes (for example, 'view data name updated') for status (say, 'C', finished) it causes a corresponding Bundle error is found.

    How is it possible to use the user defined the statutes?

    Hello

    These statutes are pre-defined and shipped by the IOM.

    You cannot change C-> etc. put into service.

    ~ J

  • Using java user-defined aggregate function

    Hello

    I'm trying to implement a with Java user-defined aggregate function.

    Here's the Code Javaclass:

    Import Java.util;
    Oracle.sql import. *;
    import java.sql. *;
    import Java.Math.BigDecimal;
    Oracle import. CartridgeServices.*;

    stored the context type

    public class StoredCtx_SecMax
    {
    private BigDecimal b_max;
    private BigDecimal b_secmax;

    public StoredCtx_SecMax()
    {
    b_max = new BigDecimal (0);
    b_secmax = new BigDecimal (0);
    }

    public void SchreibeMax (entry BigDecimal)
    {
    b_max = entry;
    }

    public void SchreibeSecMax (entry BigDecimal)
    {
    b_secmax = entry;
    }

    public BigDecimal LeseMax()
    {
    Return b_max;
    }

    public BigDecimal LeseSecMax()
    {
    Return b_secmax;
    }
    }

    implementation type

    / public class SecondMax_j implements SQLData
    {
    BigDecimal private key;

    Ultimate SUCCESS of static BigDecimal = new BigDecimal (0);
    Final static BigDecimal ERROR = new BigDecimal (1);


    Implement the SQLData interface.

    String sql_type;
    public String getSQLTypeName() throws SQLException
    {
    Return sql_type;
    }

    ' Public Sub readSQL (SQLInput stream, string typeName) throws SQLException
    {
    sql_type = typeName;
    key = stream.readBigDecimal ();
    }

    Public Sub writeSQL (SQLOutput stream) throws SQLException
    {
    stream.writeBigDecimal (key);
    }


    methods of the type that implements ODCITable interface

    public static BigDecimal ODCIAggregateInitialize (oracle.sql.STRUCT [] sctx)
    throws SQLException
    {
    Connection Conn = DriverManager.getConnection("jdbc:default:connection:");

    create a stored environment and store the result set in it
    StoredCtx_SecMax ctx = new StoredCtx_SecMax();

    context of registry stored with cartridge services
    Touch int;
    try {}
    key = ContextManager.setContext (ctx);
    } catch {} (EC CountException)
    error return;
    }

    Create an instance of StockPivotImpl and store the key of
    Object [] impAttr = new Object [1];
    impAttr [0] = new BigDecimal (key);
    StructDescriptor sd = new StructDescriptor ("SECONDMAX_J", conn);
    SCTX [0] = new STRUCT(sd,conn,impAttr);

    return a SUCCESS;
    }

    public BigDecimal ODCIAggregateIterate (BigDecimal input)
    throws SQLException
    {
    retrieve the context stored with the key
    CTX StoredCtx_SecMax;
    try {}
    CTX = (StoredCtx_SecMax) ContextManager.GetContext (Key.intValue ());
    } catch (InvalidKeyException ik) {}
    error return;
    }

    BigDecimal b_max;
    BigDecimal b_secmax;

    b_max = ctx. LeseMax();
    b_secmax = ctx. LeseSecMax();

    If (eingabe.compareTo (b_max) == 1)
    {
    CTX. SchreibeSecMax (b_max);
    CTX. SchreibeMax (input);
    }
    on the other
    {
    If (eingabe.compareTo (b_secmax) == 1)
    {
    CTX. SchreibeSecMax (input);
    }
    }

    return a SUCCESS;
    }

    public BigDecimal ODCIAggregateTerminate (double [] returnValue, int flags) throws SQLException {}

    retrieve the context stored with the key
    CTX StoredCtx_SecMax;
    try {}
    CTX = (StoredCtx_SecMax) ContextManager.clearContext (Key.intValue ());
    } catch (InvalidKeyException ik) {}
    error return;
    }

    returnValue [0] = ctx. LeseSecMax () .doubleValue ();

    CTX = null;

    return a SUCCESS;
    }


    public BigDecimal ODCIAggregateMerge (oracle.sql.STRUCT ctx2) throws SQLException {}


    return a SUCCESS;
    }
    }


    To implement this in the database, I use the following script:

    CREATE OR REPLACE TYPE IMPROG. SECONDMAX_J as object

    (
    INTEGER key,

    public static function ODCIAggregateInitialize (sctx IN OUT SECONDMAX_J)

    Return number
    IN THE JAVA LANGUAGE
    NAME "Java.Math.BigDecimal return from SecondMax_j.ODCIAggregateInitialize (oracle.sql.STRUCT []).
    ,



    Member ODCIAggregateIterate (self IN OUT SECONDMAX_J function,

    Number return value)
    IN THE JAVA LANGUAGE
    NAME "Java.Math.BigDecimal SecondMax_j.ODCIAggregateIterate return (Java.Math.BigDecimal).
    ,



    Member ODCIAggregateTerminate (self IN SECONDMAX_J function,

    Return returnValue NUMBER, flags in number number)
    IN THE JAVA LANGUAGE
    NAME "Java.Math.BigDecimal return of SecondMax_j.ODCIAggregateTerminate (double [], int).
    ,



    Member ODCIAggregateMerge (self IN OUT SECONDMAX_J function,

    CTX2 IN SECONDMAX_J) return number
    IN THE JAVA LANGUAGE
    NAME "Java.Math.BigDecimal SecondMax_j.ODCIAggregateMerge return (oracle.sql.STRUCT)".
    );
    /

    CREATE OR REPLACE FUNCTION F_SECONDMAX_J (NUMBER value) RETURN NUMBER

    PARALLEL_ENABLE

    AGGREGATION to the HELP of SecondMax_j;
    /



    When I now use the F_SECONDMAX_J function.

    "(Columnname) select F_SECONDMAX_J from Tablename t;

    It works perfectly and shows me the right result.

    Then I tried to implement the fusion part as follows:

    public BigDecimal ODCIAggregateMerge (oracle.sql.STRUCT ctx2) throws SQLException {}

    BigDecimal Key2 = null;

    BigDecimal ctx_max = null;
    BigDecimal ctx_secmax = null;

    BigDecimal ctx2_max = null;
    BigDecimal ctx2_secmax = null;

    retrieve the context stored with the key
    StoredCtx_SecMax ctx = null;
    try {}
    CTX = (StoredCtx_SecMax) ContextManager.GetContext (Key.intValue ());
    } catch (Exception e) {}

    }

    Object [] impAttr = ctx2.getAttributes ();

    Key2 = (BigDecimal) impAttr [0];

    retrieve the second context stored using the key2
    StoredCtx_SecMax ctx_sec = null;
    try {}
    ctx_sec = (StoredCtx_SecMax) ContextManager.GetContext (key2.intValue ());
    } catch (Exception e) {}

    }

    ctx_max = ctx. LeseMax();
    ctx_secmax = ctx. LeseSecMax();

    ctx2_max = ctx_sec. LeseMax();
    ctx2_secmax = ctx_sec. LeseSecMax();

    If (ctx2_max.compareTo (ctx_max) == 1)
    {
    If (ctx2_secmax.compareTo (ctx_secmax) == 1)
    {
    CTX. SchreibeSecMax (ctx2_secmax);
    }
    on the other
    {
    CTX. SchreibeSecMax (ctx_max);
    }
    CTX. SchreibeMax (ctx2_max);
    }
    on the other
    {
    If (ctx2_max.compareTo (ctx_secmax) == 1)
    {
    CTX. SchreibeSecMax (ctx2_max);
    }
    }

    return a SUCCESS;
    }

    When I now try the function

    "Select / * + parallel (t 4) * / F_SECONDMAX_J (Columnname) of Tablename t;

    I always get a pointer NULL-error because the variable key2 is always 0 and therefore the functions LeseMax() and LeseSecMax()
    in the second context 'ctx_sec' produce this error NULL pointer.

    To me it seems that each parallel process is the construction of an additional class for himself, which is not available are my main process.

    My question is now how it is possible to access the context of stored of the parallel process, so that I can combine the results.

    Thank you very much

    Josef

    Hi Josef,

    just guess that I've never implemented with java user-defined aggregate functions or support parallel execution:

    Maybe you have to implement ODCIAggregateWrapContext?

    + Application of ODCIAggregateWrapContext is optional. It should be implemented only when the external memory is used to hold the aggregative, context and the user-defined aggregate is evaluated in parallel (which is, stated as PARALLEL_ENABLE). If the user-defined aggregate is not evaluated in parallel, ODCIAggregateWrapContext is not necessary. +
    [http://docs.oracle.com/cd/B12037_01/appdev.101/b10800/dciaggfns.htm#i1004974]

    Report it to progress and success.

    Good luck
    Rainer Stenzel

  • How to get information about the types within a user defined package

    Hi all
    Have a package with some types (user-defined) defined in the package specification. How to get information about the types and
    information about the columns of this type.

    for example:
    Create package mp is

    type t is record (no number is varchar2 (30));

    procedure a (m t out...

    Thanks in advance.

    userg

    G_user wrote:
    the req's, want to build a script dynamically using data dictionary
    so if possible, I take the name of the type within the package specification.

    Let me rephrase - is there a data dictionary to get information on the type defined by the user within a package specification

    Best approach will be to have a standard in the definition of data types.

    Have a process to follow the object definitions in the package if it is mandatory.

  • Techstack of HP-UNIX SUN Solaris migration

    Hi I need help in the migration process application server of HP to the Sun.

    I am following the Doc #238276.1, and I am applying techstack interop patch 4139957 (already applied the specific fix personalized).

    But if I run adpatch, I got the following and these binaries are HP.

    # adpatch
    ksh: adpatch: not found
    oracta001:/UL01/app/applmgr/lasrx/ad/11.5.0/bin >
    # ls-l adpatch
    -rwxr-xr-x 1 lasrx s/n 5963776 7 Dec 17:00 adpatch
    oracta001:/UL01/app/applmgr/lasrx/ad/11.5.0/bin >

    Thus, any Suggetions on it. Is this work with Sun solaris, if we need to do to support Sun solaris.

    Thank you.

    Were you able to apply the update custom using adpatch without error? If so and the problem with the executable files will appear only after applying this fix, then I would say that connect you a SR.

    Thank you
    Hussein

  • Sun Solaris 5.10 - SSH 1.1.3 - Not able to connect to the server by ssh - Urgent

    Hello
    I am not able to coonect to a server by using the code below.

    If I try the same code on the server to connect it self, it works well. But when I try to connect to another server gives the error below. And I use the IBM Jdk when getting this error. Y at - it a setting to avoid this error.

    Error:
    INFO: Add /usr/jdk/instances/jdk1.6.0/jre/lib/ext/sunpkcs11.jar to the CLASSPATH of the extension
    ConfigurationLoader
    November 30, 2010 16:33:12 < clinit > com.sshtools.j2ssh.transport.publickey.SshKeyPairFactory
    INFO: Loading public key algorithms
    Error so that SFTP
    java.util.NoSuchElementException
    at java.util.StringTokenizer.nextToken(StringTokenizer.java:332)
    at java.util.StringTokenizer.nextElement(StringTokenizer.java:390)
    to com.sshtools.j2ssh.transport.AbstractKnownHostsKeyVerification. < init >(Unknown Source)
    to com.sshtools.j2ssh.transport.ConsoleKnownHostsKeyVerification. < init >(Unknown Source)
    at com.sshtools.j2ssh.SshClient.connect (unknown Source)
    at fileTransfer.connectToServer(fileTransfer.java:18)
    at fileTransfer.main(fileTransfer.java:56)



    Code:
    public static boolean connectToServer (String serverIp, int serverPort, String userId, String password)
    {
    SFC SshClient = null;
    try {}
    System.out.println ("inside the Try to like his SFTP");
    ConfigurationLoader.initialize (false);
    System.out.println ("ConfigurationLoader");

    SFC = new SshClient();
    SFC. Connect (Ipserver, serverPort);
    System.out.println ("SFC. Connect");

    PasswordAuthenticationClient pwd = new PasswordAuthenticationClient();

    pwd.setUsername (userId);

    pwd.setPassword (password);

    int checkAuth = sfc.authenticate (pwd);
    System.out.println ("checkAuth" + checkAuth);

    If (checkAuth == 4) {}
    System.out.println ("AuthenticationProtocolState.Complete");

    SFTP SftpClient = sfc.openSftpClient ();
    sftp.Quit ();
    SFC. Disconnect();
    }
    on the other
    {
    throw new Exception ("invalid user name or password for the user");
    }
    }
    catch (System.Exception e)
    {
    System.out.println ("Error While SFTP");
    SFC. Disconnect();
    e.getStackTrace ();
    Returns false;
    }
    Returns true;
    }

    Swapped

    Sun Solaris 5.10 - SSH 1.1.3 - Not able to connect to the server by ssh - Urgent

    @O.P.
    Don't, don't.
    In the future, to choose the most appropriate forum and make your post.
    Swap shall be the same as the rude spamming.
    I'm not aware of any web-site-of-value forum that would promote the permutation in its directions on the label.

    ... and for what is "Urgent"?
    This web site is for the end-user community gather and discuss various topics in general conversations. Your time constraints are irrelevant. If you need real support for something, then log a support case and pay for a quick response.

    See the FAQ in the link at the top of the page.

  • When I print my paper to "user-defined" size in Thunderbird by default instead of "letter". Have to change manually, but does not.

    I use a printer Brother HL-6180DW and the paper size to default printer to 'letter' 8 1/2 x 11 on everything, except
    When you try to print an email from Thunderbird. If I manually change the paper size in Thunderbird to the letter, it maintains for that impression, then default to "user-defined" which is 3.0 x 5.0. How to make the default format letter? Thank you.

    I have answered hundreds of posts here every month. Most of the time I don't know who or what 5 seconds after I'm done.

    I did not add... I said to delete. You can remove all in printers and when you restart Thunderbird and try and print with the selected printer is the will add stuff if needed. So bite the bullet and simply delete away.

  • Install the package for Firefox 30.0 on Sun Solaris 10 SPARC?

    Looking for the latest Firefox 30 Sun Solaris 10 SPARC package. It appears he either not yet displayed or development of Firefox on Sun Solaris has ceased.

    http://FTP.Mozilla.org/pub/mozilla.org/Firefox/releases/latest/contrib/
    http://FTP.Mozilla.org/pub/mozilla.org/Firefox/releases/latest/contrib-localized/

    http://FTP.Mozilla.org/pub/mozilla.org/Firefox/releases/30.0/contrib/
    http://FTP.Mozilla.org/pub/mozilla.org/Firefox/releases/30.0/contrib-localized/

    The package name should be similar to "firefox-30.0.en-US.solaris-10-fcs-sparc-pkg.bz2".

    Thank you!

    30.0 Firefox for Solaris was posted to http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/30.0/contrib/ July 4, 2014. Took them a while but better late than never.

  • Question of the user defined Type (UDT)

    Hello

    The attached file is NEITHER sample to call a VB6 vi.

    The following is declared in the declaration section:

    ' Global declarations
    Dim lvapp As LabVIEW.Application
    Dim vi LabVIEW.VirtualInstrument

    When I paste these statement in another project (that I'm working on), I get an error 'undefined user-defined type '.

    Can someone point out to me were in the sample, these type definitions are declared?

    Thank you

    Rafi

    PS the attachment is indeed xxx.rar and not xxx.zip.  I changed the name because .rar has not been accepted.  Please rename .rar

    Thank you

    I forgot to mark references to my project

    Project--> references--> LabView. Type library of xxx

    Thank you

  • Use of user defined function in mathscript containing a structure

    Hi, I am a novice user of LabView MathScript module,

    I have the following problem when integrating my code MATLAB, LabView, for HMM: in my program, I tried to call a MATLAB called "mixgaussinit.m" user-defined function, it shows this error...

    "

    I just noticed that these files appear to be copyrighted. My first question is do you have author permissions to post them in a public forum? If this isn't the case, then you can remove them. That being said, I have reviewed the code and it seems easy enough to work around your problems (provided that you have the copyright permissions). How to bypass the problems is to replace the fields of the struct with variables. There is of course allows you to change some definitions of functions for input and output the necessary variables which I think was the best 5 variables. You will also need to redo the code that uses a table of error checking cell. In total, I estimated about 30 minutes of work. I would have given you work around these files had not been protected by copyright. So, unfortunately, you will need to implement the work around you.

  • variables of user-defined data transfer

    Hello

    I use the etherCAT 9144 chassis and is only supported by this hardware FIFO range target. After a search, I realized that the only way to transfer data from FPGA to the host by using user-defined variables. But these variables do not support the notion of FIFO. So which is the best practice to transfer data after measures (provable 10 Hz measurement of 15 values) to host VI?

    Thank you

    As mentioned, the 9144 only supports the analytical engine.

    In regards to what you do, it really depends on the entire application. For example, what is the master? Are there other systems at issue here? Etc. It's a good read, in general, although it might not help this second right: http://www.ni.com/white-paper/14151/en/

    A high level, you need to decide what you need. If you have need for deterministic communication, low-latency over long distances from a RT controller, the 9144 is probably the right choice. If you need low latency + streaming over short distances to a RT controller, you should look into the RIO MXI chassis. If you need mainly not deterministic low speed (10 hz) data mixed with low flow continuous over long distances to a windows or host RT, then ethernet expansion rio (9146,7,8,9) is probably the right choice. If you need high speed continuous with low control latency over long distances to a windows or RT host, you need a full cRIO controller. Based on what you've posted so far, its uncertain is the right person.

    Lets say you're stuck with the 9144 for now. As you can easily hit 1 kHz scanning cycles, it should be perfectly possible to data 'stream' to 10 Hz. If you run the scan at 1 kHz engine, then you are 100 x oversampling. Where it gets complicated is this requirement of sync. By default, acquisition input/output is synchronized to the clock of the scan (and you can see when the clock of scan is set by a knot of e/s FPGA). However, you can take complete control of a module in the FPGA and read inputs and outputs at any time if you please. In other words, you can set up so when DIO0 goes high you immediately enjoy all the values of AI 15. You can then transfer these values HAVE switched to the host using the user-defined variables.

  • 9144 with FPGA and SGL EtherCAT custom user-defined Variables?

    Hello

    I currently have a small instrument driver (rs485) running on a chassis of 9144. The output values are communicated to the master EtherCAT using FXP numbers. I would like to pass these FXP to SGL, since I've upgraded to SP1 2012 LV with FPGA now supports numbers of SGL.

    Is this possible? I tried several times to create the Variables defined by the user of SGL in the project, but the date type is gray.

    Greetings from Munich,

    Götz

    Unfortunately, SGL is not a data type supported for communication to and from a 9144. The types of data available for the I/O user-defined variables are:

    * Fixed point
    * Signed integers (Int8, Int16, Int32, Int64)
    * Integers (UInt8, UInt16, UInt32, UInt64)
    * 32 bit field
    * Boolean

    More information on I/O user-defined variables can be found at:

    Programming EtherCAT i/o with FPGA Intelligence to: Differences in LabVIEW FPGA programming API
    http://www.NI.com/white-paper/10618/en#toc4

Maybe you are looking for