How to manually start telnetd service With Solaris 8

"ps -ef | grep telnetd", shows telnetd daemon is not running (though telnetd is listed and uncommented in /etc/inetd.conf). Checked /etc/services and /etc/hosts, but found no abnormality. How do I manually start up telentd service? Why telnetd failed to startup automatically upon system startup.

You're kinda are walking on your own comments ...
in.telnetd doesn't "run" at system startup. The inetd daemon controls in.telnetd and inetd is controlled by /etc/inetd.conf. Assuming in.telnetd is uncommented in /etc/inetd.conf, just run "netstat -na | grep 23" - you should see port 23 in a LISTEN state. inetd is doing the listening in this case. Once someone actually tries to connect to telnet on that server, THEN you'll see a in.telnetd process physically running on the box because inetd will fork off in.telnetd and hand the incoming telnet session to this new process.
P.S. don't use telnet unless you have some application that physically must use telnet to do something on a box. Disable telnet completely and use SSH.

Similar Messages

  • How i can start oracle service at Solaris

    I want to start the oracle service which is created at databse TEMP.
    How I can start this Oracle service.

    I got the error.
    ORA-010134 ORACLE NOT AVAILABLE.
    ORA-27101 shared memory realm does not exist.
    SVR4 Error. No Such file or Directory.

  • Unable to start workspace service on Solaris

    Hi,
    We are having some issues starting workspace services on solaris evviroment, when we start the workspace using the command "/app/hyperion/common/workspacert/9.5.0.0/bin/startAgent.sh" it starts only workspace agent, i see only the below process running on my server..
    /app/hyperion/common/JRE-64/Sun/1.5.0/bin/java -DSname=wksagent -DCMC_AGENT=true
    Actually there should be another service for workspace as below..
    /app/hyperion/common/JRE-64/Sun/1.5.0/bin/java -DSname=workspace -DAGENT_TASK=0
    My shared services is up and running fine, please direct me how to troubleshoot this issue. there are no log files which i can see what is the issue.
    Aslo note we are starting all the services in a prefered order
    Please let me know if you need further details.
    Thanks

    Set the Number of File Descriptors to unlimited. Under heavy load, WebLogic
    Server may use up all available file descriptors. You can raise the file
    descriptor limit permanently by setting rlim_fd_max and rlim_fd_cur in the
    /etc/system file and rebooting. Set rlim_fd_cur=256 (soft limit),
    rlim_fd_max=1024 (hard limit).
    see http://www.weblogic.com/platforms/sun/index.html
    "Satya Chauhan" <[email protected]> wrote in message
    news:3a679edf$[email protected]..
    I get the following error while starting Weblogic--------d.so.1:/usr/java/bin/sparc/native_threads/java: fatal: /dev/zero: open failed: Too
    many open files (/usr/java/lib/sparc/native_threads/libnet.so)ld.so.1:
    /usr/java/bin/sparc/native_threads/java: fatal: /usr/java/lib/libnet.so:
    open failed: Too many open files
    (/usr/java/lib/libnet.so)***************************************************
    ************************The WebLogic Server did not start up
    properly.Exception raised: java.lang.UnsatisfiedLinkError: no net in shared
    library pathjava.lang.UnsatisfiedLinkError: no net in shared library path
    at java.lang.Throwable.<init>(Compiled Code) at
    java.lang.Error.<init>(Compiled Code) at
    java.lang.LinkageError.<init>(Compiled Code) at
    java.lang.UnsatisfiedLinkError.<init>(Compiled Code) at
    java.lang.Runtime.loadLibrary(Compiled Code) at
    java.lang.System.loadLibrary(Compiled Code) at at at
    weblogic.t3.srvr.T3Srvr.checkAccess(Compiled Code) at
    weblogic.t3.srvr.T3Srvr.main(Compiled Code) at
    weblogic.Server.startServerStatically(Compiled Code) at
    weblogic.Server.main(Compiled Code) at weblogic.Server.main(Compiled
    Code)***********************************************************************

  • Problem in starting Integration service with DAC 11g

    Hi friends,
    Im @ the step of registering integration service and the repository service in DAC 11g. I can start the Repository service well in DAC, but facing issue in starting integration service with DAC, while trying to test connection im getting a message like
    Failure connecting to BIA_IS!
    Im not sure the reason to this problem in DAC. I have also setted the necessary environment variables like INFA_HOME and INFA_DOMAINS_FILE referring the domains.infa file like
    INFA_DOMAINS_FILE = C:\Informatica\9.1.0\domains.infa
    Also checked with the dac_env file which has the below contents
    REM -----------------------------------------------------
    REM
    REM ENVIRONMENT VARIABLES THAT YOU MAY NEED TO SET FOR
    REM  PROPER INFORMATICA 8.x or 9.x HANDSHAKE.
    REM
    REM INFORMATICA_SERVER_LOCATION denotes installation of
    REM Informatica components. Example:
    REM C:\Informatica\PowerCenter9.1
    REM
    REM DOMAINS.INFA_FILE_LOCATION denotes the location
    REM (including name) of domains.infa file
    REM
    REM Please make sure to set correct values for variables
    REM mentioned above
    REM
    REM -----------------------------------------------------
    set INFORMATICA_SERVER_LOCATION="C:\Informatica\9.1.0"
    set DOMAINS_INFA_FILE_LOCATION=C:\Informatica\9.1.0\domains.infa
    set INFA_CMD_STYLE=8
    set PATH=C:\Informatica\9.1.0\server\bin;%PATH%
    set INFA_DOMAINS_FILE=%DOMAINS_INFA_FILE_LOCATION%
    What could be the problem and where to check with the logfile related to the integration service failure in DAC.
    Thanks in advance.
    Regards,
    Saro

    Hi guys,
    The issue is sorted out. The below are the two precautions to be considered.
    *) Make sure of INFA_HOME/Server/bin exist @ the end in the PATH variable.
    *) For each and every change in the PATH variable, it is better to restart the services(both infa and DAC) then and there for the changes to take effect.
    Regards,
    Saro

  • How do you start a loop with an event and end the loop when u release ....

    How do you start a loop with lets say an event of some sort, whether it be holding down a key or pressing the mouse click and then stopping the loop when you release that key or mouse button.?
    double c = 1.8, i = 1, max = 90, exp = 0;
    final double inc = 0.002; //speed at while it increases
    boolean f = false, g = false;
    while (true)
        while (f == false && stopMeter == false) //increasing speed going up to 90
            exp = Math.pow (c, i);
            i += inc;
            pAngle.setText (Math.round (exp) + "");
            if (exp > max)
                f = true;
                g = false;
            } //end if
        } //end while
        while (g == false && stopMeter == false)  //decreasing speed going down from 90
            exp = Math.pow (c, i);
            i -= inc;
            pAngle.setText (Math.round (exp) + "");
            if (exp < 1)
                g = true;
                f = false;
            } //end if
        } //end while
    } //end whilethis is a snippet of my increasing increments. Its for an angle meter. I can't get it to stop, when the user clicks or does something... the program just gets stuck in an infinite loop. I am still new to java and i do not know how to fix this.

    You are in the wrong forum. Try this one instead: http://forum.java.sun.com/forum.jspa?forumID=31
    /M

  • How can i unlock the service with AT&T or other carrier? when i was in overseas ?how much does it cost to unlock?

    how can i unlock the service with AT&T or other carrier? when i was in overseas ?how much does it cost to unlock?

    The only way to unlock a locked device is through the carrier. If it is locked to AT&T, you will have to contact them to get it unlocked.
    Cheers,
    GB

  • How can i discover bonjour service with safari on IPAD?

    How can i discover bonjour service with safari on IPAD?
    I can use safari on MAC to discover bonjour service on network, but how can i do that with safari on IPAD?
    Thanks a lot.

    unfortunately, You cannot get bonjour on ipad. But however, you can get a program on the mac (assuming you have a mac) called printopia (http://www.ecamm.com/mac/printopia/) which will turn your printer in to AirPrint when the mac is on. it works very well all the instructions are on the website

  • My hard drive died.  How can I start my computer with my Time Machine external drive?

    My hard drive died.  How can I start my computer with my Time Machine external drive?

    Pondini wrote:
    If you're on 10.7.2, yes, you can boot from the TM drive.
    Beep, beep, beep....
    Hold ON! Getting a call on the red phone.
    "Yes...yes.... ok!"
    It's confirmed, H.e.l.l. has finally frozen over!  TM drives are now bootable!
    Still it's not a real bootable clone, can't run the computer off the external drive for long in only Recovery mode, still requires the boot drive to be replaced if it not functional, and with TM backing up every hour, isn't going to offer much software protection as the TM drive is just as likely to be as messed up as the internal boot drive.
    For a iMac it still requires the computer to be taken in to Apple for a drive replacement, as ONLY Apple can do it due to proprietary connections and firmware on the iMac hard drives.
    But it is bootable!
    The backup time factor can be controlled using TimeMachine Editor, from every hour to just when the user thinks it's necessary.
    Apple lurches slightly forward!  Hurray!
    Question is, can one restore from earlier stable TM's or just the last one? In this bootable fashion?

  • Start Database Service with another user

    Hi Everyone ,
    i've a little problem with the Oracle 10 Console Service on a W2K3 server.
    I want to start that Service with another user as "Local System"
    I created a local user that is member in the "ORA_DBA" group and in the local Admin Group. But the Service won't start. When i start the service with the "local system" account it starts.
    Is there another possibility to start the service this way or where is my error ?
    Greetz Byte

    Hi
    I searched metalink and came across a note that mentioned following actions. I hope it works in your situation.
    1. Launch locally on the windows host the Local Security Policy tool
    2. For the domain user or local user starting the Management Agent service
    Give the following Advanced Privileges
    - Log on as a batch job
    - Act as part of the operating system.
    - Adjust memory quotas for a process
    or (for windows 2000 and Windows NT)
    - Increase memory quotas"
    - Replace a process level token.
    3. Ensure that the same local user or domain user starts all the other Oracle Windows services monitored by the Management Agent
    The same fix must be applied for the standalone dbconsole service on windows.
    Rgds
    Adnan

  • How do I start "System Services"

    How do I verify my authority to start "system services"?
    As I attempt to add the update for itunes, I get the following error:
    I've had itunes for years now and never have I seen this. I have attempted an uninstall as well as the updates.

    Hi Stygious,
    If you are having issues with iTunes after an attempted update, you may find the following article helpful:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Regards,
    - Brenden

  • How we can start all services automaticaly

    dear friends,
    i have oas 4.0 on windows nt 4.0 with service pack 3.
    i need when i start windows nt all services should be start automaticly i.e. listener etc.
    i tried through control panel and select services and select startup automaticly but it could not startup automaticly when windows start.
    how can i solve or start all services automaticaly.
    thanks in advance
    nikunj thaker

    You may need to set up from your windows NT to to control panel, select SERVICES, go to all the oracle related services and set them to startup automatically.

  • How to build an OData Service with Gateway Service Builder (NO DDIC, BOR import)

    Hi Community,
    I hope to get an answer here to finish my project. I´m a newbie to the sap gateway service builder. Please provide me a helping hand.
    I have a problem I´m sure someone out there can help me.
    I need to create an sap ui app, which is monitoring our database behaviour (->transaction st06) is there someone who knows how to build a OData Channel with sap gateway service builder without importing a BOR- Object, or a DDIC?
    Or how to build an OData channel which exposes the database (monitoring) data from ST06?
    I would really appreciate if someone could help me.
    THANKS!
    JOE

    Hello Joe,
    If u do not want to import any Structure or BOR- Object, u can follow below steps :
    1. Create ur data model by adding the properties manually in SAP GW service builder with correct Edm    types.Doing this would be pain in my opinion ( sometimes we are forced to do this but no other option    doing this way )
       Create associations & navigation needed. 
    2. U can generate run-time objects.
    3. Go to appropriate classes and implement methods with ur Business Logic.
    4. Register ur service & consume.
    U can also import RFC to create data model and create mapping as per required by implementing correct method as well.
    once u do this generate objects and register service and consume it.
    Check this out for ur info :
    Detailed step by step procedure for Creating Gateway Service with all the CRUD Operations and testing them in Service Explorer Part1 
    Regards,
    Ashwin

  • How to create a web services with Developer Studio?

    hi all,
    I would like to know how can I create a Web Services with Developer Studio 7.0, but a try because I could not publish it to consume.
    thanks!

    Thanks for your answers
    Web Services try when I get the following error:
    http://img386.imageshack.us/my.php?image=errorms9.jpg
    <--Localization failed: ResourceBundle='com.sap.caf.rt.resources.CAFExceptionResources',
    ID='MMR_BO_NOTFOUND', Arguments: ['Prueba2Service']-->
    I do not know what the cause of error
    thanks

  • How to use "start" and "duration" with HLS stream

    Hi all,
    is it possible to use "start" and "stop" with HLS stream like rtmp stream?
    If yes, how?
    thanks in advance.

    Hi,
    This is completely player side fucntionality you are asking for. However, I guess default player that comes on safari (iPad), quicktime has the player timeline with stop and start option. But if not, you can create your custom player using exposed api of AVPlayer. Check-out AVPlayer api's.
    FMS, by nature of protocol will respect the request to get the data(in case of client-play-start)  and will not automatically push the data to the client if not asked for by the client (as in case of client-play-stop).
    Thanks

  • How do i start a chat with someone?

    when i set it up -- i used my aol im account.
    but i already have aim on this computer -- so i guess that was a mistake.
    i thought i switched over to my .mac account -- but it's acting weird.
    i have a friend online right now that i want to contact -- and start a chat with -- but when i try and add participants... i click "Other..." put his name in as "person i want to start the chat with" but there are no services in the drop down menu to choose from.
    any help would be much appreciated!
    thanks in advance

    Hi,
    So you have iChat with an @Mac name as your Screen name.
    Do you have anyone in you Buddy List ?
    However you do know a Buddy's Name and you are staring a New Chat with him.
    I am not sure where you are reading "Other"
    A New Chat from the File Menu will start a group chat and people in your Buddy List can be dragged there and Invited
    A New Chat with Person will ask you to select an account Type/Service and the Buddy's name.
    Right Clicking a Buddy in the Buddy list will produce a Pop Up menu to chose a chat type if that is what you meant as will highlighting the Buddy and using the Buddies menu.
    If you started a single chat with someone then you have to start a Group chat before you can invite an extra Buddy.
    11:12 PM Saturday; November 3, 2007

Maybe you are looking for

  • How do I call a SAP RFC from an Oracle Form using webutils CLIENT_OLE2?

    Hi guys, Your help on this problem would be greatly appreciated. We have an older forms 6i application which we are currently updating to 10g (which is a pain itself... but that's a different story.) which currently uses unssupported c++ routines to

  • Rendering out

    Hello, I am using AE CS 5.5. I created a composition 1440x 1080 that will be shown on closed citcuit TV. Its just animations of various graphics. No live action video. When I was done, I rendered it out, Quality: best, Resolution:full, size: 1440x 10

  • Meeting requests from Mail to iCal - 10.4.6

    Updating to 10.4.6 seems to have broken my ability to import into iCal meeting requests sent from Outlook to an Exchange account in Mail. In 10.4.5 I was able to command-[ and get the meeting.ics attachment which, when doubleclicked, would load the e

  • Hyperion Shared Services JAPI.

    Hi , I am looking for Shared Services JAPI to fetch couple of things, but when i am running the code i am getting the below errors. I guess i am not able to find proper JAR files to Import. Any suggestions on the below ?? Djavax.net.ssl.trustStore=C:

  • New 2t Time Capsule shuts down: light is off, doesn't show up in network

    2T Time Capsule completely shuts down: no activity light at all, doesn't show up in network registry, and is cold to the touch. If I unplug and replug, it will work again, but will eventually shut down again. Is this a problem with a sleep proxy serv