Trying to authenticate aginst server deleted from account

I think I'm in a bit of a catch 22 and desperately need help. When I came home my family was complaining that the 'media' mini connected to the Westell wireless DSL modem and to the TV couldn't connect to the internet. Last night, I fired up <virtually> all the services in a new Snow Leopard Server installation and proudly 'Joined' the server from the Accounts Prefs on the 'media' mini.
Figuring I was in a catch 22 - can't authenticate to get on the network/can't get on the network to authenticate - I 'deleted' the server from the Accounts Prefs setting.
Now it still tries to authenticate from 801.1X on Network Prefs and tells me that my server is unavailable. How can I make my 'media' mini forget that it ever 'Joined' the server and go back to happily connecting to the internet directly through logging into my wireless network?
Any info would be greatly appreciated.
Message was edited by: victorsixtus

OK, so although slightly different from the Open Directory Administration manual (http://images.apple.com/server/macosx/docs/OpenDirectory_Adminv10.6.pdf) I intuitively performed the steps on page 143, Deleting a Configuration for Accessing an LDAP Directory. Except I don't remember a step asking me to unbind from LDAP.
So, I guess I need to find out how to unbind from the Directory. Any command line options?

Similar Messages

  • I turned on my icloud account but suddenly some of my contacts disappeared ... I tried to turn off and delete icloud account but still some of my numbers are unreachable ... Help pls

    I turned on my icloud account but suddenly some of my contacts disappeared ... I tried to turn off and delete icloud account but still some of my numbers are unreachable ... Help pls

    Hi Prince,
    OK, so you did turn on PhotoStream on your device. On iCloud.com there is no setting for PhotoStream - it is not needed. PhotoStream only get "turned on" on a device or a computer (in the computer settings - not on the website).
    So, once it is turned on, you take a picture, and it may take a few minutes before you see it in the PhotoStream on your phone. If you take a couple of pics and they don't show up, say within a half an hour, then you might want to do a reset on your phone (press the Home and Power buttons at the same time, and hold them down until the silver Apple appears - you won't lose anything by doing this....) Once it comes back up, you could try a couple more pics, or check the PhotoStream to see if the ones you took previously are there.
    Not sure about the option at the bottom of the Photo App - I think it is a permanent item (like Places - I don't use Places for my photos, but it is there all the same.
    I agree with you that it is a great backup for your photos - especially if you don't regularly sync to a computer. PhotoStream will keep up to 1000 of your photos, so it's good insurance against losing them. Just as a major user of the camera on my iPhone, I would recommend that you do back up to your computer as well. Videos are not saved in PhotoStream, so those would be lost if anything ever happened to your phone and you had not backed up to a computer....
    But don't give up on PhotoStream either - it's not only great for backing up those last 1000 photos, it is also great for sharing between devices (say, if you have an iPad).
    So, give it another try, and if you have any questions, post back!
    Cheers,
    GB

  • Leave email on server, delete from i-pad HOW?

    OK, I've read all of the different e-mails on this subject, and have not yet found the answer. I want to be able to delete ALL mail on my i-pad WITHOUT affecting the e-mail on my Yahoo server. I have gone to Settings/Mail.../My Account/Advanced and have only 3 buttons there:
    Mailbox Behaviors
    Drafts Mailbox
    Deleted Mailbox
    Deleted Messages
    Remove
    Never
    After One Day
    After One Week
    After One Month
    There is absolutely nothing here that says to leave mail on the yahoo server when I delete it from the i-pad.
    Can anyone help me out? I do not use my ipad primarily for e-mail and save a LOT of e-mail on the server that I would like to remove from ipad.
    Jo

    Idiocratease wrote:
    Thanks for this tip. Works perfectly. Seems like there is an omission from the yahoo! Mail set up.
    Might be an omission on Apple's part, or might be the configuration requested by Yahoo - there's no way to tell from here. If interested in Apple fixing it, though, you'll have to make that request via the FEEDBACK FORM — http://www.apple.com/feedback/ipad.html

  • Trying to backup contacts--server error from Verizon Cloud

    Okay, I've checked other threads and cannot find the answer. I am trying to backup my contacts from my Droid Razr HD before switching to a new phone. It starts the "provisioning account" process. Then I get the message, "Verizon Cloud operation failed. Please try again (code 4001)"
    I have two email accounts on this phone, one a gmail account and one my work email account. I have the same problem, regardless of which account I choose.
    Any assistance would be welcomed. I need to return the old phone soon, or I'll be charged for the new one.
    Thanks a lot!

    I tried using the 4g and my local wifi network. I received the same error
    for both of them.
    I will do as suggested, thanks.
    >>Personal information removed to comply with the Verizon Wireless Terms of Service<<
    Message was edited by: Verizon Moderator

  • TS3988 My daughter accidentally downloaded something she didn't want. Is there a way to have it deleted from account and refunded?

    Is there a way to have accidental purchase deleted and refunded

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Delete From More than 1 table without using execute immediate

    Hi,
    Am new to PL/SQL, I had been asked to delete few of the table for my ETL jobs in Oracle 10G R2. I have to delete(truncate) few tables and the table names are in another table with a flag to delete it or not. So, when ever I run the job it should check for the flag and for those flag which is 'Y' then for all those tables should be deleted without using the Execute Immediate, because I dont have privilages to use "Execute Immediate" statement.
    Can anyone help me in how to do this.
    Regards
    Senthil

    Then tell you DBA's, or better yet their boss, that they need some additional training in how Oracle actually works.
    Yes, dynamic sql can be a bad thing when it is used to generate hundreds of identical queries that differ ony in the literals used in predicates, but for something like a set of delte table statements or truncate table statements, dynamic sql is no different in terms of the effect on the shared pool that hard coding the sql statements.
    This is a bad use of dynamic sql, because it generates a lot of nearly identical statements due to the lack of bind variables. It is the type of thing your DBA's should, correctly, bring out the lead pipe for.
    DECLARE
       l_sql VARCHAR2(4000);
    BEGIN
       FOR r in (SELECT account_no FROM accounts_to_delete) LOOP
          l_sql := 'DELETE FROM accounts WHERE account_no = '||r.account_no;
          EXECUTE IMMEDIATE l_sql;
       END LOOP;
    END;This will result in one sql statement in the shared pool for every row in accounts_to_delete. Although there is much else wrong with this example, from the bind variable perspective it should be re-written to use bind variables like:
    DECLARE
       l_sql  VARCHAR2(4000);
       l_acct NUMBER;
    BEGIN
       FOR r in (SELECT account_no FROM accounts_to_delete) LOOP
          l_sql := 'DELETE FROM accounts WHERE account_no = :b1';
          EXECUTE IMMEDIATE l_sql USING l_acct;
       END LOOP;
    END;However, since you cannot bind object names into sql statements, the difference in terms of the number of statements that end up in the shared pool between this:
    DECLARE
       l_sql VARCHAR2(4000);
    BEGIN
       FOR r in (SELECT table_name, delete_tab, trunc_tab
                 FROM tables_to_delete) LOOP
          IF r.delete_tab = 'Y' THEN
             l_sql := 'DELETE FROM '||r.table_name;
          ELSIF r.trunc_tab = 'Y' THEN
             l_sql := 'TRUNCATE TABLE '||r.table_name;
          ELSE
             l_sql := NULL;
          END IF;
          EXECUTE IMMEDIATE l_sql;
       END LOOP;
    END;and something like this:
    BEGIN
       DELETE FROM tab1;
       DELETE FROM tab2;
       EXECUTE IMMEDIATE 'TRUNCTE TABLE tab3';
    END;or this as a sql script
    DELETE FROM tab1;
    DELETE FROM tab2;
    TRUNCTE TABLE tab3;is absolutley nothing.
    Note that if you are truncating some of the tables, and wnat/need to use a stored procedure, you are going to have to use dynamic sql for the truncates anyway since trncate is ddl, and you cannot do ddl in pl/sql wiothout using dynamic sql.
    John

  • Manual deletion from queue table

    Hi All,
    Thanks in advance for helping.
    We have one queue table. The data volume in this queue table very very low.
    But someone tried to do a manual delete from the queue table. Now I think the queue table has been corrupted.
    Some of the jobs which reads from the queue table is not able to read it, its constantly trying to read and not finding any message. Whereas some other jobs are able to queue message and dequeue it from the same queue.
    My question is "Is there any way fix this issue without dropping and recreating the queue?"
    Like will purging the queue solve this issue?
    Regards,
    Samujjwal Basu

    Hello,
    in general, a direct DELETE from a queue table is not allowed. The queue will then be corrupted! 
    >Like will purging the queue solve this issue?
    Yes, there is a special PURGE statement for AQ, which should be used instead.
    Example:
    DECLARE
       v_purge_options    dbms_aqadm.aq$_purge_options_t;
    BEGIN
       v_purge_options.block := FALSE;
       DBMS_AQADM.PURGE_QUEUE_TABLE(
         queue_table     => 'SCOTT.QTAB_TEST',
         purge_condition => NULL,
         purge_options   => v_purge_options );
    END;
    Kind regards,
    WoG

  • HT201320 Once I have downloaded email on my iPad the same is not downloaded on my laptop. Have tried all settings including choosing the setting DELETE FROM SERVER:NEVER and REMOVE FROM SERVER:NEVER

    Once I have downloaded email on my iPad the same is not downloaded on my laptop. Have tried all settings including choosing the setting DELETE FROM SERVER:NEVER and REMOVE FROM SERVER:NEVER

    Hey rbrylawski, just wanted to let you know that my ipad email problems have been solved. Called Apple Sup in OZ, I'm in NZ. Daniel Barber was the support tech from heaven!! I was about to return the ipad but solving this issue reset my faith in phone support.....perhaps until I call a differnet companys phone support eh? Anyhow, for reference the fix is below.  My accounts are all POP not IMAP, and the primary smtp server setting had defaulted to have SSL switched on and the port was set to 5XX (something, cant remember). Anyhow, SSL was switched off and the port was swithced to 25. VOILÀ!!  Settings/Mail, contacts, calendars/My POP mail account/smtp/primary server/ >>> server on, no username and password,  use SSL off,  no authentication,  Server Port 25  Thanks for having a crack at it. This might help when assisting another user. Cheers Tonino

  • Can't setup pop account and all mail deleted from server!!

    Trying to set up a mail account as pop. But Mail is determined to set it as imap.
    I've humoured it and gone through the process.
    After clicking 'create account' it gives the message that it's downloading 500+ messages. Once it's finished, nothing is in the inbox.
    To make matters worse, every single email has been deleted from the server. I do have a backup of my important emails but if this is something which is not isolated to me, then I feel sorry for anyone who does not have a backup.
    So...
    Is there a way to manually setup my account with settings of my choosing?
    Or, is this just a case of Apple deciding whats best for me and resistance is futile?
    Cheers

    I'm not sure what Mail version you're using and you can't change an existing IMAP account to POP, but you can add a new pop account in Mail 6.0 in a round-about way.
    When you're setting up the account it will only try it as IMAP, so in the first segment where it asks for the password, purposely enter the wrong password and click continue.  An error message will result, then click continue again and you will see a new window with a pull-down menu to select POP.  From there you can manually fill out the rest according to your server's settings. (Don't forget to put in the correct password this time.)
    In your case, I'm not sure how your messages left your server, but if you have webmail for the account you can check the trash there.  Also, you will have to delete the IMAP version of the email account before you can use the address for the new POP account setup.
    Personally, I use IMAP on my iPhone and POP in Mail for a more manual control of my accounts, so I know how you feel.  Hope this helps.

  • I deleted 4 accounts and the mail app keeps trying to contact the old account server causing thousands of emails to be processed and causing my ISP to charge my account 20-30GB of data. Why is this happening and how do I stop this activity?

    I deleted 4 accounts and the mail app keeps trying to contact the old account server causing thousands of emails to be processed and causing my ISP to charge my account 20-30GB of data. Why is this happening and how do I stop this activity?
    I only now have 3 accounts!
    The old accounts have been deleted but the "Provide Mail Feedback" selection shows:
    Mail Version: 6.5 (1508)
    Total Accounts Configured: 4
    Account: MFAosImapAccount
    8 mailboxes:
    2029 messages, 362315022 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    795 messages, 167250216 bytes
    Account: IMAPAccount
    10 mailboxes:
    4 messages, 1199297 bytes
    0 messages, 0 bytes
    556 messages, 160661538 bytes
    3036 messages, 802090564 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    3019 messages, 801316850 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    10 messages, 3104320 bytes
    server information:
    vendor: Google, Inc.
    name: GImap
    Account: MFAosImapAccount
    10 mailboxes:
    180 messages, 40819804 bytes
    37 messages, 1013784 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    210 messages, 19863404 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    Account: LocalAccount
    24 mailboxes:
    7 messages, 88931 bytes
    294 messages, 2849595 bytes
    1 message, 6558 bytes
    0 messages, 0 bytes
    1 message, 9186 bytes
    26 messages, 744240 bytes
    0 messages, 0 bytes
    2 messages, 7698 bytes
    502 messages, 4398261 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    98 messages, 40510329 bytes
    1 message, 2289 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    0 messages, 0 bytes
    19 messages, 465695 bytes
    1268 messages, 76984849 bytes
    0 messages, 0 bytes
    10 messages, 312327 bytes
    0 messages, 0 bytes
    6 messages, 113325 bytes
    1 message, 10034 bytes
    Total Incoming Message Rules: 1Junk Filter Mode: Automatic
    number of messages evaluated: 50165
    number of messages evaluated as junk: 17332
    number of messages manually marked as junk: 433
    number of messages manually marked as not junk: 471
    training balance: -14
    training debt: 741
    training credit: 727
    2 smart mailboxes:
    1 message, 2 criteria
    0 messages, 2 criteria

    The "LocalAccount" is "On My Mac" and doesn't correspond to an account on a mail server. That all I can tell you from the information provided.

  • TS3899 cannot receive or send email from my hotmail account, refuses to verify server. I have changed my password, deleted the account numerous times, any solutions? all on ios 6.

    cannot receive or send email from my hotmail account, refuses to verify server. I have changed my password, deleted the account numerous times, any solutions? all on ios 6. it was working up until a few days ago and now refuses to load on both my ipad 2 and iphone 4S
    in the process deleted all my contact, very annoying.
    all help is much appreciated.
    interesting that my gmail account does work perfectly.

    this may or may not help - but give it a try.  On a forum some were reporting that talk21 is now under the yahoo umbrella.  below are the steps this use listed.  (This was an android forum, but the email settings should be the same.  In short it looks like their server names have changed.  An existing account may have simply been forwarded - but if you are reinstalling, it may want a clean install to the right servers.)  Pay particular attention to the server names and port settings.  (this thread was started based on a discussion of Imap vs pop - you are already an Imap person - so ignore that part)
    See if this helps.
    why settle for pop3, when IMAP works with talk21 and not only does mail get pushed out faster with IMAP, but when you click refresh it will be received faster than pop3.  The other advantage is subfolders are also supported with IMAP but cant be seen with POP3. This mail feature works with my android eclair & hero phone and the settings are exactly the same for win mobiles also (not tested). The mail setting up roadmap is the same from what i can remember once in the mail feature for win mobi. 
    This is what you need to do to setup Talk21 email with IMAP. 
    Incoming server settings
    IMAP server - imap.mail.yahoo.com
    Port - 143
    Security type - none 
    Outgoing Server settings
    SMTP server - smtp.mail.yahoo.com
    Port - 25
    Security type - none Also important note - Enable 'require sign-in'
    and enter your talk21 username and password The End...works a treat for me p.s. Its only taken me 3 years to work it out with win mobile and recently with android. Finally got it to work...hope this helps all the talk21 users out there. if there are any other similar posts out there with no answer...dont forget to mention my name when passing this post around.

  • Cannot send or receive yahoo mail or gmail from iPhone . installed ios 6 recently. tried rebooting the phone and deleting the email account and adding again but nothing works ! can someone suggest a solution?

    cannot send or receive yahoo mail or gmail from iPhone . installed ios 6 recently. tried rebooting the phone and deleting the email account and adding again but nothing works ! can someone suggest a solution?

    Not sure about yahoo, but for gmail, I done the following:
    Set up using Exchange on iPhone, it'll keep prompting for password.  On PC use captcha option, log in to gmail account from PC after completingg captcha option, enter password on iPhone.
    See how that goes for gmail, let us know.
    Hopefully someone will have fix for yahoo.

  • The iCloud was never verified therefore never backing up anything on my iphone 4s because it was the wrong email and now I'm trying to make a new one but it says if I delete the account it will remove it's data from my phone. Will I lose everything?

    The iCloud was never verified therefore never backing up anything on my iphone 4s because it was the wrong email and now I'm trying to make a new one but it says if I delete the account it will remove it's data from my phone. So if I put delete account will I lose everything on my Iphone?

    This was EXACTLY what I needed about the purchases I made from my device. However, is there a way to re-download other ones you've made from a computer? Because I realized some of them were not just purchased from my device.
    This is a picture of what it looks like now:
    http://tinypic.com/r/107quxu/7
    As you can see, the stuff circled in red doesn't give me an option to download from Cloud Beta because it already says "downloaded".
    any way to get around that?

  • HT201320 I want to set up a POP3 email account but in all the help I have found so far I should get the option to choose IMAP or POP.  This doesn't appear and I need POP3 because I don't want anything deleted from the mail server.  I have an iPhone 5s and

    How do I set up a POP3 email account on my iPhone5s, using iOS 7.1.1.  All the help I have found tells me to select IMAP or POP but I am not given the choice.  I need to be able to set 'Don't delete from mail server' which can't be done in IMAP.

    tim.fry wrote:
    My email provider is BT and they do support POP3, that's what I have been using for a number of years
    Okay.
    Then set it up.

  • How to delete account from thunderbird without deleting from server

    I am lending a PC with Ubuntu and Thursderbird to a friend for a trial period. I want to delete two email accounts in Thunderbird without deleting same from the email server. The information in help seems to indicate that if I delete my accounts, those accounts will also be deleted from the server. This is not desireable - is there a way around this this? Thanks!

    '''[http://kb.mozillazine.org/Menu_differences_in_Windows,_Linux,_and_Mac Tools|Account Settings]|{select the account}'''
    At the bottom of the pane listing your accounts, look for '''Account Actions''', and when you click that, look for and click on '''Remove Account'''.
    Doing this removes the account from Thunderbird. It actually retains the data files associated with the account but removes the account entry and its settings. What's on the server remains untouched - well, at least that is my understanding. Can you provide a link to the help that suggested otherwise?
    In theory, unless you encrypt your home folder, a savvy user could find the mail store in your profile and read it. You might want to go a step further and remove the entire profile.

Maybe you are looking for