Grey Light in websites

Hi everybody
I run the lates Mountain Lion server and use it to have my companies and two ohter websites running.
I cannot get the green light in the websites tab, neighter in the VPN taps to work.
I set up DNS, if I check sudo changeip -checkhostname it reads  " success" has a ip for nameserver and dns server.
access.mydomain.com has a nameserver record and machine record and a zone record, pointing to the local IP address. It performs lookup only for the server, forwarding server I setup with the IP address of the AE basestation.
I am behind a AE basestation which is controlled by the server.app.
In the network pane of the server machine I put in 127.0.0.1 as DNS server
VPN is working
All the sites are working
...but the light is grey...not green. A bug?
Yours
Pierre

Hi Pierre,
1. You need to add a dns alias record for each website within the zone in DNS Tab for the green light to show.
2. After you set up the alias records, you then may still need to click on the hostname field in Web Sites and VPN, and re-enter the name before the Green Light will show.
Example. Say you are hosting 4 websites -  for www.domain1.net, crm.domain1.net, www.mydomain.com and you want OS X Server wiki access via access.mydomain.com
You need 2 DNS Primary Zones - mydomain.com and domain1.com
You need a Nameserver and MX ( if you are hosting mail as well) record for each Zone pointing to the server ip address.
You need a machine record for at least the server within the mydomain.com zone.
Then you need alias records in each Zone as follows for any websites other than the default sites which would be http:// or https://access.mydomain.com. This is where the wiki shows up if you turn it on.
Alias Records in DNS
Zone - mydomain.com
Host Name - www
Destination - access.mydomain.com
Zone - domain1.net
Host Name - www
Destination - access.mydomain.com
Zone - domain1.net
Host Name - crm
Destination - access.mydomain.com
(No alias needed for access.mydomain.com in case that wasn't clear!)
Re VPN - if you have set up a machine record of access.mydomain.com and you type that address as the host into the vpn host box, the green light should show.  This needs to be a fully qualified host name, not a top level domain name.
Obviously you need to mirror your internal DNS settings as far as any alias or machine names you have set with your external DNS provider to point it all to your external IP address.

Similar Messages

  • Alv list ..records with green ,red, yellow,grey lights

    Hello Experts,
    I have one requirement,
    in my alv list if the records match the recors should be displayed with GREEN light,
    similarly for other mmatches it should display with red, yellw, grey lights.
    please help me by sending the coding ,its an urgent requirement.
    thanks ,
    shaik.

    Zameera,
    *& Report ZMDEMO_ALV_04
    *&Make an Exception field ( = Traffic lights)
    *&There can be defined a column in the grid for display of traffic lights. This field is of type Char 1, and can contain the following values:
    *& 1 Red
    *& 2 Yellow
    *& 3 Green
    *&The name of the traffic light field is supplied inh the gs_layout-excp_fname used by method set_table_for_first_display.
    report zmdemo_alv_04.
    tables: sflight.
    type-pools: icon.
    types: begin of ty_sflight.
    include structure sflight.
    types: traffic_light type c,
    lights LIKE icon_xml_doc,
    lights(4),
    icon type icon-id.
    types: end of ty_sflight.
    G L O B A L I N T E R N A L T A B L E S
    data: t_sflight type standard table of ty_sflight.
    G L O B A L D A T A
    data: ok_code like sy-ucomm,
    wa_sflight type ty_sflight.
    Declare reference variables to the ALV grid and the container
    data:
    go_grid type ref to cl_gui_alv_grid,
    go_custom_container type ref to cl_gui_custom_container.
    data:
    t_fcat type lvc_t_fcat,
    wa_layout type lvc_s_layo.
    S T A R T - O F - S E L E C T I O N.
    start-of-selection.
    perform build_fieldcat.
    perform build_layout.
    set screen '100'.
    *& Module USER_COMMAND_0100 INPUT
    module user_command_0100 input.
    case ok_code.
    when 'EXIT'.
    leave to screen 0.
    endcase.
    endmodule. " USER_COMMAND_0100 INPUT
    *& Module STATUS_0100 OUTPUT
    module status_0100 output.
    Create objects
    if go_custom_container is initial.
    create object go_custom_container
    exporting container_name = 'ALV_CONTAINER'.
    create object go_grid
    exporting
    i_parent = go_custom_container.
    perform load_data_into_grid.
    endif.
    endmodule. " STATUS_0100 OUTPUT
    *& Form load_data_into_grid
    form load_data_into_grid.
    data l_light type c value '1'.
    Read data from table SFLIGHT
    select *
    from sflight
    into table t_sflight.
    Condition placing to the traffic_light Field
    LOOP AT t_sflight INTO wa_sflight.
    wa_sflight-traffic_light = l_light.
    MODIFY t_sflight FROM wa_sflight.
    IF l_light = '3'.
    l_light = '1'.
    ELSE.
    l_light = l_light + 1.
    ENDIF.
    ENDLOOP.
    Setting the Icon based on the traffic_light field value.
    LOOP AT t_sflight INTO wa_sflight.
    CASE wa_sflight-traffic_light.
    WHEN '1'.
    wa_sflight-lights = icon_red_light.
    WHEN '2'.
    wa_sflight-lights = icon_yellow_light.
    WHEN '3'.
    wa_sflight-lights = icon_green_light.
    ENDCASE.
    MODIFY t_sflight FROM wa_sflight.
    ENDLOOP.
    loop at t_sflight into wa_sflight.
    case l_light.
    when '1'.
    wa_sflight-lights = icon_red_light.
    when '2'.
    wa_sflight-lights = icon_yellow_light.
    when '3'.
    wa_sflight-lights = icon_green_light.
    endcase.
    if l_light = '3'.
    l_light = '1'.
    else.
    l_light = l_light + 1.
    endif.
    modify t_sflight from wa_sflight.
    endloop.
    Load data into the grid and display them
    call method go_grid->set_table_for_first_display
    exporting
    I_BUFFER_ACTIVE =
    I_BYPASSING_BUFFER =
    I_CONSISTENCY_CHECK =
    i_structure_name = 'SFLIGHT'
    IS_VARIANT =
    i_save = 'A'
    I_DEFAULT = 'X'
    is_layout = wa_layout
    IS_PRINT =
    IT_SPECIAL_GROUPS =
    IT_TOOLBAR_EXCLUDING =
    IT_HYPERLINK =
    IT_ALV_GRAPHICS =
    IT_EXCEPT_QINFO =
    IR_SALV_ADAPTER =
    changing
    it_outtab = t_sflight[]
    it_fieldcatalog = t_fcat
    IT_SORT =
    IT_FILTER =
    EXCEPTIONS
    INVALID_PARAMETER_COMBINATION = 1
    PROGRAM_ERROR = 2
    TOO_MANY_LINES = 3
    others = 4
    endform. " load_data_into_grid
    *& Form build_fieldcat
    text
    --> p1 text
    <-- p2 text
    form build_fieldcat .
    data: w_fcat type lvc_s_fcat.
    define macro_fcat.
    w_fcat-fieldname = &1.
    w_fcat-col_pos = &2.
    w_fcat-coltext = &3.
    append w_fcat to t_fcat.
    clear w_fcat.
    end-of-definition.
    macro_fcat 'CARRID' 1 text-c01 .
    macro_fcat 'CONNID' 2 text-c02 .
    macro_fcat 'FLDATE' 3 text-c03 .
    macro_fcat 'PRICE' 4 text-c04 .
    macro_fcat 'SEATSMAX' 5 text-c05 .
    macro_fcat 'SEATSOCC' 6 text-c06 .
    macro_fcat 'LIGHTS' 7 text-c07 .
    endform. " build_fieldcat
    *& Form build_layout
    text
    --> p1 text
    <-- p2 text
    form build_layout .
    wa_layout-cwidth_opt = 'X'.
    wa_layout-excp_fname = 'TRAFFIC_LIGHT'.
    wa_layout-excp_group = '1'.
    endform. " build_layout
    Pls. Reward if useful.

  • IMac - I get a black, grey, light blue or white screen sometimes

    This has never happened to me before.
    I wasn't doing anything unusual (browsing the web) when suddenly my screen turned all black. I tried to do all possible things, like putting the computer to sleep, hit random keys, or wait a while, but finally I had to restart.
    I'm not sure why this happened and was hoping it would happen again.
    I started a game and then, suddenly, the same thing happened, but with a grey screen. As you can see, this grey screen also has vertical lines:
    http://imageshack.us/a/img267/2347/img7244m.jpg
    After restarting the computer, I launched the game again. A minute after starting it, the image of the game started to go crazy, until the screen turned all light blue, with the vertical lines again:
    http://imageshack.us/a/img703/7276/img7247t.jpg
    A few seconds later it turned white:
    http://imageshack.us/a/img15/9069/img7248mp.jpg
    Does anyone know what the problem is with my Mac? Why does this happen? I thought it may be related to the game, but the first time when it went black, I was browing the web. I hope it isn't some kind of Virus. I know they're rare on Mac, but you never know.
    I'm mentioning this because yesterday or so I downloaded an app, which is the Sendspace Wizard. Basically it's a tool to upload files to Sendspace.com. It's by far the most honest file sharing service I had used, and I've been using it for 5 years now. But you never know... I had to download this app because I have videos of a concert of a friend, it's 700 MB and this app continues broken downloads. One of the files is at 99% but it doesn't list it as finished, it's stuck there. It's very strange, I thought I should mention it as it may be related. Usually I don't like all those uploading serives etc.
    Another thing I was thinking of: the Mac was pretty hot. Usually it only becomes hot when I play the game that I have. But this time I wasn't. I heard that when it's too hot, it shuts down itself. So I thought it already did while I was browing (for whatever reason, maybe because the Sendspace tool was uploading all day long already and thus the computer was tired?) and then as I launched the game it turned it off as well because it became even hotter.
    Here the specs: iMac 27" Intel Quad Core i5 3.1 Ghz 32 GB RAM, OSX 10.8.2
    All help is appreciated !!! Hope it's nothing serious

    Anyone know? :(

  • Why does firefox grey out certain websites?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/921487]]</blockquote>
    When I go to epicurious.com, website is greyed out and won't function.

    Actually, you did post this question a few hours ago here: https://support.mozilla.org/en-US/questions/921487

  • Safari display becomes grey in some website as unfinished loading

    The display becomes like this in some website
    How to solve this problem ?
    Thank you.

    Try troubleshooting extensions and third party plugins.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test. If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow all other plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.

  • Red Light in Server.app Website Pane

    Hi, newbie here. Am I doing something wrong in that I get this red light in the below screen shot? Confused.
    https://dl.dropbox.com/u/451249/mdmimagehost/murraysorg.png
    Thank you for any insight!

    Hi Matthew,
    quick question - there is your server and its plugged directly into the internet modem ( no intervening router or nat translaltion and your server is doing nat and dhcp for your local network? Is that correct as per the line under ?
    Internet <--> Modem in bridge mode  <-> Server  - with Internet IP Address
    or is it ?
    Internet <--> Modem / Router <--- > Server  - with internal ip address
    Re your questions - The Server name can stay, but the hostname should be something like familyserver.murray.org under network settings. because technically, "murray.org." is a Fully Qualified Domain Name. not Host Name!  Its a convention to give a machine a name under the FQDN.
    Also - No Green Light as opposed to a grey light when you enter your site under websites may mean - its kind of working, but you may get funny results - Try setting up as below and see how that goes, it will likely save problems in the long run.
    Change the hostname in Server.app/Server/Network Settings to be a familyserver.domain.org style.
    Then under DNS on server.app, the Primary Zone should be "murray.org".
    Then add a Machine record to match the hostname - familyserver.murray.org
    Then add a nameserver record in the zone - familyserver.murray.org
    Then add an MX record in the zone for familyserver.murray.org
    Then add an alias record in the zone for www
    Then delete / re-add your website and you should get a green light.
    cheers
    Gerry

  • How do I print a pdf file that is printing too light to read??

    I have a pdf that I must print to buy a home.  It will not print as is. I shot screen shots, brought them into Photoshop, made them jpgs and adjusted the gamma to make them very black and white. 
    It helped but the pages cannot be read. There is plenty of ink in the printer.
    I need to send this paperwork tomorrow with a check...
    WHAT TO DO?

    I have this problem as well, prints come too light out of my Brother5370DW and consulted several channels on internet. Printing from pc was never a problem, only from mac: jpgs, tifs, txt, from Preview, Safari, Firefox, Photoshop, Acrobat etc whenever the document it was not full b/w. Especially screenshots from Google maps were just illegible. I just tried to print a pdf with dark grey text, very light as well. Then it ocurred to me to change the color matching profile in the printer's dialogue window: instead of automatic (which is Adobe RGB (1998) by default, I choose Black & White, and finally it prints fine: black what is supposed to be black, idem for dark greys, light greys.

  • Adapter Status Grey and Cache Error in acessing Integration Directory

    Dear All
    While going through the following path
    RWB-->Component Monitoring->Adapter Engine->Cache Connectivity Test
    i got the following result
    " Cache notification from Integration Repository failedError when accessing the Integration Directory "
    RWB-->Component Monitoring->Adapter Engine->Adapter Monitoring
    I am able to see the list of all adapters but all the adapters have Gery light status instead of having a red or green light status
    Kindly tell me what to do...how to change the grey light status to green light and how to set the Cache right
    and going by the following path
    Thanks in anticipation
    Chakra and Somnath

    Hi Somnath,
    Check out this link for cache Connectivity:
    How To handle Caches in SAP XI 3.0
    https://websmp206.sap-ag.de/~sapdownload/011000358700003163902004E/HowTo_handle_XI_30_Caches.pdf
    Cheers,
    Vijay Raheja

  • Creative X Fi Orange Light and no screen

    Hi all
    I've been really happy with my Creative Xfi for a few weeks. But all of a sudden I went to dock it and the light which is normally green is orange, and it won't dock or react to reseting in any way. There does appear to be a blue/grey light on the screen. What should I do please?!

    I'm not sure but maybe the battery got drained? Leave it connected to your computer for a couple of hours (it is recommended to use the rear USB port) and do a reset while the device is connected afterwards. Hope this hel
    ps.

  • I would like to create the same mouse over effect that is used on the home page of Industrial Light

    I would like to create the same mouse over effect that is used on the home page of Industrial Light & Magic website. http://ilm.com
    Could someone please let me know what the code or effect that is used. Thanks.

    It appears there are two slideshows running in parallel where a mask that follows the mouse displays one of them.  THe one you see in the moving mask is on top of the other.
    If you were to search Google for a custom cursor tutorial you will probably end up with most of what you need for getting the mask to follow the mouse.  

  • R7970 Lightning grey/blue screen with vertical lines crash

    Hi there,
    Hoping to get some help from MSI regarding this issue
    I've had this R7970 Lighting for about a year now and up until now did not have issues with it. Yesterday I was trying out how far I could OC with stock voltages using MSI afterburner and the screen suddenly went grey with vertical stripes in a ordered fashion (dark grey, light grey, with a pattern). The computer seemed to have completely locked up and required a hard power off (reset switch didn't work)
    Over the next 24 hours I've installed multiple drivers (some people online have issues with the newer AMD drivers) from 12.4 to 13.4 to no avail (I did proper cleaning using Driver Sweeper and CCleaner in between each). I did a complete reformatting and reinstall of win7 (UEFI) to no avail.
    The issue can now be triggered easily by launching any 3D program (crash immediately upon display of 3D material) or just by booting and running a few standard programs like browsing around windows explorer and launching CCC.
    Is my card dead? Should I RMA or is this a software/BIOS issue?
    Thanks in advance.

    if it happened when you had the issue happen while pushing the clocks up you have probably damaged the GPU internally from a frequancy it couldn't handle!
    if it doesn't now work at stock clocks for the R7970 lightning then i would say you need to RMA the card as the GPU is shot...

  • How can I keep patterns from flashing when scrolling?

    I am sensitive to flashing and strobing lights. They hurt. I have a lot of trouble with disorienting 'safety' lights, certain fluorescent lights, certain websites, et cetera. I also have trouble with disorienting noises. Elsewhere on this site, I had trouble with my screen flashing as I was scrolling. Apple had used a pattern of dots to create a medium grey, instead of using an even grey. It works fine on paper, but it flashes on the screen. Many patterns flash on the screen if I am scrolling.
    Is there anything I can do about this?

    When you first insert a CD your Mac comes up with a box saying
    "You have inserted a CD" (duuh, Apple...)
    Then you choose from a pop-up menu that offers "Open in Finder", "Open in iTunes", etc
    At some point you (or someone) has chosen "Open in iTunes" then checked the little box that says "Make this the default from now on".
    If you go into System Prefs (as already mentioned) you have a choice to reset what you want to do with a blank CD.

  • SetRGB being capricious

    Hi, I have a 4 channel 8 bit greyscale image (the alpha channel=0) and I am trying to adjust the image so that
    the Chroma and Luma values are altered for certain regions.
    For instance, looping over the width and height, obtained from a Buffered Image, I have the following:
    if ( width> 634 && width<764 && height>259 && height<350 ) //light blue
                        Cb=133;
                        Cr=124;
                        int myR = (selectedColour >> 16) & 0xff;
                        int Y= myR; // only need the greyscale: in such an image, red=green=blue
                            int [] rgb = ycbcr2rgb(Y, Cb, Cr);
                        int a = 0;
                             int r = rgb[0];
                             int g = rgb[1];
                             int b = rgb[2];
                                   // Now we add the colour.....
                        int newcolour = a << 24 | r << 16 | g << 8 | b;
                        bufferedImage.setRGB(width, height, newcolour );
                   }And I have
    public int [] ycbcr2rgb(int y, int cb, int cr)
              int r = (int)( 1.164*(y-16) + 1.596*(cr-128) );
              int g = (int)( 1.164*(y-16) - 0.392*(cb-128) -0.813*(cr-128));
              int b = (int)( 1.164*(y-16) + 2.017*(cb-128) );
              int [] rgb = new int[3];
              rgb[0] = r;
              rgb[1] = g;
              rgb[2] = b;
              return rgb;       
    }I am sure that ycbcr2rgb is returning meaningful results as I have checked them, and I am sure that variables such as "newcolour" are being set correctly, but it doesn't alter the colours in the Buffered Image correctly. All the areas are white, with faint traces of bright yellow, whereas they should be in this example, a light blue shade. Am I missing something very obvious here?
    Thanks!
    Paul
    Edited by: [email protected] on Jul 20, 2010 6:59 PM - got over zealous with the tab key.

    Hi,
    I've tried that but with no luck. As requested, I've attached a highly slimmed down copy of my code, removing some of the text boxes to show RGB, YCbCr when the mouse moves over a position etc.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.lang.*;
    import java.lang.Math.*;
    import java.io.File;
    import javax.imageio.ImageIO;
    import java.awt.image.BufferedImage;
    public class ColourOverlay extends JFrame
         JMenu Items;
         JMenuItem openFile, convert;
         imgDisplay chromaImg;
         JFileChooser fileChooser;
         public static void main( String args[] )
              ColourOverlay application = new ColourOverlay();
         public ColourOverlay()
              Items = new JMenu( "Items" );
              openFile = new JMenuItem("Open");
              convert = new JMenuItem("Convert");
              Items.add( openFile );
              Items.add( convert );
              openFile.addActionListener(
                   new ActionListener()
                        public void actionPerformed( ActionEvent e )
                             openFile();
              convert.addActionListener(
                   new ActionListener()
                        public void actionPerformed( ActionEvent e )
                             convert();
              JMenuBar bar = new JMenuBar();
              setJMenuBar ( bar );
              bar.add( Items );
              chromaImg = new imgDisplay( this );
              getContentPane().setLayout(
        new BoxLayout(getContentPane(), BoxLayout.PAGE_AXIS)
              add( chromaImg );
                 pack();
                 setVisible(true);
         private void openFile()
              fileChooser = new JFileChooser();
              fileChooser.setFileSelectionMode ( JFileChooser.FILES_ONLY );
              int result = fileChooser.showOpenDialog( this );
              File filename = fileChooser.getSelectedFile();
              try
                   chromaImg.setBufferedImage(ImageIO.read(filename));
              catch (Exception exception)
                            exception.printStackTrace();
              chromaImg.repaint();
              chromaImg.resize();
         private void convert()
              chromaImg.convert();
              chromaImg.repaint();
    class imgDisplay extends JPanel
         private BufferedImage bufferedImage;
         private Dimension PanelDimension = new Dimension();
         private ColourOverlay CA;
         public imgDisplay( ColourOverlay CA )
              this.CA = CA;
         addMouseMotionListener
              new MouseMotionListener()
                   public void mouseMoved( MouseEvent event )
                        processMouseMove( event );
                   public void mouseDragged( MouseEvent event )
         public void setBufferedImage(BufferedImage bufferedImage)
            this.bufferedImage = bufferedImage;
         public BufferedImage getBufferedImage()
            return bufferedImage;
         public void resize()
            PanelDimension.setSize(bufferedImage.getWidth(), bufferedImage.getHeight());
            setPreferredSize(PanelDimension);          
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            g.drawImage(bufferedImage, 0, 0, this);
         public void convert()
              if ( bufferedImage == null ) return;
              for(int height=0; height < bufferedImage.getHeight(); height++)
                   for(int width=0; width < bufferedImage.getWidth(); width++)
                        int selectedColour = bufferedImage.getRGB( width, height );
                   int Cb, Cr;
                   if ( width> 247 && width<295 && height>341 && height<413 ) //pink
                        Cb=116;
                        Cr=149;
                        int myR = (selectedColour >> 16) & 0xff;
                        int Y= myR;
                            int [] rgb = ycbcr2rgb(Y, Cb, Cr);
                        int a = 0;
                             int r = rgb[0];
                             int g = rgb[1];
                             int b = rgb[2];
                        int newcolour = a << 24 | r << 16 | g << 8 | b;
                        bufferedImage.setRGB(width, height, newcolour );
                   if ( width> 219 && width<388 && height>462 && height<506 ) //red
                        Cb=125;
                        Cr=155;
                        int myR = (selectedColour >> 16) & 0xff;
                        int Y= myR;
                            int [] rgb = ycbcr2rgb(Y, Cb, Cr);
                        int a = 0;
                             int r = rgb[0];
                             int g = rgb[1];
                             int b = rgb[2];
                        int newcolour = a << 24 |r << 16 | g << 8 | b;
                        bufferedImage.setRGB(width, height, newcolour );
                   if ( width> 634 && width<764 && height>259 && height<350 ) //light blue
                        Cb=133;
                        Cr=124;
                        int myR = (selectedColour >> 16) & 0xff;
                        int Y= myR;
                            int [] rgb = ycbcr2rgb(Y, Cb, Cr);
                        int a = 0;
                             int r = rgb[0];
                             int g = rgb[1];
                             int b = rgb[2];
                        int newcolour = a << 24 | r << 16 | g << 8 | b;
                        bufferedImage.setRGB(width, height, newcolour );
         private void processMouseMove( MouseEvent event )
    public int [] rgb2ycbcr(int r, int g, int b)
              int y = (int) (16 + 0.257*r + 0.504*g + 0.098*b);
              int cb = (int) (128 - 0.148*r - 0.291*g + 0.439*b);
              int cr = (int) (128 + 0.439*r -0.368*g -0.071*b);
              int [] ycbcr = new int[3];
              ycbcr[0] = y;
              ycbcr[1] = cb;
              ycbcr[2] = cr;
              return ycbcr;       
    public int [] ycbcr2rgb(int y, int cb, int cr)
              int r = (int)( 1.164*(y-16) + 1.596*(cr-128) );
              int g = (int)( 1.164*(y-16) - 0.392*(cb-128) -0.813*(cr-128));
              int b = (int)( 1.164*(y-16) + 2.017*(cb-128) );
              int [] rgb = new int[3];
              rgb[0] = r;
              rgb[1] = g;
              rgb[2] = b;
              return rgb;       
    }The image I have been fiddling with is on my website http://www.paullee.com/main.png
    - what should happen is the test rectangle to the lower left should be a dark maroon colour, the rectangle to
    the right should be a grey-light blue colour, and the one in between should be vaguely flesh coloured (but could be any colour between tan and orange)
    Thanks for your help
    Paul

  • ITunes and I seem to have created duplicate files.  How do I clean this up?

    Hello experts.  I have a conundrum I'm too inexperienced to reason out.  Hoping to tap your creativity.
    I have a huge iTunes library I've created over the years.  50,000+ songs.  No problem, other than my desire to whittle through it slowly and pare it down to only the 22,000 or so I want to keep as my primary library.  I haven't gone through the effort of creating multiple libraries yet, I simply delete songs or albums from the library as time permits without deleting the original file.  I figure iTunes' database will be my primary and in the long-game, I'll create a new library that holds everything, but for now I'll just keep whittling the dB structure away until I get what I want (this is a slow, multi-year project I'm undertaking -- no rush here).
    Here's my problem:
    Most of these songs are physically saved in the iTunes folder on an external hard drive.  Some of the songs I added to my library from the iTunes store when the external hard drive wasn't connected to the Mac - so they are on the Mac's hard drive under the standard iTunes folder structure.  I have the "Keep iTunes Media folder organized" and "Copy files to iTunes Media folder when adding to library" checkboxes checked.
    As I said, I've deleted songs from the iTunes app, but told it to "Keep Files" so that I could listen to them in the future if I decide to re-add them.  Yesterday, I ran out of space on the startup drive of my mac, so naturally, I figured I could consolidate any files on my hard drive over to my external hard drive and delte them from the mac. 
    In iTunes, I went to File -> Library -> Organize Library.  I checked both boxes for "Consolidate files" and "Reorganize files in the folder..."  I let this run overnight to consolidate my library into one place.  Today, I found that the function was unable to complete due to lack of disk space on my external hard drive.  When I went to check the external hard drive, I found that iTunes had duplicated all of the songs that were on the external hard drive in their existing folders. 
    For example, now I have a file under the structure:  iTunes library -> Music -> Blue Oyster Cult -> Heaven Forbid -> Cold Grey Light of Dawn.mp3
    And I also have a file under the structure: iTunes library -> Music -> Blue Oyster Cult -> Heaven Forbid -> Cold Grey Light of Dawn 1.mp3
    So now the immediate problem...  The consolidation didn't finish, so I don't know exactly how much duplication iTunes created.  I checked my library, and sure enough, the song in the library is pointed at the duplicate file (the one with a 1 at the end).  I don't have the option to just copy the iTunes library to another external drive temporarily (or not easily, at least).  I checked out a bunch of duplicate file cleanup programs, but the ones I found (and I even purchased Gemini's dupe file finder/cleanser) don't seem to inherently choose the correct duplicate file that is linked to iTunes library dB.  I can't realistically pick and choose from the thousands of files that have been duplicated.
    I decided to change the advanced preferences in iTunes to an entirely new folder on the External hard drive.  Then I could just go back into File -> Library -> Organize library and select only the "Reorganize files..." checkbox without selecting the "Consolidate files" checkbox.  I figured this would just move all the files that are in the iTunes dB to the new iTunes folder.  Ummm.... but no.  Apparently this "Reorganize files" checkbox is only available if you select "Consolidate files"...?   To be clear, "Reorganize files" is greyed out.
    So to summarize:
    1.  Why did iTunes create copies of existing files in the exact same location they were in?
    2.  What is the right (and I pray easy) way to get my library back to the right size and consolidated into one place?   I'm still dangerously low on disk space on the mac...
    <sigh>
    Thanks for reading through all this! 
    Tim
    Mac Mini  OSX 10.8.3; iTunes 11.0.2 (26)

    See this thread for background on why iTunes can end up with duplicates and how they can be systematically removed. The script there is for Windows users and the "show duplicates" menus have moved around in iTunes 11,  but the advice on clearing recently made duplicates should still hold.
    As given in my older post "Reorganize library" is meant as a one time command to change the structure of a pre-iTunes 9 library into the newer layout that places music in its own subfolder of the media folder. Once used, if the option becomes available again that suggests that a file called .iTunes Preferences.plist in the media folder has been deleted or editied.
    See also this post.
    tt2

  • Where are my videos? Ipad videos not saving after long recording time.

    I have been trying to set my ipad up as a surveillance camera to observe animal activity at night at my zoo.  However, after letting the video app record for an hour or more, it shows that I have used storage space, but the video is not in my photos/videos folder.  I am using the light boost app, and it appears to be recording properly. I have successfully recorded videos 10 mins in length, but if I let it run for a long period of time, the videos do not appear.
    Is there a limitation on the recording length? Why would it show the app has used up all my memory when the videos are not being saved? Or are they being saved in some mysterious place?
    Additionally, does anyone know of a better way to do this? I have a very limited budget, and am trying to avoid buying expensive surveillance equipment or video cameras.
    Thanks

    According to Light Boost the videos are being stored in the Photos - Camera Roll to which you must give access permission see Settings > Privacy. Permission to use the microphone is also necessary.
    If you are having problems contact Light Boost for help.
    From the Light Boost website:
    Please contact us via twitter (@lightboost) or email, we’re here to help.

Maybe you are looking for

  • Do Reminders in iCal sync via iTunes?

    I'm using Reminders in iCal 5.0.1 on OS X Lion. I sync my iCal data with the Calendar app on my iPhone, via iTunes (not iCloud). The weird thing is, none of my Reminders data is syncing, either from my iPhone to my iMac, or from my iMac to my iPhone.

  • HOW TO install RAID/ AHCI 975x PUE Driver Guide

    As below on how to install the matrix driver, there is no 'how to install on a system not already preconfigured with raid/AHCI'. This driver creates a F6 Floppy disc, why? because windows will  not recognise your hard in AHCI mode without the driver

  • Anyone using the magic trackpad with iPhoto 11 in fullscreen mode?

    I love fullscreen mode in the new release of iPhoto. Does the magic trackpad make it more iPad/phone like?

  • TakingOver the amounts in AS91

    Hi All, creating an asset by AS91, choosing the "takeover values: - when I fill in the amount of the "***.acquis.val." for the 01 depreciation area (field ANBTR01), SAP repetes it for the other depreciation areas (fields ANBTR02 and ANBTR03) ; - inst

  • Exporting keywords and comments?

    Is there a way to export keywords, or comments? Basically my iPhoto library is getting too big and running slow, so what I want to do is move all of the "older" photos onto an external drive and be able to find the pics using a spotlight search, but