Auto-start OC4J process after Linux reboot

Oracle 11gR2, OC4J 10g (10.1.3.5.0), RHEL5 64 bit
Hi All,
I am trying to figure out how to get my oc4j process start at boot time. I already have a dbora script setup. I tried adding the following line to my dbora/dbstart script but it did not do anything:
#!/bin/sh
# chkconfig: 345 99 10
description: Oracle auto start-stop script.
ORACLE_OC4J_HOME=/u02/oc4j
JAVA_HOME=/usr/java/jdk1.6.0_21/
su - $ORACLE_OWNER -c "$ORACLE_OC4J_HOME/bin/oc4j -start"
I read somewhere that I may need to put the entire path like:
/usr/bin/java -jar /path/to/oc4j.jar &
Just not sure where and how to put that path in the file.
Thanks for your help all.
JrOraDBA

Hi,
To run oc4j in the background, on Linux
Execute the following command:
nohup ./oc4j -start &
to run oc4j in the background. The 'nohup' command ignores the hangup signal (closing the terminal window) and enables oc4j to continue running in the background.
In rare cases, oc4j will not shutdown cleanly with the standard command:
./oc4j -shutdown -port 23791 -oc4jadmin <admin_pwd>
In those cases, try the following command:
java -jar admin_client.jar deployer:oc4j:localhost oc4jadmin <admin_pwd> -shutdown
to stop the oc4j service.
Thanks,
Sharmela

Similar Messages

  • Auto start emctl dbconsole on server reboots...

    Hi All,
    I am using Linux 5.3 Os and 10g (10.2.0.4) version of database.
    I configured listener,db service and emctl service in auto start mode, means if my server gets rebooted then all these service should be up and running automatically.
    this script is working fine but the issue is with "emctl" status.
    after server reboots if I check emctl console through the url of "https://localhost:1158/em, then it is working .
    but If I check manually this service through "emctl status dbconsole" it display as "not running", if I am going to start through "emctl start dbconsole" it display is already running.
    now my question is: if this console is already up and running on machine reboots then why it disaply as "not running" when I check manually.
    can any one suggest me?
    Thanks,
    Jigisha...

    Hi,
    Have a look at the following threads.
    Autostart of Services
    Re: Autostart of Services
    Auto Start Oracle Services didn't work
    Re: Auto Start Oracle Services didn't work
    Regards,
    Hussein

  • Opmnctl failed-"start managed process after the maximum retry limit"-URGENT

    Hi All,
    I tried to start the opmn process after configuring BIGIP and securing the OMS.But opmnctl startall failed saying unable to start "HTTP_Server".
    [aime@stamt02 ~/TC3]$ ./oms10g/opmn/bin/opmnctl startall
    opmnctl: starting opmn and all managed processes...
    ================================================================================
    opmn id=stamt02:6200
    5 of 6 processes started.
    ias-instance id=EnterpriseManager0.stamt02.us.oracle.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server
    Error
    --> Process (pid=30117)
    failed to start a managed process after the maximum retry limit
    Log:
    /scratch/aime/TC3/oms10g/opmn/logs/HTTP_Server~1
    log file says :
    [aime@stamt02 conf]$ tail -f /scratch/aime/TC3/oms10g/opmn/logs/HTTP_Server~1
    07/04/24 04:29:24 Start process
    /scratch/aime/TC3/oms10g/Apache/Apache/bin/apachectl startssl: execing httpd
    07/04/24 04:29:29 Start process
    /scratch/aime/TC3/oms10g/Apache/Apache/bin/apachectl startssl: execing httpd

    Same problem for me also.
    I could start all other process except HTTP
    while starting that it is show a mesg as follows
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | N/A | Down
    HTTP_Server | HTTP_Server | N/A | Down
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | N/A | Down
    OC4J | home | 3596 | Alive
    [oracle@mrk bin]$ ./opmnctl startall
    opmnctl: starting opmn and all managed processes...
    ================================================================================
    opmn id=mrk.mydomain.com:6200
    0 of 1 processes started.
    ias-instance id=ias_hns.mrk.mydomain.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server
    Error
    --> Process (pid=3860)
    failed to start a managed process after the maximum retry limit
    Log:
    /u01/Oracle10gAS/opmn/logs/HTTP_Server~1
    Please any one help me.
    mail me at [email protected]
    Thanks in advance

  • Auto start Oracle instance in linux

    Can I configure oracle to auto start an oracle instance in linux environment ?

    Here are the steps to enable the oracle service start automatically during the system boot
    Login as root in Linux box to execute the following steps
    1. the flag set to Y in /etc/oratab file with the respective instance
    2. Copy the oracle script in /etc/init.d folder
    3. change the permission < chmod 755 <script filename>
    4. add the service <chkconfig --add <script filename>
    5 Put the service auto on <chkconfig <script filename> on >
    6. To verify the oracle service startup automatic < service <script filename> stop > < service <script filename> start >
    Regards
    N Jandial

  • Auto Start/Shutdown db on Linux (RHEL-4)

    Hello,
    I have posted a thread in Database General forum :
    Auto Start/Shutdown db on RHEL 4
    and there one suggestation i got that i have to raise my problem here itself only.
    Kindly look into the issue and help me.
    Thanks & Regards
    Girish Sharma

    I see you start this service at sequence "99". This is good, but there are other 99-level startup scripts as well. These are processed in alphabetical order. Do this:
    $ ls /etc/rd5d.d/S99*
    So, "dbora" will run even before rc.local and that may not be a good thing.
    Also, checking:
    $ ls /etc/rc5.d/K* | head -n15
    will show you the order in which services are shut down, again in alphabetical order.
    These steps may help:
    # /sbin/chkconfig dbora off
    # /sbin/service dbora stop
    # cd /etc/init.d/
    # /sbin/chkconfig --del dbora
    # mv dbora xxx-dbora
    # vi xxx-dbora
    # /sbin/chkconfig --add xxx-dbora
    # /sbin/chkconfig xxx-dbora on
    # /sbin/service xxx-dbora start
    What we are doing is:
    1) Remove existing dbora service
    2) Rename the service to something that shows last in an ls(1) command
    3) Edit the xxx-dbora script to change the chkconfig info from "99 10" to "99 01"
    4) Installed the service.
    Now, the start-up is done as the very last action and shutdown as the very first.
    Does this make any difference?

  • How to start oc4j instance in linux

    I need the oracle report server to generate reports via the call from JSP.
    But the response contains no data. But i think that the problem is that the oc4j instance is not started or the port number i am using in the URL is wrong.
    I have two questions in my mind.
    1) How to start the oc4j instance in linux
    2) How to find the port number of the oracle report server. will it be stored in any files.
    Pls provide some inputs on this query.

    Hello,
    1) How to start the oc4j instance in linuxYou have not specified what version, so for standalone you can use the following command:
    java -jar oc4j.jar
    In 10.1.3 you need to use the oc4j.cmd/oc4j.sh file to start and stop OC4J.
    If you are using the Application Server, then please use opmnctl start and stop the OC4J instance.
    2) How to find the port number of the oracle report server. will it be stored in any files.
    Please post this to the Reports forum.
    Hope this helps.
    Deepak

  • Auto start listener & DB in Linux

    Hello, I have installed oracle 10g on Red Hat 2.1 Ent. Ed. I have also modified the /etc/oratab file for auto starting the service. The service start auto but i have two problems, 1) The listener does not start automatically 2) When trying to connect from SQL*PLUS, it says Shared Memory Realm does not exists. The Database has to be started manually connecting sys as sysdba. How can i configure the two things to start automatically? Any idea? Thanks.

    Follow steps at the end of this article:
    http://www.oraclebase.com/articles/9i/Oracle9iInstallationOnRedHat21.php
    Script will start DB automaticaly during boot and also stops database during OS shutdown.

  • Ias-component doesn't start after linux reboot

    Hi,
    i've successfully installed the oracle infrastructure. it's all working until i reboot my rhes3 server, all the opmnctl ias-component are stopped/NONE and did not start automatically.
    how can i configure the oracle infrastructure to start automatically after reboot?
    dcm-daemon, oid, oc4j were all stopped and i couldn't restart it either.
    thanks.

    In my opinion, it is better to manage the starting and stopping of all Oracle services yourself - rather than leaving it to the OS to do this for you - there are many reasons for this......for instance - if you are running on a split tier configuration, and there is something wrong with the listener for your repository, then the mid tiers will not come up until the repository is up - and so on and so forth....
    I have one script that calls three scripts that check, stops or start all oracle services. I have the OID and portal tiers on one server - the start script is given below - and the stop and check scripts are all variations of this start script. Hope this helps.
    #!/bin/bash
    # - DATE
    # This scripts starts all Oracle Services on SERVER_NAME
    # Start the EM console on SERVER_NAME - Infra (Mid) Tier
    echo "Starting the EM Console on the Infra Tier"
    /u01/app/oracle/product/OAS/10.1.2/infra/bin/emctl start iasconsole
    /u01/app/oracle/product/OAS/10.1.2/infra/bin/emctl status iasconsole
    # Start EM Console on SERVER_NAME - Portal (Mid) Tier
    echo "Starting the EM Console on the Portal (Mid) Tier"
    /u02/app/oracle/product/OAS/10.1.2/portal/bin/emctl start iasconsole
    /u02/app/oracle/product/OAS/10.1.2/portal/bin/emctl status iasconsole
    # Start Services on the Infrastructure tier - including OID, HTTP Server
    # and OC4J_SECURITY
    echo "Starting Oracle Services on the Infrastructure Tier"
    /u01/app/oracle/product/OAS/10.1.2/infra/opmn/bin/opmnctl startall
    echo "Status of Oracle Services on the Infrastructure Tier"
    /u01/app/oracle/product/OAS/10.1.2/infra/opmn/bin/opmnctl status
    # Start Services on the Portal (Mid) tier - including Portal, OC4J_Portal,
    # Forms, Discoverer and OC4J_SECURITY
    echo "Starting Oracle Services on the Portal (Mid) Tier"
    /u02/app/oracle/product/OAS/10.1.2/portal/opmn/bin/opmnctl startall
    echo "Status of Oracle Services on the Portal (Mid) Tier"
    /u02/app/oracle/product/OAS/10.1.2/portal/opmn/bin/opmnctl status

  • SI4_TestDrive - SAP didnt start after linux reboot.

    Hello Forum,
    I installed the preview version (SI4_TestDrive) on Suse 9.1./DB2 The installation went through successful and I could connect to SAP from another system.
    But when I reboot the linux I couldn't start SAP.When I issue the command "startsap si4host" it  throws an error "no start profile found"
    My second problem is : JAVA Gui... I installed Java Gui but when I issue the command 'gui' as per the document the gui didn't start... says command not found .
    If any one has solution for this, I would highly appreciate. - Thanks
    Guru

    Hello I have the same problem but, I can't down load the new Test Drives... I get thisr...
    There is no version of the SAP on Linux Test Drive available for download. Please order it from the SAP Knowledge Shop: http://www.sap.com/shop -> SAP Knowledge Shop and search for the following material numbers:
    SAP NW2004s Testdrive MaxDB : 50077574
    SAP NW04s Testdrive Linux DB2 x86 : 50083014
    Then while trying to order thought the SAP Knowledge Shop, the order doesn't go throught. I get the following error:
    Error creating order. Our hotline has already been informed.
    Quantity             Product           Price            Line Total             Remove
    Item No.       Product description
         50077574       SAP NW2004s Testdrive MaxDB        
         0,00
    *0,00       EUR
    USD      
         0,00
    0,00       EUR
    USD      
    Purchase value (incl. VAT)          0,00
    0,00       EUR
    USD      
             plus Shipping costs       EUR      
    What can I Do?
    Thanks in advance,
    Carlos Gonzalez

  • Cannot start OC4J process using opmnctl

    opmn startall hangs and times out with error on OC4J_SECURITY
    Posted: Oct 3, 2008 9:46 AM Reply
    FYI.
    A few days ago our system drive, on our Development system, crashed and we had to rebuild it.
    All of our Oracle Installations remained intact,
    But
    I've had to: modify kernel parameters, install packages, etc., similar to pre-install procedures.
    After re-creating some of the oracle specific files in the /etc and /usr/local/bin directories
    I've been able to get our databases up and running.
    But
    I cannot start all of the necessary processes for our Application Server.
    It hangs for several minutes then returns this error message:
    ias-component/process-type/process-set:
    OC4J/OC4J_SECURITY/default_island
    Error
    --> Process (pid=6304)
    time out while waiting for a managed process to start
    Log:
    /oracle6/app/oracle/product/10.1.2as/opmn/logs/OC4J~OC4J_SECURITY~default_island~1
    There is no helpful information in the, above mentioned, log file.
    opmnctl status displays this information:
    ias-component | process-type | pid | status
    ======================================
    OC4J | OC4J_SECURITY | 0 | NONE
    ??? My thoughts are:
    1. I've neglected to re-create a necessary Oracle specific file on the system drive, or
    2. This is a port access issue due to firewalls or something of that nature.
    Can you please help me here?
    Thanks- Gary

    Thank you for the info.
    Also
    I forgot to add one additional thought:
    Could it be a linking issue, to some of the library files??
    I don't know why this thought has crossed my mind,
    but I know in times passed, (probably from years ago), I have had to do a relink of some sort to resolve
    whatever issue it happened to be at the time.
    I'd appreciate you thoughts on the 'relink' idea.
    In the meantime, I will double check myself on having satisfied all of the necessary install requirements.
    Thanks again- Gary

  • Exec() starts new process after my program finishes

    Hi all,
    I have a problem. I must create a subprocess and connect to it with socket.
    My process:
    0. String command_to_exec_subprocess="java -cp"+cp+" mypackage.MyMainClass "+args;
    1. Runtime.getRuntime().exec(command_to_exec_subprocess);
    2. socket.connect(new InetSocketAddress("localhost",25000), 3000);
    My subprocess:
    1. ServerSocket server=new ServerSocket(25000);
         JFrame jf=new JFrame();
         jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    jf.setVisible(true);
    2. Socket client=server.accept();
    I use: Windows 7
    JVM: 1.6
    Problem is that frame popsup after my process finished, socket can never connect to server socket. As far as I know this means that Runtime waits with starting subprocess till my main process ends... Does any one know how to make the process execute just after I use exec command?? I tryed to use ProcessBuilder but when I use it it doesnt even start the subprocess... When i run the command from cmd on windows7 it runs with no problem.
    Thx.

    Read, understand and apply the suggestions in this article: [When Runtime.exec() wont|http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html].
    When you fully implemented the suggestions in there (careful, it's a multi-page article!), then check if your problem still occurs.

  • Cannot start OC4J instance after specifying default java.security.manager

    Hi All,
    I am using OracleiAS 10.1.3.4 and trying to make use of the new User and Role APIs introduced in 10.1.3.1.
    While trying to get an object of IdentityStore using the following code, I got this error -
    java.security.PrivilegedActionException: oracle.security.idm.ConfigurationException: java.security.AccessControlException: access denied (oracle.security.jazn.JAZNPermission getOC4JIntegrationData)
    oidFactory = (IdentityStoreFactory) AccessController.doPrivileged(
    new PrivilegedExceptionAction()
    public Object run() throws IMException
    IdentityStoreFactoryBuilder builder =
    new IdentityStoreFactoryBuilder();
    return builder.getIdentityStoreFactory();
    I then tried specifying the default security manager in start JAVA options for my oc4j instance - Djava.security.manager. I also verified that my java policy file is present under $ORACLE_HOME/j2ee/oc4j_soa/config/java2.policy. But the issue is - once I put this default secirity manager in startup options in opmn.xml, the oc4j instance does not get started, it gives following error -
    08/12/30 02:58:22 Start process
    Dec 30, 2008 2:58:24 AM com.evermind.server.XMLDataSourcesConfig parseRootNode
    INFO: Legacy datasource detected...attempting to convert to new syntax.
    08/12/30 02:58:29 WARNING: Application.setConfig Application: default is in failed state as initialization failed.
    java.lang.ExceptionInInitializerError
    08/12/30 02:58:29 Error initializing server: Application: default is in failed state as initialization failed
    08/12/30 02:58:32 Fatal error: server exiting
    Any idea ? Any pointers please ?
    Thanks,
    Ankit

    Ankit,
    Check your syntax for the datasource. If you migrated from file-based to OID, then you should look at this link:
    http://download.oracle.com/docs/cd/E12524_01/relnotes.1013/e12523/oc4j.htmThere is a known issue when migrating from file-based to OIM\OID. Navigate to:
    12.2 JAZNMigration Tool Does Not Migrate ADFPrincipal Type Correctly
    -Michael

  • Cannot start OC4J instance - after java.lang.OutOfMemory errors

    Hi, I have successfully deployed an application (using Oracle Web Services, J2EE - EJB, TopLink ) to a new OC4J instance that we created. We use the OEM web site to manage the start/stop and deploy operations.
    Then we tried to run simultaneously 10 clients....against the server app... ran ok for a while and after approx. 5 to 10 min... java.lang.OutOfMemory errors were being thrown at the client.
    After a set of OutOfMemory errors, other clients received errors like the ones show below:
    Errors from the top link log
    2003.09.24 09:39:59.630--ClientSession(1337286)--Thread[ApplicationServerThread-6,5,main]--EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3.3 (Build 430)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: Bigger type length than Maximum
    INTERNAL EXCEPTION: java.sql.SQLException: Bigger type length than Maximum
    ERROR CODE: 17412LOCAL EXCEPTION STACK:
    EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3.3 (Build 430)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: Bigger type length than Maximum
    INTERNAL EXCEPTION: java.sql.SQLException: Bigger type length than Maximum
    ERROR CODE: 17412
    at oracle.toplink.exceptions.DatabaseException.sqlException(Unknown Source)
    at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(Unknown Source)
    at oracle.toplink.threetier.ServerSession.executeCall(Unknown Source)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(Unknown Source)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(Unknown Source)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.selectOneRow(Unknown Source)
    at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectOneRowFromTable(Unknown Source)
    at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectOneRow(Unknown Source)
    2003.09.24 09:40:02.365--ClientSession(1337286)--Thread[ApplicationServerThread-6,5,main]--EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3.3 (Build 430)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: Refcursor value is invalid
    INTERNAL EXCEPTION: java.sql.SQLException: Refcursor value is invalid
    ERROR CODE: 17442LOCAL EXCEPTION STACK:
    EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3.3 (Build 430)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: Refcursor value is invalid
    INTERNAL EXCEPTION: java.sql.SQLException: Refcursor value is invalid
    ERROR CODE: 17442
    at oracle.toplink.exceptions.DatabaseException.sqlException(Unknown Source)
    at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(Unknown Source)
    at oracle.toplink.threetier.ServerSession.executeCall(Unknown Source)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(Unknown Source)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(Unknown Source)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.selectOneRow(Unknown Source)
    at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectOneRowFromTable(Unknown Source)
    at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectOneRow(Unknown Source)
    at oracle.toplink.queryframework.ReadObjectQuery.execute(Unknown Source)
    at oracle.toplink.queryframework.DatabaseQuery.execute(Unknown Source)
    at oracle.toplink.queryframework.ReadQuery.execute(Unknown Source)
    2003.09.24 09:40:03.553--ClientSession(6073931)--Thread[ApplicationServerThread-23,5,main]--EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3.3 (Build 430)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: Protocol violation
    INTERNAL EXCEPTION: java.sql.SQLException: Protocol violation
    ERROR CODE: 17401LOCAL EXCEPTION STACK:
    EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3.3 (Build 430)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: Protocol violation
    INTERNAL EXCEPTION: java.sql.SQLException: Protocol violation
    ERROR CODE: 17401
    at oracle.toplink.exceptions.DatabaseException.sqlException(Unknown Source)
    at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(Unknown Source)
    at oracle.toplink.threetier.ServerSession.executeCall(Unknown Source)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(Unknown Source)
    2003.09.24 09:41:15.173--ServerSession(3066938)--Thread[ApplicationServerThread-19,5,main]--EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3.3 (Build 430)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: ORA-01403: no data found
    INTERNAL EXCEPTION: java.sql.SQLException: ORA-01403: no data found
    ERROR CODE: 1403LOCAL EXCEPTION STACK:
    EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3.3 (Build 430)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: ORA-01403: no data found
    INTERNAL EXCEPTION: java.sql.SQLException: ORA-01403: no data found
    ERROR CODE: 1403
    at oracle.toplink.exceptions.DatabaseException.sqlException(Unknown Source)
    at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(Unknown Source)
    at oracle.toplink.threetier.ServerSession.executeCall(Unknown Source)
    Im not sure if this is due to a memory leak or something in my app ? Or does Oracle IAS / Toplink have any such issues for which any possible patches are available ?
    Could anyone please direct me in the possible right direction !
    Thanks,
    Krishna

    Hi,
    We have had this problem too, it only started after we deployed to production and got some load on our application server. We are using JRun as our application server.
    We found that Macromedia (JRun) already addressed the issue in general - that if you get java.lang.OutOfMemory errors, then you need to increase the heap size.
    Previously we had been using our own caching mechanism and never ran into this problem. Since we decided to go with TopLink (which has caching) we no longer use our own caching mechanism... but now we have this problem.
    We have chosen to use FullIdentityMap for caching, but didn't think we would run out of memory in the JVM. Is there a suggested or minimum JVM memory requirement to run TopLink?
    Thanks,
    Aaron

  • Auto start OC4J instance if not running?

    Is there a way for get Forms Developer to start my OC4J instance if its not running or would this be a bad/impractical idea? Its a pain having to navigate to the menu option to start it all the time.
    Thanks
    Richard

    Richard,
    this is an enhancement that is on our list, not sure when this will be in.
    Frank

  • Spotify keeps auto-starting minimized, even after selecting "No"

    This issue started after the 1.0 update. For the option of starting Spotify when logging onto the computer, I always set it to be "No". When I do this, I see the option is gone from my Windows startup. However, when I close Spotify and open it again, I see it reverted back to "Minimized" and the startup entry re-appears.  Is this a known bug? Do I need to reinstall? Thanks.

    marriedgeek wrote:
    I'm using Windows 8.1. All this worked fine before this 1.0 update. My exact version is 1.0.1.1060.gc75ebdfd. 
    I have not tried a fresh installation just  yet. 
    I am using CCleaner, actually. This is how I've been removing the startup entry that keeps coming back. 
    Thanks.
    Try the reinstall and see if it changes anything.
    Does disabling instead of deleting the startup entry do anything?
    If it doesn't, I'll get back to you tomorrow if the same thing happens for me once I've tested it (I'm on Win7 though). If it does it's likely to be a bug and I'll escalate the thread to the staff.
    Anthony

Maybe you are looking for

  • T-SQL TechNet Gurus Announced for June 2014!

    The Results are in! and the winners of the TechNet Guru Competition June 2014 have been posted on the Wiki Ninjas Blog. Below is a summary, heavily trimmed to fit the size restrictions of forum posting.  BizTalk Technical Guru - June 2014   Steef-Jan

  • Printing Invoices using T VF03

    Hi I am trying to print invoices using Vf03. I can print most of the invoices (or the numbers that they gave me) but two. When I enter the number for one of those two and tell it to print from the menu it says on the bottom "output could not be issue

  • JTree: how not to render the "tree connecting lines"

    I have a JTree. I would like that my custom tree renderer (using windows LAF) did not paint the dotted line that connect the hierarchy nodes. setting the icon to null in the default renderer only do not paint the folder. How can I disable also the pa

  • LSMW transaction data upload

    Dear All,       While we are entering data in F-02, we have to Give GL accounts and posting keys 2 times, in lsmw after recording , while field mapping system is giving only one field name for gl account , and only one field name for posting key, whe

  • IPS 1304 & IPS-6-OOO_FULL

    Hello - I am seeing a whole bunch of the below messages in my logs. Can anyone tell my why this is happening and how I can resolve the issue.  I have tried tunning the setting below with no luck. Dec 16 08:55:47.195 WA: %IPS-4-SIGNATURE: Sig:1304 Sub