How do i enable multicast in LINUX/JDS?

hello all,
as soon as i execute this code i get "NoSuchDevice" error only in linux/jds and it works perfectly on windows..
MulticastSocket ms = null;
            try
                ms = new MulticastSocket ();
                ms.joinGroup (ia);
                ms.send (dp);
                System.out.println ("Multicast.multicastSend:"+transmit);
            catch (SocketException ex)
                System.err.println (ex);
            catch (IOException ex)
                System.err.println (ex);
            }             i ran the same code in SuSe 9.3 also;same error here also;
i also executed this command "#iptables -F" and "#ifconfig eth0 MULTICAST -allmulti".its not working help me please by enumerating the all the steps completely to make multicast work.
thanks

hello all,
as soon as i execute this code i get "NoSuchDevice" error only in linux/jds and it works perfectly on windows..
MulticastSocket ms = null;
            try
                ms = new MulticastSocket ();
                ms.joinGroup (ia);
                ms.send (dp);
                System.out.println ("Multicast.multicastSend:"+transmit);
            catch (SocketException ex)
                System.err.println (ex);
            catch (IOException ex)
                System.err.println (ex);
            }             i ran the same code in SuSe 9.3 also;same error here also;
i also executed this command "#iptables -F" and "#ifconfig eth0 MULTICAST -allmulti".its not working help me please by enumerating the all the steps completely to make multicast work.
thanks

Similar Messages

  • How can I enable trace log in Oracle Database 10g ( in RedHat Linux)

    Dear Forums Members,
    Could u plz drop a message about how can I enable $Oracle_Home/network/trace
    in Oracle Database 10g (Operating system is RedHat Linux Advanced Server 3).
    I will very greatful if someone reply my message.
    Thanks
    Aungshu

    To enable Tracing for a session Level.
    ALTER SESSION SET TRACEFILE_IDENTIFIER = 'my_trace_id';
    Enable the SQL Trace facility for the session by using one of the following:
    SQL> Exec DBMS_SESSION.SET_SQL_TRACE
    or
    SQL> ALTER SESSION SET SQL_TRACE = TRUE;
    To disable the SQL Trace facility for the session, enter:
    ALTER SESSION SET SQL_TRACE = FALSE;
    To enable Tracing for a database level.
    Edit init parameter SQL_TRACE = TRUE.
    Its not recomended because running the SQL Trace facility increases system overhead, enable it only when tuning SQL statements, and disable it when you are finished

  • Multicast in Linux

    Hi,
              Does anyone know how to add an IP address to a multicast address in Linux?
              Do I have to use the "route" command?
              Thanks,
              Mo
              

    I'm not sure what you are trying to do. You shouldn't need to do anything
              special with the routing tables to enable multicast...
              Mohammad Khan wrote:
              > Hi,
              >
              > Does anyone know how to add an IP address to a multicast address in Linux?
              > Do I have to use the "route" command?
              >
              > Thanks,
              > Mo
              

  • How can I enable embedded pl/sql gateway to run on port 80

    I have a new 11G install on OEL 4.0, database created. I would like to be
    able to access the instance using the pl/sql gateway. Works fine with
    port 8080, the default. How to I enable it to run on port 80?
    I found this statement in the following docuementation:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb22pro.htm#ADXDB2500
    Using HTTP(S) on Nonstandard Ports
    By default, HTTP listens on a nonstandard, unprotected port: 8080. To use HTTP(S) on
    the standard port, such as 80, your DBA must chown the TNS listener to setuid ROOT
    rather than setuid ORACLE, and configure the port number in the Oracle XML DB
    configuration file /xdbconfig.xml.I have root priviledges on the box.
    I've tried setting the listener file permissions:
    chown root:dba /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    chmod 6775 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    Also put root in the dba group.
    The permissions turn out like this:
    -rwsr-sr-x 1 root dba 830854 Jun 17 21:04 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    I stopped the listener, bounced the database, and started the listener again.
    But it still shows the process being owned by oracle:
    oracle 29682 1 0 21:08 ? 00:00:00 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr LISTENER -inherit
    Changing the port is easy:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    8080 2100
    At this point, I can access the apex home page with the following url:
    http://hostname:8080/apex/f?p=4550:10:1454849288245548
    I can than change it to port 80:
    SYS>begin
    dbms_xdb.sethttpport('80');
    dbms_xdb.setftpport('2100');
    end;
    2 3 4 5
    PL/SQL procedure successfully completed.
    SYS>SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    80 2100
    When I try to access apex with the following url:
    http://rmdcopslnx1.us.oracle.com/apex/f?p=4550:10:1454849288245548
    I get the following:
    Failed to Connect
    Firefox can't establish a connection to the server at hostname.com.
    Though the site seems valid, the browser was unable to establish a connection.
    * Could the site be temporarily unavailable? Try again later.
    * Are you unable to browse other sites? Check the computer's network connection.
    * Is your computer or network protected by a firewall or proxy? Incorrect settings
    * can interfere with Web browsing.I can set the port. Just can't talk to it.
    This is the entry from the listener log:
    <msg time='2008-07-03T15:40:09.741-06:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='hostname'
    host_addr='xxx.xxx.xxx.xxx'>
    <txt>TNS-12546: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
    TNS-00516: Permission denied
    Linux Error: 13: Permission denied
    </txt>
    </msg>
    So this looks like an permissions problem. But where? I posted
    this on the apex forum here:
    Re: How can I enable embedded pl/sql gateway to run on port 80
    They suggested asking here.

    No, that thread did not provide the information that I need. Some more data:
    I have the port set to 8080:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    8080 2100
    At this point, I can access the apex home page with the following url:
    http://hostname:8080/apex/f?p=4550:10:1454849288245548
    I can than change it to port 80:
    SYS>begin
    dbms_xdb.sethttpport('80');
    dbms_xdb.setftpport('2100');
    end;
    2 3 4 5
    PL/SQL procedure successfully completed.
    SYS>SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    80 2100
    When I try to access apex with the following url:
    http://rmdcopslnx1.us.oracle.com/apex/f?p=4550:10:1454849288245548
    I get the following:
    Failed to Connect
    Firefox can't establish a connection to the server at hostname.com.
    Though the site seems valid, the browser was unable to establish a connection.
    * Could the site be temporarily unavailable? Try again later.
    * Are you unable to browse other sites? Check the computer's network connection.
    * Is your computer or network protected by a firewall or proxy? Incorrect settings can interfere with Web browsing.
    I can set the port. Just can't talk to it.

  • HT2434 How do I get my custom linux software to display at 1280x1024 on my iMac under Parallels? and stay that way when I reboot?

    How do I get my custom linux software to display at 1280x1024 on my iMac under Parallels? and stay that way when I reboot?

    Interesting. Comes with? you didn't have either before? Paragon is commercial and is now v. 10.0, they were the only one keeping updated and was supporting 10.7.4. I would not enable more than one.
    For writing to HFS Paragon has theirs but probably give the nod to MacDrive there.
    I never do an upgrade to a new OS over the old system, I backup (clone) and format the drive with the new OS and do the install so whatever is there I know is clean and also to keep from carrying around leftovers from years and systems past.
    I would assme Paragon is limited. Try their site and knowledge base?
    MacDrive
    http://www.mediafour.com/updates/macdrive
    Paragon HFS
    http://www.paragon-software.com/home/hfs-windows/
    Paragon NTFS
    http://www.macupdate.com/app/mac/26288/ntfs-for-mac-os-x
    http://www.paragon-software.com/home/ntfs-mac/

  • Enabling multicast on Wireless

    Greetings
    I know it's possible but I wonder if it is advisable to configure multicast on wireless network.
    We have 3 WLC 5508 with 7.0.98.0 code and Base license
    we have over 160 AP's running N
    the clients are connected in a great big address pool - with possibility of 8000+ host ip's
    we currently have over 1000+ clients connecting
    Management expects wireless to work like a wired network.
    They want to enable multicast for applications like Apple Bonjour and other programs and also for streaming video.
    I am of the opinion it's not the greatest of ideas.
    I see people enabling multicast but not on the scale with the user base we have.
    any advise

    I have enabled multicast on wireless before, but not on this scale.  First of all the idea of having so many clients in the same IP range doesnt seem a good idea regardless of multicast.  Assuming you set up multicast on the WLC and LAN correctly, then having a lot of receivers is what multicast was designed for (however wireless multicast performance isnt as good as wired, not sure about the new features in WLC v7).  The questions to ask is how many IPmc sources you might have?  If there are a lot of sources, then this will be a problem rather than how many receivers there are.

  • How do I enable Bios Virtualization on an HP Probook 450 G1 laptop?

    I have an HP 450 G1 laptop and want to install VirtualBox 64 bit for Linux. It requires that the Bios Virtualization setting be enabled.
    How do I enable this on the HP 450 G1?
    Thank you.
    This question was solved.
    View Solution.

    Please restart the Notebook and keep tapping F10 key during the startup to access the BIOS. Once you get to the BIOS please select System Configuration and then go to Device Configuration. Now here you need to look for either BIOS Virtualisation or VT-X and enable the same.
    Hope this helps, for any further queries reply to the post and feel free to join us again
    **Click the KUDOS star on left to say Thanks**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.
    Thank You,
    K N R K
    I work on behalf of HP

  • I have a Verizon IPhone 4 and i can't figure out how to get my ringtones from an app to my iTunes account, it doesn't have a tab for Ringtones! I have tried unplugging it and checking if would show up but it didn't, how do you enable the ringtone folder?

    I have a verizon IPhone and i can't figure out how to get my ringtones from the app to iTunes, my account doesn't have a ringtone section in the liRingtone Folder?brary, how do you enable the ringtone folder?

    Edit > Preferences.  Select the check box for Ringtones, this will add them to the listing in iTunes. 
    Not sure that really answers your question though.

  • How do I enable an add-on in Firefox safe mode?

    So recently I have had a problem with Firefox crashing all the time and found out it was an add-on that was causing the problem.
    I have tried opening Firefox in safe-mode to disable add-ons but they are already disabled, so I want to know how to enable an add-on and then to permanently disable it so Firefox will open normally again. . .
    I have already tried to permanently disable all add-ons by using the Firefox options box but nothing happens after I click on the 'make changes and restart firefox' button. After I click it nothing happens and it remains frozen. ([https://support.mozilla.com/en-US/kb/Safe%20Mode Safe mode Window])
    So to make things short, how do I enable an add-on in Firefox safe mode?

    In Firefox 4 and later [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and also disables hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.
    You should still see a Disable button or Enable button (if you disabled them all) in the extension Manager (Tools > Add-ons > Extensions) if you start Firefox in Save mode.
    *https://support.mozilla.com/kb/Safe+Mode

  • How do I enable my iTouch? I am trying to update the apps but when I click "Update All", a pop up "Your Apple ID has been disabled." How do I change it so I can enable my iTouch? Thanks.

    How do I enable my iPod? I am trying to update the apps but when I click "Update All", a pop up "Your Apple ID has been disabled." How do I change it so I can enable my iPod? My iPod is not locked (I know my password), but I just can't figure out how to enable it. Thanks.

    This may help:
    http://support.apple.com/kb/ts2446

  • TS3280 How can i enable both paired bluetooth and ios keyboard input at the same time?

    How can i enable both paired bluetooth and ios keyboard input at the same time?
    This is needed for the app im working on. Need some user input via keypad as well as scanner input via a paired bluetooth scanner.

    You probably should not be using a keyboard bluetooth profile for a scanner, I am not a developer for apple so do not know the location for you to find out the correct profile you should be using for an input device that is not a keyboard. Sorry,
    I am sure if you navigate the apple developer site you will probaly finmd what you're looking for.
    https://developer.apple.com

  • How do I enable flash and java on firefox23 as I have the latest versions installed yet the plugin page shows "disabled" with no option to enable

    I have updated to Firefox 23 and it disabled my Java and Flash plugins. I then updated these to Flash 11.8.800.94 and Java to Version 7 Update 25. Now these are showing up on the plug in page but are showing "disabled" with no option to enable. How do I enable them to view content on the web.

    Thanks Philipp but i have already done that and the content started working...
    However, when i closed and restarted the browser it returned back to the same settings...
    I dont think that should happen, but anyway thank you for the solution. At least I can use it by resetting the values if need be
    Appreciate your help

  • How do i enable my iphone with out itunes

    how do i enable my iphone with out itunes how do i enable my iphone with out itunes

    You need a WiFi connection to activate the iPhone without itunes on a mac/pc.

  • How can I enable spell checking for a text box that is just one line, e.g. subject in e-mail?

    In a prior version of Firefox I found a website somewhere that told me what to do to enable spell checking for text boxes that are just one line. I got used to being able to send an e-mail with a Subject Line that didn't have a misspelling. Now it doesn't work. Please tell me how I can enable that again. I am on a Mac using Firefox 6.0.2. Thanks!

    See:
    *http://kb.mozillazine.org/Spell_checking
    *http://kb.mozillazine.org/layout.spellcheckDefault
    You can set the pref <b>layout.spellcheckDefault</b> to <i>2</i> on the <b>about:config</b> page.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold (user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • I have three different e-mail addresses, and need to receive the incoming e-mails from the three sources.  How do I enable my iPhone to do it? Tks in advance.

    I have three different e-mail addresses, and need to receive the incoming e-mails from the three sources into my iPhone (it's presently receiving msgs from only one of them).  How do I enable my iPhone to do it? Tks in advance.

    Many thanks for your help!

Maybe you are looking for

  • Guide me to override the af:query component QueryListener property

    Hi All, If any one have sample application to override the af:query component query lisenere proprety, please share. I have the following requirement in search criteria. Field 1 Field 2 Field 3 Field 4 Field 5 Find Button Result section Validations o

  • All values in hierarchy

    my hierarchy is like this: 1. product1    1.1 state 1    1.2 state 2    1.n state n 2. product 2    2.1 state 1    2.2 state 2    2.n state n But in my report i wanna display only some states...not all states, like: 1. Product 1    1.1 State 5 2. Pro

  • Reparation process for goods delivered back from customer for repair

    Dear friends, I have to create an "easy" process with which we can create a sort of "return from customer". This process should enable us to create us a "customer stock". So value should not be on our plant but we need to show, that there is a materi

  • How to combine pdf files on Mac?

    I've got multiple PDF files, is it possible to combine them into one PDF file? I need to merge them for more convenient use. Any help would be appreciated.

  • BEA WLS 6.0 Install Error