How to get server password

I want to share my windows laptop with macbook pro .....for that I am suposed to type my SERVER username & password ......So I want to know where I can get this on my mac OSX....and if same thing you know for windows then please let me know for that too......Thank you

Hello,
Dont you think it would create a Havoc if one could specifically see other admins password.Apply Gumption, you wont use SQL server if that feature is there.You cannot obtain password for other users.
If user forgets it change it ,there is no restriction on changing.
Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

Similar Messages

  • How to get the password of a password protected Excel Sheet using java/jxl

    Hi ,
    how to get the password of a password protected Excel Sheet using java / jxl program.
    plz any one help me .
    Ramesh P
    [email protected]

    If they've implemented the password system correctly there probably isn't a way of getting the password at all.

  • How to get oc4jadmin password

    Hi,
    I forget oc4jadmin password. How to get oc4jadmin password ? Is there any file where I can look? How to change oc4jadmin password without effecting application?
    Please advice.

    you change oc4jadmin password in EM Console
    Oc4j_soa > Security Providers > Instance Level Security > Realms > Click oc4jadmin and modify password and Return to the Cluster Topology page and restart the OC4J instance.
    you can also change through system--jazn-data.xml and restart oc4j
    <user>
    <name>oc4jadmin</name>
    <display-name>OC4J Administrator</display-name>
    <guid>41A2E560C96711DABFD08D3BF8B780C4</guid>
    <description>OC4J Administrator</description>
    <credentials>{903}4nlfYYDwaqMJipVbGXuS2ce8egfwBPqp</credentials>
    </user>
    Modify credentials to say welcome123.
    <credentials>!welcome123</credentials>
    Regards,
    Deepa

  • How to get "clear passwords" on WGM

    When adding a user or editing an existing one, there is the problem that password fields (accounts section, tab "general") just show points (*) instead of the real password.
    I find this annoying, since there is definitively nobody that looks over my shoulder when I work in WGM
    It just forces me to keep a database with all my users' passwords in the case they have forgot theirs and just want to get remembered to the old ones.
    Is there a way (maybe a manually done setting in a *.plist file or anything else) to get readable password fields ?

    But let me say that is absolutely pointless to be paranoid about cgi's/scripts/
    whatever on one side and on the other side have a relaxed password "policy".
    You read my other thread, thanks (if you can provide me some tips, please do so there).
    Well, in the case a user's password is spread, the worst thing that could happen is someone unauthorized reads the user's e-mails and modifies his/her website (my users do not have access to any other service). Although this would be worst enough for the user, it doesn't hurt the server itself (don't know if system integrity would be the matching term, but let's use it).
    I agree fully to you that a password should not last too long... ideally the user could change its password without my assistance from time to time. But this seems not to be possible (you or someone else directed me to a plugin for WebMail/SquirrelMail that can be used to alter passwords from user's side, but I feared to install it so far since I know too less about SquirrelMail and how to bug-fix it in case of problems).
    But since I'm the only person that access my computer, the passwords are stored secure enough. Furthermore the fact that WGM replaces typed in chars to "*" for passwords doesn't make them secure. It just hides them when someone looks over my shoulder.
    Anyway, thank you for sharing your thoughts. If you can tell me how to make passwords visible in WGM, please don't hesitate and let me know. I will not take you responsible in case of stolen passwords. Promised

  • How to get server certificate before sending off confidential content?

    If my mail client knows for example the SHA1 value of TLS/SSL enabled receiving MTA's certificate, subversion of DNS and Root-CAs could be prevented if after establishing the connection, the com.sun.mail.smtp.SMTPTransport.serverSocket were accessible to retrieve that certificate:
    X509Certificate[] certs = null;
    if (serverSocket instanceof SSLSocket) {
    SSLSocket ssl = (SSLSocket) serverSocket;
    certs = ssl.getSession().getPeerCertificateChain();
    byte[] sha1 = MessageDigest.getInstance("SHA1").digest(
    certs[0].getEncoded());
    //TODO now validate with the sha1 you already know
    Unfortunately com.sun.mail.smtp.SMTPTransport (let alone javax.mail.Transport) have a public getServerSocket() or even better a getX509ServerCertificates() method.
    Any other ideas how to get at those certificates short of using gnu classpathx?
    See also http://forum.java.sun.com/thread.jspa?threadID=615422

    I found the solution for server side. We will use Handler. And base on technology to generate web service's stuff (my server using axis, but my client using jaxWS), we have different ways to implement and deploy Handler. My purpose is only write input/output xml message to log, so with my server, I only adjust server-config.wsdd as bellow:
    <deployment
    xmlns="http://xml.apache.org/axis/wsdd/"
    xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
    <handler name="log" type="java:org.apache.axis.handlers.LogHandler"/>
    <globalConfiguration>
    <requestFlow>
    <handler type="log"/>
    </requestFlow>
    <responseFlow>
    <handler type="log"/>
    </responseFlow>
    </globalConfiguration>
    <transport
    name="http" pivot="java:org.apache.axis.transport.http.HTTPSender"/>
    </deployment>
    But now I still can not control directory and log file name yet (now it's axis.log by default).
    Edited by: mydesktop on Nov 15, 2010 6:20 PM

  • How to get server name and port of OSB server in a proxy service ?

    I need to get the server name and port of the OSB server inside a proxy service. How can I get this?

    You may use java callout for this purpose -
    How to get ServerName and ApplicationName in OSB (ALSB) ?
    Regards,
    Anuj

  • How to get server Proxy of weblogic10.3

    oracle.security.jazn.ApplicationServerProxy getProxy() used to get server proxy of OC4J.
    Any thing similar stuff in Weblogic 10.3 to get server proxy of Weblogic 10.3? ( I am using JDev11g in-built Weblogic10.3 server.)
    Thanks in advance for your help.
    Cheers!
    Raveen

    This would get you there faster!!!!
    http://e-docs.bea.com/wls/docs61//////javadocs/weblogic/management/configura
    tion/ServerMBean.html
    "Gaurav Khanna" <[email protected]> wrote in message
    news:3cacfd87$[email protected]..
    Hi,
    Please look at the ServerMBean documentation. There is a getName() defined
    and that, I think, specifies the name of the server.
    http://e-docs.bea.com/wls/docs61//////javadocs/index.html
    Hope that helps
    "tony pan" <[email protected]> wrote in message
    news:[email protected]..
    The server name. Host name we can get from java.net API. Maybe, I waspresuming.
    JNDI tree seems to be a logic place to put it. Thanks in advance.
    Rob Woollen <[email protected]> wrote:
    tony pan wrote:
    Does anyone know how to get the name of the application server
    instance
    at runtime?
    Which name do you mean? The host name or the server name (ie the name
    in the Server
    MBean)?
    Obviously, it is in the server's JNDI tree. But what is the JNDI namefor this?
    Why is it obviously in the JNDI tree?
    -- Rob
    Our application needs to configure itself based on this server name.Thanks. We
    use weblogic 6.1.

  • I need to know how to get my password for when i want to download apps, i totally forgot it.. How do i get it back !?

    okay so i bought this ipod from a pawn shop
    && the person crap is still on here . && when
    i go to the App store on the ipod a thing pops
    up && says
    Apple ID Password
    && it says her email
    && Then there is a place for her password..
    I have no idea how to get her crap off of My new
    ipod.. :/ Help Me Someone !!!

    You do not have the legal right to use the last owners content, nor is it legal for you to hack her account by getting her password.
    You need to erase the ipod and pout your content on it.
    iPod touch User Guide (For iOS 4.3 Software)

  • How to get server time in Oracle Internet Directory (OID)?

    Hi,
    How to get current time on OID server? As in case AD, RootDSE contains currentTime attribute, Is there any attribute in OID through which I can get current time on server.
    Thanks in advance for any help.
    Regards,
    Umesh

    Hi,
    wrong forum, use Identity Manager
    Frank

  • How to get administration password

    Please advice how to get administrator password

    With 10.4, 10.5 or 10.6 put your install DVD into the optical drive (CD/DVD drive) and reboot. Be sure to either use the disc that came with your Mac, or, if you installed a later Mac OS X version from disc, use the newer disc. As soon as you hear the boot chime, hold down the "c" key on your keyboard (or the Option Key until the Install Disk shows up) until the apple shows up. That will force your MacBook to boot from the install DVD in the optical drive.
    When it does start up, you'll see a panel asking you to choose your language. Choose your language and press the Return key on your keyboard once. It will then present you with an Installation window. Completely ignore this window and click on Utilities in the top menu and scroll down to Reset Password. After resetting the password use Startup Disk from the same menu to choose your hard drive for startup and restart.
    With 10.4, 10.5 or 10.6 if you don’t have an install disk check this article. http://www.macyourself.com/2009/08/03/how-to-reset-your-mac-os-x-password-withou t-an-installer-disc/
    If you're running 10.7 Lion check this article
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/
    With 10.8 restart holding the Command and R keys, then from the drop down
    of actions, choose Terminal.  When Terminal opens type:
    resetpassword
    and press enter.
    You will get a reset password window from which you can select the user you want to reset, the admin account in your case.  Type a new password twice, do not do anything with the hint box.  Click Save, then confirm you want to do this reset.  Then click apply to the user's home directory, and click the apple in the left corner, and choose Restart.

  • How to get server data without reading from the socket stream?

    My socket client checks for server messages through
                while (isRunning) { //listen for server events
                    try {
                            Object o = readObject(socket); //wait for server message
                                tellListeners(socket, o);
                    } catch (Exception e) {
                        System.err.println("ERROR SocketClient: "+e);
                        e.printStackTrace();
                    try { sleep(1000); } catch (InterruptedException ie) { /* ignore */ }
                }//next client connectionwith readObject() being
        public Object readObject(Socket socket) throws ClassNotFoundException, IOException {
            Object result = null;
    System.out.println("readObject("+socket+") ...");
            if (socket != null && socket.isConnected()) {
    //            ObjectInputStream ois = new ObjectInputStream(socket.getInputStream());
                ObjectInputStream ois = new ObjectInputStream(new DataInputStream(socket.getInputStream()));
                try {
                    result = ois.readObject();
                } finally {
    //                socket.shutdownInput(); //closing of ois also closes socket!
        //            try { ois.close(); } catch (IOException ioe) { /* ignore */ }
            return result;
        }//readObject()Why does ois.readObject() block? I get problems with this as the main while loop (above) calls readObject() as it's the only way to get server messages. But if i want to implement a synchronous call in adition to this asynchronous architecture (call listeners), the readObject() call of the synchronous method comes to late as readObject() call of the main loop got called before and therefore also gets the result of the (later) synchronous call.
    I tried fideling around with some state variables, but that's ugly and probably not thread safe. I'm looking for another solution to check messages from the server without reading data from the stream. is this possible?

    A quick fix:
    - Add a response code at the beginning of each message returned from the server indicating if the message is a synchronous response or a callback (asynch);
    - Read all messages returned from the server in one thread and copy callback messages in a calback message queue and the synch responses in an synch responses queue;
    - Modify your synchronous invocation to retrieve the response from the responses queue instead from the socket. Read the callback messages from the corresponding queue instead from the socket.
    Also take a look at my website. I'm implementing an upgraded version of this idea.
    Catalin Merfu
    High Performance Java Networking
    http://www.accendia.com

  • HT1766 need a paassword to restore from a 4 to 5 how do get forgotten password

    need a paassword to restore from a 4 to 5 how do get forgotten password

    bobbiejo2112 wrote:
    where should they be?
    "In Outlook (Windows) or Contacts (Mac)"

  • How to get Server Name and port. Urgent.....

    Hi,
    Please let me know how can i get the server name and port without using request object.
    I am getting it :- request.getServerName();
    But, pl. let me know how can I get it without using this request object.
    Waiting for reply..

    I don't know of any way to trivially access that, but why do you need to do this? If you need access to that information in a method that can't see your HttpServletRequest, then perhaps your architecture has a flaw, and you'll be better off in the long run restructuring it.

  • How to get server system date?

    I do need the server system date to do calculation. How could I get it?

    I do need the server system date to do calculation.
    How could I get it?What about using a Date() object? And please be more specific. Are you using JSP? Java application? What else?

  • How to get server to show my website

    Hello,
    I have a domain registered and pointing to my server via my IP address. I have uploaded my site files to the location indicated in the server.app, the location that defaulted when I set up the web services and created a new website. When I type in my domain in a web browser I get the default server website and not my website that I want to host.
    How can I change this so that when I type in my domain I get the site I want to host instead of the default server site?
    I use name.com to register my domain and I'm using server on a mac mini. I am using the default name servers on name.com, I have added two DNS records, both "A" records, mydomain.com to my IP address (not the ip of my server) and *.mydomain.com and my IP (not the ip of my server).
    Like I said, this works in pointing my domain to my ip so when I type it in I get my server default website but I want my hosted site. I have set it up correctly in server.app. My settings are:
    domain name: domain.com
    ip address: any (I have two)
    port 80
    SSL: none
    Store files in: domain name folder (I erased the default files and copied my website files to this location)
    Who can access: anyone
    no additional domains configured
    no redirects
    no aliases
    the 4 index files configured...
    I have Googled and came up with everything but what I am looking for. I am new at this dns and ip stuff but know my way around a computer so a walkthrough I can follow.
    Anyone else have this situation or can help?
    Thanks in advance...

    Have you tried clearing the cache of the web browser? It is possible that if you accessed the site with the defualt page that your browser is displaying a cached version.
    Just to be sure, there are no files from the default site still in your sites folder? Also, what are the four index files that are configured? Is the website you want to display using one of those files (like index.html or index.php)? Also, have you verified the file permissions are correct for the files in your sites folder?
    If you can give a few more details, we might be able to figure out the issue.

Maybe you are looking for

  • Not able to draw a layer

    I'm new to DW 8.2 and I'm studying from a couple of books. I have an issue that I can't seem to resolve even after extensive research. I'm using a Mac running Tiger. When I try to draw a layer on either a new doc or one that already has some content,

  • What cameras are supported in 10.3.9?

    I just got iLife 6 and I want a new digital photographic camera but I would like to know the list of supported Cameras in OS X 10.3. Can anyone help me? I am currently looking at (and fancying) a Cannon 550 or 560. Any responses are appreciated. Your

  • How to download mozilla fire fox and adobe flash media player

    Hi I am so lost i cant seem to download all the stuff i need to set up my notebook (iBook G4) i just need to find out how i can update my mac os x 10.4 to a later version also since mine is obsolete it wont let me download firefox or adobe flash medi

  • SAP HR LSO: Removed fields on course (Object E)

    Dear all, When booking a Course in LSO there the section (with fields) called the "price and cost assignment". We would like to remove this from the Course. Would anyone know if it is possible to remove this, and how? We would also like to remove the

  • AppleWorks 6 crashes as soon as I type

    I have been looking at all the discussions and have not found this one. Every time I start to type I can only type 1 character and the next key press crashes AW6. It just goes away and I have to open it again. I get a report to apple message "Excepti