Podcast producer ethernet address

Hi there trying to get podcast producer to work, it runs jobs in xgrid until about 90% then fails when it is trying to post to blogg i noticed that the mac address in my workgroup manager is giving the the WAN port address and not the LAN address i would have thought it needed as i'm running a NAT network. Just wondered is this important? Also what user should you run jobs as? On the BLOGG it says their is a student group but when i go to it, it says 404 no group is hosted on this server????
Any ideas?

it turned out to be a problem with not binding the cameras or having mail service started and was running xgrid as the wrong user, i had to use pcastadmin

Similar Messages

  • Podcast Producer and Internet Explorer

    I've configured Podcast Producer on 10.6.8, and it is working fine - items are processed from the Capture software through to PcP2 and Xgrid, and are then uploaded to a Wiki.
    The issue is with clients using Internet Explorer (any version) and their ability to play audio files uploaded from Capture or through the web interface of the wiki. Videos work fine, but whatever code is used to upload just audio files to the wiki cannot be interpreted by IE. I know that 10.6.8 was meant to address some of these issues, but I am just not sure how to proceed.
    Has anyone had a similar experience?
    Cheers
    Kieran

    Not sure if this will fix your problem, but I was having the same problem until I looked at the specs for XGrid, it has to run on an Intel Mac. This is where you can get the specs:
    http://docs.info.apple.com/article.html?artnum=306737
    Here is what is in the doc:
    Podcast Capture requirements
    Any Mac running Mac OS X 10.5 Leopard
    iSight camera (built-in or external) or FireWire DV camcorder
    Podcast Producer Server requirements
    Any Mac running Mac OS X Server version 10.5 Leopard
    Xsan for optional cluster file services
    Podcast Producer Xgrid rendering requirements
    Any Intel-based Macintosh Server or Intel-based desktop Mac (a Mac Pro, for example)
    Mac OS X 10.5 Leopard or Mac OS X Server version 10.5 Leopard
    At least 1 GB of memory (RAM) plus 512 MB of additional RAM per processor core
    At least 50 GB of available disk space
    Xsan for optional cluster file services
    Quartz Extreme-enabled video chipset
    Note: Quartz Extreme support can be verified in the Graphics section of Apple System Profiler.
    Note: If a system is providing multiple Podcast services (for example, Podcast Producer and Podcast Producer Xgrid rendering), the system needs to meet both requirements.

  • Podcast Producer

    Trying to set up Podcast Producer, I found the ip address and entered it but for the last few hours I cannot figure out what 'name and password' to put in?  Just made the switch from PC to Mac and I am literally going mad.  Can anyone help me?  I have tried my wifi network name and password and it keeps saying server not accessed or some such thing.  It is my home computer so no 'admin'. 
    Any help truly appreciated! Thank you.
    Lwool2

    taraneinfo
    Message was edited by: taraneinfo

  • Select Podcast Producer URL

    Dear Friends,
    I have a problem with Podcast Producer. Let me explain:
    I have an xserve server with two network cables connected. The server is called xserve2.local.
    I've created an Open Directory xserve2.domain.es.
    Not all services url take as xserve2.domain.es, some try to xserve2.local but I can modifycommands, all but Podcast Producer that insists on using xserve2.local.
    I reviewed Apple's manual but can not find anything that does not serve to manage a server, and created.
    I can change the location of the library /Network/Servers/xserve2.local/Library/PodcastProducer/Shared a /Network/Servers/xserve2.domain.es/Library/PodcastProducer/Shared
    I can change the certificate.
    I can change the Xgrid, if desired.
    But I can not change the url to Podcast Library Podcast Capture URL and Web URL.
    Any help?

    Guys,
    I think the issue has to do with the stored procedure being on a different server/database than the ApEx application. Even when I hardcode in the ApEx server address into the redirect_url function it still tried to take me to the server that is making the call. I will try something different. Thanks for the help. I will mark this as Helpful.

  • 10.5.6 Broke Podcast Producer

    Hello,
    I set up a Podcast Producer Server in 10.5.5 using the install instructions. I did not set up DNS and mail as they are housed on different boxes. Everything worked as expected. I even bound the server to our other ODM and was able to add our users to the Podcast group. Everything looked great and then I said okay to installing 10.5.6 - especially since it addresses some issues with Wikis, Blogs, and iTunes. Now Podcast Producer doesn't work. The Podcast Producer overview says that the Xgrid controller is unavailable. The Xgrid system log says that the connection to the controller was closed and that it could not connect for reasons unknown.
    Has anyone else seen this? Any ideas?
    Regards,
    Eric

    I agree with GemsBok; there are a dozen spots where the host name is stored and if one is off, services can run a muck. I had an issue with PCP and XGrid controllers and ended up completely wiping the system out and rebuilding from scratch. My suspicion was a DNS and hostname mismatch, but never could quite sort it out. After rebuilding, everything worked good. You may want to try demoting from Open Directory Master to Standalone, then promote back to ODM. Sometimes that fixes any kerberos problems you may be having.

  • When Podcast Producer says it's running but isn't (apache fails to start)

    We've set up a new Intel XServe up with Leopard Server (10.5.6) and are having trouble persuading the Podcast Producer engine from starting.
    First, we've set up all the accounts and settings exactly per Apple's PP documentation. Yes, I'm aware of the need to significantly tweak the defaults and that you don't just click "start" We have a fully functioning OD Master on this machine, plus DNS, Kerberos, XGrid, QTSS and our regular web services (on port 80) via Apache.
    We try to start the Podcast Producer in Server Admin. The dot goes green, indicating that the service is running. However, no one can connect to it using the Podcast Capture application (and yes, users attempting that are clients of the OD Master).
    The logs show what's not happening, but not why:
    The pcastserverd_out.log shows many repetitive instances of:
    Thu Jan 22 16:27:33 +1100 2009 -- Starting pcastserverd apache...
    pcastserverd_error.log shows many repeated instances of:
    Unexpected exception in check: Failed system command: /usr/sbin/httpd -f /usr/share/podcastproducer/apache/httpd.conf -k start (256)
    and, less often:
    Unexpected exception starting mongrel instance: Failed system command: /usr/sbin/httpd -f /usr/share/podcastproducer/apache/httpd.conf -k start (256)
    I have traced this error to the execution of a ruby file:
    /usr/share/podcastproducer/pcastserverd/lib/pcast_server.rb
    where there is a routine that obviously attempts to check "mongrel and apache" for something. Here's the routine:
    def check
    ASLLogger.debug("Checking mongrel and apache...")
    begin
    if (!check_apache)
    start_apache
    end
    if (ServerPreferences.mode == "main")
    @mongrelbase_port.upto(@mongrel_baseport + @num_mongrels - 1) do |portnum|
    start_mongrel(portnum)
    end
    end
    rescue Exception => boom
    ASLLogger.error "Unexpected exception in check: #{boom}"
    end
    end
    Here's the question: how do I further trace this fault to work out what's going on and how to fix it? Why does SA insist the PP engine is running when evidently it isn't? Why won't this instance of Apache launch properly?
    I am assuming that the PP invoked instances of Apache and it's "mongrels" (whatever they are) are using SSL on ports in the 8xxx range, and that these are entirely unrelated to the web services I've already set up for webmail, wikis and blogs elsewhere in SA.
    Your advice is appreciated.

    When you are charging what are you plugged into?
    You should plug the nano either into a power brick or directly into the back of your computer. Do not use USB hubs, or the USB ports on the front of the computer at first. Just confirm you can get a full charge on the USB connection at the back or from the power brick.
    i

  • Is there a way to create a iTunes U feed using .pdf  or .epub files using a Podcast Producer 2 backend?

    I'm in the process of creating an iTunes U site for my university.  We are in the process of activating an Xserve running Snow Leopard and Podcast Producer 2 to server as a backend and trying to figure out how to create various workflows and feeds for populating both the Public SIte Manager "public site"  and the authenticated "private site".   So far, I have not found any information regrading how to upload .pdfs or .epub documents using Podcast Composer or Podcast Capture.   Is this possible?

    WorMzy wrote:
    It depends where you extract the file to. If you extract it to your home directory so you can examine it's content, there's no problem -- it's just a static file. If you're extracting it over the existing file (in this case /etc/fstab), then you may end up screwing up permissions/ownership.
    I've not experimented with redirection enough to know whether the original file's permissions are preserved.
    maybe a chmod fix if needed?
    So I am having a problem because it keeps saying fstab might be a file and when I query I do not see the package /file. So help me understand by this similar question.
    This works fine.
    # pacman -S iw wpa_supplicant
    but using query does not find any package that resembles iw wpa_supplicant
    # pacman -Q
    Nothing in the list resembles the package above. It seems to me I just do not understand repositories (I think that is what these are called).
    Is there a good link or article that can clear this up? Also... how can I find out how to query files that contain certain characters in the package name such as lib* or *lib*?

  • How to get poster art in the RSS feed using Podcast Producer workflow

    With podcast producer there are standard workflow which create atom feeds. I can not figure out how to automatically generate a poster image (or any type of images) associated with the video to show in the rss feed. Anyone got this to work?
    Here is the feed of the test site:
    feed://switch.macsenior.net:8171/podcastproducer/atom_feeds/4C9A6B5A-4D09-4394-A 846-5407C8BF8FBD
    I like to show poster art of an random frame of the movie.

    You actually are publishing images. For example:
    http://switch.macsenior.net:8171/podcastproducer/feed_logos/4C9A6B5A-4D09-4394-A 846-5407C8BF8FBD.png
    http://switch.macsenior.net:8171/podcastproducer/attachments/4C9A6B5A-4D09-4394- A846-5407C8BF8FBD/2EFF4653-5E35-4F9F-B0D1-14C797DAB1C8.png
    You aren't seeing these images because of the way Safari parses feeds. Try using curl from the command line or another browser. Safari and Podcast Producer really don't play well together. A good example is trying to use the SSL port to view feeds.
    If you'd like to change the image to something common for all episodes in a workflow, select Window > Workflow Inspector in Podcast Composer. Be careful with your image dimensions, as it is posted unaltered.

  • Podcast Producing in a Windows World

    I'm running into some major issues at the school I work for trying to get Podcast Producer up and running. I've got an Apple Xserve with 10.5.1 that is a member of a Windows Active Directory Domain (No way for that to change).
    My question really applies to pages 23-24 of the Podcast Producer Admin Guide. How can I make this thing work in an environment where Windows controls DNS, Active Directory and everything else?
    Has anybody been able to integrate this into a Windows Server environment?

    I skipped the entire DNS section but I registered our server with the networking group and they created the DNS entry for me. Worse case, you should be able to use IP's instead of names to communicate with the server.
    As far as user accounts, I created them in both AD and on leopard server so that the info would match and everything was working smoothly. I do not know to which the clients were authenticating, I only assume it was leopard server.
    Eventually I ran into the problem of ical server being unable to integrate with AD so I spoke with our AD folks and they said as long as I do NOT turn on DHCP and DNS then I can create an OD master and run with it, which is what I'm doing now.

  • Looking for: Promo Movies of Podcast Producer--- slick demo's

    Why can't I find any actual video podcasts of Podcast Producer? Is it too new? Does someone have to capture a capture with another tool? (...like an iShowU capture of how to use Snapz Pro...)
    I want to show a video clip to demo this to my boss. Something to show the aspects of this being a great centralizing database for creating and publishing online video training movies... but she ain't going to get that from a one-page blurb on the Apple site's Leopard Server page.
    Anyone? Links to actual movies about Podcast Producer?

    The OS X 10.7 servers we installed didn't have it and Apple support told us it wasn't included.  But we could migrate it from older 10.6 and 10.5 servers to run it.  But it won't run on 10.8 at all now.

  • Lion Server just for Podcast Producer?

    I know nothing about servers and such, but am starting a video podcast for our small tribal college to teach our language and culture. I have a new iMac and Lion and use Final Cut Pro X.
    Can I install Lion Server just for Podcast Producer and ignore all the other stuff with it? Does PCProducer work well? And does it work well with video?
    Thank you for any and all advice or input.

    Correct.
    tj4shee wrote:
    Oh...... so if I read this right.... the total cost for setting up a Lion Server is $29 for Lion + $49 for the server tools.... so $88 total....
    I didn't catch on to that prior.....

  • Reading the ethernet address without root permissions

    Hello,
    Is there a way to get the ethernet address of a network interface without root permissions (in a user program)?
    I need the mac address in order to generate DCE's uuids. The mac address is used as a unique machine identifier.
    Serge

    HI
    You may use this program copied from a technote 2856-09 to get MAC address in C. Works fine only if arp cache is present though . It
    does not talk to the driver directly . May be usefull to you. Compile
    with "-lsocket -lnsl" flags.
    <pre>
    #include <stdio.h>
    #include <sys/types.h>
    #include <sys/sockio.h>
    #include <sys/socket.h>
    #include <net/if.h>
    #include <net/if_arp.h>
    #include <netinet/in.h>
    #include <arpa/inet.h>
    #include <netdb.h>
    #include <errno.h>
    main(argc, argv)
    int argc;
    char *argv[];
    int sockfd, i;
    struct arpreq arpreq;
    struct sockaddr_in *sin;
    struct hostent *hp;
    char host[256];
    if(argc != 2)
    printf("Usage : %s hostname\n", argv[0]), exit(1);
    strcpy(host, argv[1]);
    bzero(&arpreq, sizeof(struct arpreq));
    arpreq.arp_pa.sa_family = AF_INET;
    sin = (struct sockaddr_in *)&arpreq.arp_pa;
    sin->sin_family = AF_INET;
    sin->sin_addr.s_addr = inet_addr(host);
    if (sin->sin_addr.s_addr == -1) {
    hp = gethostbyname(host);
    if (hp == NULL) {
    fprintf(stderr, "%s: %s: unknown host\n",
    argv[0], host);
    exit(1);
    bcopy((char *)hp->h_addr, (char *)&sin->sin_addr,
    sizeof
    (sin->sin_addr));
    if ( (sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0 )
    perror("can't open datagram socket");
    if (ioctl(sockfd, SIOCGARP, (caddr_t)&arpreq) < 0)
    if (errno == ENXIO)
    printf("%s (%s) -- no entry\n",
    host, inet_ntoa(sin->sin_addr));
    else
    perror("SIOCGARP IOCTL failed");
    exit(1);
    printf("Hostname : %s", host);
    for (i=0; i<6; i++)
    printf("%c%x", i == 0 ? '\t': ':', (unsigned
    char)arpreq.arp_ha.sa_data);
    printf("\n");
    close(sockfd);
    exit(0);
    </pre>

  • Setting up Podcast Producer errors out

    It looks like I am almost done having this setup. My PcP 2 server is setup and forward / reverse DNS are working. I've kerberized the service.
    When going through the setup assistant, at the last step, I am getting an error message that states setup of the PcP failed.
    My podcast producer startup log returns this:
    2009-11-04 18:23:59 -0600 - Checking Open Directory search policy…
    2009-11-04 18:23:59 -0600 - Checking host names…
    2009-11-04 18:23:59 -0600 - Error: no host name in system configuration
    2009-11-04 18:23:59 -0600 - Checking users and groups…
    2009-11-04 18:23:59 -0600 - Checking default cerificate file…
    2009-11-04 18:23:59 -0600 - Checking preferences…
    2009-11-04 18:23:59 -0600 - Checking shared filesystem…
    2009-11-04 18:23:59 -0600 - Checking database…
    2009-11-04 18:23:59 -0600 - Checking Kerberos…
    2009-11-04 18:23:59 -0600 - Done. Fail.
    How can I resolve the problem with No Host Name in System configuration. As far as I can tell, everything is setup properly on that box.

    I had the same issue too and scutil verified my HostName (not to be confused with what `hostname` returns) was not set:
    admin$ scutil --get HostName
    HostName: not set
    this did the trick for me:
    admin$ scutil --set HostName foobar.domain.private

  • Podcast Producer Youtube workflow fails. Script produces runtime errors

    A guide was written regarding creating a Podcast Producer workflow for YouTube. Unfortunately, the completed script (even with all of the relevant API bits installed properly) returns an exception when trying to upload the video (client ID, data API have been substituted into the script). The Java script compiles and runs. However, when it failed, I decided to toString() the exception which was called and found out that Google was returning "Bad Request," meaning something with the way the Script was trying to talk to Google was bad. The code is still the reference code with the CID/DevKey subbed in, but because of the Bad Request exception passed by Google, it fails to upload, and thus, fails entirely.
    Is there a proper working YouTube workflow anywhere?

    Apologies: I just found the Podcast Producer forum, so I'm going to mark this one as answered and repost the question in the Podcast Producer forum now that I know a specific forum for it exists.

  • Podcast Producer - workflow is posted but the podcast is missing

    everything seems fine otherwise would really like a hand with this as i'm stumped.
    so i can create a work flow
    i can upload it
    i can see the workflow in podcast capture
    i can uploads to it
    no sign of the podcast after that

    Podcast Capture is designed to work with Podcast Producer, which is part of OSX Server. If you are running that you would do best to ask in its Forum. I don't know whether you can get any use out of Podcast Capture with non-server OSX.

Maybe you are looking for

  • Need User-Exit / Badi For CO11N selection screen

    Hello Gurus, I need to add an extra functionality in the selection screen of the Tcode CO11N .Can you suggest some user exit or badi for the same . The Functionality is : We need to make the field 'Reason' as mandatory whenever there is an entry in t

  • Short dump in LB10 transaction

    Hi all, In ECC 6 by LB10 Create Transfer Order from Transfer Requirement, When click Save to create a transfer order for putaway get error, and it showing Runtime Error  GETWA_NOT_ASSIGNED and Short text Field symbol has not yet been assigned. any on

  • An error has occurred which stopped the processing of the PDF. Trying to convert a .tif file

    I'm new to this conversion system.  I tried several times to convert a .tif file to a .pdf file.  I got the same message every time: "An error has occurred which stopped the processing of the PDF".  What am I doing wrong?

  • Boot Camp Partition too small

    I created a boot camp partition for Windows 7 a few months ago, but I didn't make it big enough. Now I'm getting a "not enough space" message when I try to update to boot camp 3.2. I seem to remember that if I need to resize, I need to reinstall boot

  • How to compensate for mili-volta​ge output interactio​n with FieldPoint FP-AI-100 Module?

    I have the white and green outputs of four Omega PX180B (100mV = 200 psig full scale) full bridge pressure transducers hooked to a FieldPoint FP-AI-100 analog input module.  I have a separate regulated 10V DC supply providing power to each transducer