Can mail be accessed from a remote machine

If multiple mail accounts are set up on lion server (students in a school), can these accounts be accessed from the outside world by the students? Preferrebly via a web browser.
Would this be possible or would there be any other method of accessing mails without a fixed machine with a VPN?
Doey

The Server applicaiton will allow you to tick a box to enable webmail under the "Mail" configuration area.
This will use either the default self-signed SSL certificate, or, whichever certificate you nominate, to then enable the Apache2 web server to listen on 443 and re-direct traffic to your.host.name:443/webmail to the included Roundcube installation.
Roundcube is a popular (free) webmail package that is pre-configured on Lion Server -- all you should need to do is correctly enable users (one note on that, see below), configure the Mail service itself, and enable Webmail via the tick box.  I've done this, it works.
The note on enabling users:  There are some configurations whereby the type of password storage used by Lion Server is not compatible with Mail/Webmail -- I can't recall off the top of my head what these are, but, when I created and administered users, there was a warning.  And indeed, if I tried to sign in as certain users, it would not work.  I had to reset the password and it worked fine.
In short, though, the webmail installation is pretty slick.  Lion is using Dovecot for IMAP/POP, Postfix for SMTP and Roundcube for Webmail.
If you REALLY want to please your users, you'll want to enable Server Side Mail Filters -- which is Apple talk for Sieve, a fantastic way to sort and process mail on the server side automatically as mail arrives.  The Roundcube webmail setup has the GUI for this built in, under the Filters area.
Hope that helps!

Similar Messages

  • JMF : Audio can not be played from the remote machine

    Hi,
    I am developing voice chat application.
    As the moment this writing I can capture from mic and play it from the same machine.
    But when I capture and transmit audio from one machine and try to play from remote machine in LAN it does not work.
    Could anybody tell me please What would be the possible causes for this ? I have given the code below.
    //Transmitter
    package lsf.telphony.test;
    import java.io.IOException;
    import java.util.Vector;
    import javax.media.CannotRealizeException;
    import javax.media.CaptureDeviceInfo;
    import javax.media.CaptureDeviceManager;
    import javax.media.DataSink;
    import javax.media.Format;
    import javax.media.Manager;
    import javax.media.MediaLocator;
    import javax.media.NoDataSinkException;
    import javax.media.NoDataSourceException;
    import javax.media.NoProcessorException;
    import javax.media.NotRealizedError;
    import javax.media.Processor;
    import javax.media.ProcessorModel;
    import javax.media.format.AudioFormat;
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.DataSource;
    public class MediaTransmetter implements Runnable
         private MediaLocator mediaLocator = null;
         private DataSink dataSink = null;
         private Processor mediaProcessor = null;
         public static String errorString;
         private CaptureDeviceInfo captureDeviceInfo = null;
         public MediaTransmetter(String rtpURL)
              DataSource dataSource = null;
              ProcessorModel model = null;
              Format formats[] = null;
              ContentDescriptor contentDescriptor = null;
              try
                   captureDeviceInfo = getCaptureDevice();
                   mediaLocator = captureDeviceInfo.getLocator();
                   dataSource = javax.media.Manager.createDataSource(mediaLocator);
                   contentDescriptor = new ContentDescriptor(ContentDescriptor.RAW_RTP);
                   formats = new Format[] { new AudioFormat (AudioFormat.LINEAR) };
                   model = new ProcessorModel(dataSource, formats, contentDescriptor);
                   mediaProcessor = Manager.createRealizedProcessor(model);               
                   MediaLocator outputLocator = new MediaLocator(rtpURL);
                   dataSink = Manager.createDataSink(mediaProcessor.getDataOutput(), outputLocator);               
              } catch (Exception e)
                   e.printStackTrace();
         @SuppressWarnings("unchecked") //check for this statement
         private CaptureDeviceInfo getCaptureDevice()
              CaptureDeviceInfo captureDeviceInfo;
              Vector<CaptureDeviceInfo> deviceListVector = CaptureDeviceManager.getDeviceList(new AudioFormat(AudioFormat.LINEAR));
              for (int i = 0; i < deviceListVector.size(); i++)
                   captureDeviceInfo = (CaptureDeviceInfo)deviceListVector.elementAt(i);
                   System.out.println("captureDeviceInfo = " + captureDeviceInfo);
                   return captureDeviceInfo; // here the firt element is return. Add to login to get the specific CaptureDeviceInfo object.
              return null;
         @Override
         public void run()
              try
                   dataSink.open();
                   dataSink.start();
              } catch (SecurityException e)
                   e.printStackTrace();
              } catch (IOException e)
                   e.printStackTrace();
              mediaProcessor.start();
              System.out.println("Transmitting started successfully.");
         public static  void main(String[] args) { // Loads pastry settings
              MediaTransmetter mediaTransmetter = new MediaTransmetter("rtp://192.168.2.2/audio");
              Thread mediaTransmetterThread = new Thread(mediaTransmetter);
              mediaTransmetterThread.start();
    }//AudioReceiver
    package lsf.telphony.test;
    import javax.media.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    public class MediaReceiver extends JFrame implements Runnable
         private static final long serialVersionUID = 1L;
         private static final String FRAME_TITLE = "Telphony Media Player";
         private static final String CONTROL_PANEL_TITLE = "Control Panel";
         private static final int LOC_X = 100;
         private static final int LOC_Y = 100;
         private static final int HEIGHT = 500;
         private static final int WIDTH = 500;
         private Player player = null;
         private JTabbedPane tabPane = null;
         public MediaReceiver()
              super(FRAME_TITLE);
              setLocation(LOC_X, LOC_Y);
              setSize(WIDTH, HEIGHT);
              tabPane = new JTabbedPane();
              getContentPane().add(tabPane);
              addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        closeCurrentPlayer();
                        System.exit(0);
         private JPanel createMainPanel()
              JPanel mainPanel = new JPanel();
              GridBagLayout gbl = new GridBagLayout();
              GridBagConstraints gbc = new GridBagConstraints();
              mainPanel.setLayout(gbl);
              boolean visualComponentExists = false;
              if (player.getVisualComponent() != null)
                   visualComponentExists = true;
                   gbc.gridx = 0;
                   gbc.gridy = 0;
                   gbc.weightx = 1;
                   gbc.weighty = 1;
                   gbc.fill = GridBagConstraints.BOTH;
                   mainPanel.add(player.getVisualComponent(), gbc);
              if ((player.getGainControl() != null) && (player.getGainControl().getControlComponent() != null))
                   gbc.gridx = 1;
                   gbc.gridy = 0;
                   gbc.weightx = 0;
                   gbc.weighty = 1;
                   gbc.gridheight = 2;
                   gbc.fill = GridBagConstraints.VERTICAL;
                   mainPanel.add(player.getGainControl().getControlComponent(), gbc);
              if (player.getControlPanelComponent() != null)
                   gbc.gridx = 0;
                   gbc.gridy = 1;
                   gbc.weightx = 1;
                   gbc.gridheight = 1;
                   if (visualComponentExists)
                        gbc.fill = GridBagConstraints.HORIZONTAL;
                        gbc.weighty = 0;
                   } else
                        gbc.fill = GridBagConstraints.BOTH;
                        gbc.weighty = 1;
                   mainPanel.add(player.getControlPanelComponent(), gbc);
              return mainPanel;
         public void setMediaLocator(MediaLocator locator) throws Exception, IOException, NoPlayerException,
                   CannotRealizeException
              setPlayer(Manager.createRealizedPlayer(locator));
         public void setPlayer(Player newPlayer)
              closeCurrentPlayer();
              player = newPlayer;
              tabPane.removeAll();
              if (player == null)
                   return;
              tabPane.add(CONTROL_PANEL_TITLE, createMainPanel());
              Control[] controls = player.getControls();
              for (int i = 0; i < controls.length; i++)
                   if (controls.getControlComponent() != null)
                        tabPane.add(controls[i].getControlComponent());
         private void closeCurrentPlayer()
              if (player != null)
                   player.stop();
                   player.close();
         public static void printUsage()
              System.out.println("Usage: java MediaPlayerFrame mediaLocator");
         public void run()
              try
                   MediaReceiver mpf = new MediaReceiver();
                   mpf.setMediaLocator(new MediaLocator("rtp://192.168.2.2:10000/audio"));
                   mpf.show();
              } catch (Exception t)
                   t.printStackTrace();
         public static void main(String[] args) { // Loads pastry settings
              MediaReceiver mediaReceiver = new MediaReceiver();
              Thread mediaReceiverThread = new Thread(mediaReceiver);
              mediaReceiverThread.start();

    By the way the program does not terminate immediately after starting it. According to your advice I tried removing running it inside in a thread and making it sleep at several points appropriate. No luck.
    I wonder why packets are not sending even the program is running until the end of the line with no exception.
    Have you tried to capture RTP packet traffic with Wireshark or similar kind of network analyzing software with this kind of program?
    I am doubt whether my program is actually transmitting packets but unable to capture those due to the error with transmitter.
    Even with the Wireshark It does not capture outgoing packets.
    And another thing I noticed with netstat is it shows two pots get opened when running the application but those ports are not the one I note in the program.
    For example I run the program with port number as 10000 (sink: setOutputLocator rtp://192.168.2.104:10000/audio). But when I check it with netstat some other ports are open.
    i.e
    nuwan@nuwan-laptop:~/eclipse$ netstat -anup
    (Not all processes could be identified, non-owned process info
    will not be shown, you would have to be root to see it all.)
    Active Internet connections (servers and established)
    Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
    udp 0 0 0.0.0.0:68 0.0.0.0:* -
    udp 0 0 0.0.0.0:40526 0.0.0.0:* -
    udp 0 0 0.0.0.0:5353 0.0.0.0:* -
    udp6       0      0 127.0.1.1:28864         ::: 10772/java*
    udp6       0      0 127.0.1.1:28865         ::: 10772/java*
    nuwan@nuwan-laptop:~/eclipse$
    And each time when I start the program these two ports are changed also.
    And foreign address is not shown ? Any comment for that??
    Is there anything that can be drawn from above information which caused for not working my program.
    This is killing me. And also making me sharper. And I cant leave this behind also. So highly appreciate you time and help.
    Thanks.

  • How can i install oracle from a remote machine

    Hi,
    I need to install oracle 8i from a remote machie using a public ip.For this i tried connecting remote erver usig Xwindows like cygwin,Xwin-32. but my remote machie is not connecting and showing blank screen.I can connect through putty and tried for silent installation but it was failed.Can any one give me some suggetion for remote installation or atleast for silet intallation.
    Thaks and Regard
    Anand

    try VNC
    http://www.realvnc.com/
    install vncserver on server side
    and run vncclient on either unix box or windows pc
    just pick a version you like.
    Most importantly It's free
    null

  • Copying Files From a Remote Machine through "rcp" command not working.

    Hi All,
    I'm a new comer to this famous forum. I was trying to go through the PDF "Solaris Advanced User's Guide" .So in chapter 9-"Using the network" i came across "Copying Files From a Remote Machine". And the syntax was "rcp machinename:source destination" . And i got another note. It is like
    "The rcp command enables you to copy files from one machine to another. This command uses the remote machine's /etc/hosts.equiv and /etc/passwd files to determine whether you have unchallenged access privileges. The syntax for rcp is similar to the command syntax for cp.".
    But i maintained remote machine's IP address in my system's /etc/hosts file. But still i am unable to do the rcp from remote system to my system or vice versa.
    Always i am getting error message " **Connection refused**".
    Therefore please some one guide me how to perform the " Copying Files From a Remote Machine" through rcp command.
    Reghards
    Kartik

    Hi
    The inconvenience of using scp is that you have to type the password every time you stablish a connection. You can work around this, adding a key into the remote hosts_allow file. This implies in more maintenance.
    From the rcp man page:
    +rcp does not prompt for passwords. It either  uses  Kerberos authentication which is enabled through command-line options or your current local user name must exist on  hostname  and allow remote command execution by rsh(1).+
    From the rsh man page:
    + If you omit command, instead of executing a single command, rsh logs you in on the remote host using rlogin(1).+
    By default, rlogin is disabled on Solaris 10
    [SunOS 5.10/bash] root@wgtsinf01:/store/sun/operating-systems
    # svcs -a|grep -i rlog
    disabled       May_11   svc:/network/login:rloginSo, to use rcp you have to enable the rlogin service and set up all the configuration files. Particularly, as already suggested, I too suggest you to use scp. :)
    Cheers
    -- Andreas
    Edited by: Bank_Of_New_Zealand on 15/06/2009 13:09

  • I have an iTunes account where I have downloaded Digital movies & I am able to see the list on the desktop of the original downloads. When I log on another device with my login I do not see my list to access them. Why can't I access from another device

    I have an iTunes account where I have downloaded Digital movies & I am able to see the list on the desktop of the original downloads. When I log on another device with my login I do not see my list to access them. Why can't I access from another device

    Hey GingCarv,
    Great question. You'll want to download the movies from your purchase history. The following article explains how to do so:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Note: At this time, movies are not available for automatic downloads.
    Thanks,
    Matt M.

  • Can mail be accessed without using apple password

    Can Mail be accessed without using an Apple password

    Appreciate the reply - it was a local IP problem - thanks

  • How to restore an Apple Mail draft file from a time machine backup

    How do I restore a single Apple Mail draft file from a time machine backup?

    Never mind. Just figured it out. I restored the single file, but after that I'm receiving dozens of old notifications of new Mail. Not sure why.

  • Not able to access database from a remote machine using SQL Server Management Studio

    Hi,
    I have a DB_BOX with SQL Server 2008 R2 installed. I can access the databases on the local machine using SQL Server Management Studio but it is not accessible from other machines, though the machines are in same domain.
    I have remote enabled on SQL Server box, TCP enabled, firewall off. I checked with IP Address too, all SQL Server services are running.
    The SQL Server log shows the message
    The requested service has been stopped or disabled and is unavailable at this time. The connection has been closed.
    I get the below message in SSMS from remote machine.
    Details of error message are
    ===================================
    Cannot connect to DB_BOX.
    ===================================
    A connection was successfully established with the server, but then an error occurred during the login process. (provider: TCP Provider, error: 0 - The specified network name is no longer available.) (.Net SqlClient Data Provider)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=64&LinkId=20476
    Server Name: DB_BOX
    Error Number: 64
    Severity: 20
    State: 0
    Program Location:
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParserStateObject.ReadSniError(TdsParserStateObject stateObj, UInt32 error)
       at System.Data.SqlClient.TdsParserStateObject.ReadSni(DbAsyncResult asyncResult, TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParserStateObject.ReadNetworkPacket()
       at System.Data.SqlClient.TdsParserStateObject.ReadBuffer()
       at System.Data.SqlClient.TdsParserStateObject.ReadByte()
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlInternalConnectionTds.CompleteLogin(Boolean enlistOK)
       at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject)
       at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart)
       at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup)
       at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
       at System.Data.SqlClient.SqlConnection.Open()
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.ObjectExplorerService.ValidateConnection(UIConnectionInfo ci, IServerType server)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()

    Sorry, missed the message from the errorlog in the original post. You shouldn't have included that big .Net dump that hid the important facts. :-)
    My first Google attempt on that message (which I have never seen before) suggests that the TCP Enpoint is stopped, so try this:
    ALTER ENDPOINT [TSQL Default TCP]
    STATE=STARTED;
    Erland Sommarskog, SQL Server MVP, [email protected]
    This solves the problem. Thanks...

  • Cannot connect to a named instance using SSMS from a remote machine

    Hi all,
       SQL Server.....: 2012 EE
       OS...................:  Windows Server 2008 R2
       I have a desktop machine, that i am using to administrer SQL Server (via SSMS) and to develop my SSIS solutions, but i can't connect to a named instance of my SQL Server. When i try to connect using SSMS to my named instance (myhost\DWSERVER)
    i get a huge error message:
    A network-related or instance-specific error occurred while establisinh a connection to SQL Server. The server was not found or was not accessible. Verify that the instance is correct and that SQL Server is configured to allow remote connections.
    (provider: TCP Provider, error: 0 - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.) (Microsoft SQL Server, Error: 10060)
    Locally, i am able to access that named instance using SSMS, just when i try to access from another machine, the above error pops-up to me.
    I am using the SQL Server Authentication mode to connect to the named instance.
    What am i doing wrong?
    Thanks in advance.
    Fabrício Pedroso Jorge Database Administrator - Belém, Pará, Brazil

    Hi,
       thanks for your attention.
       That's correct, i can connect to my default instance both locally and remotelly. The default instance in on port 1433. I cannot find the port used by the named instance (DWSERVER).
       Actually, i found this on the errorlog from the named instance:
       2015-03-22 10:10:45.80 spid13s     Server is listening on [ 'any' <ipv6> 49411].
       2015-03-22 10:10:45.80 spid20s     Server is listening on [ 'any' <ipv6> 5023].
       2015-03-22 10:10:45.81 spid20s     Server is listening on [ 'any' <ipv4> 5023].
       2015-03-22 10:10:45.81 spid20s     The Database Mirroring endpoint is now listening for connections.
       2015-03-22 10:10:46.12 spid13s     Server is listening on [ 'any' <ipv4> 49411].
       2015-03-22 10:10:46.25 spid13s     Server local connection provider is ready to accept connection on [ \\.\pipe\SQLLocal\DWSERVER ].
       2015-03-22 10:10:46.26 spid13s     Server local connection provider is ready to accept connection on [ \\.\pipe\MSSQL$DWSERVER\sql\query ].
       2015-03-22 10:10:46.26 Server      Server is listening on [ ::1 <ipv6> 49412].
       2015-03-22 10:10:46.26 Server      Server is listening on [ 127.0.0.1 <ipv4> 49412].
       I can ping normally to the remote server.
    Fabrício Pedroso Jorge Database Administrator - Belém, Pará, Brazil

  • How can I 'screen share' from my Lion machine to my old Tiger mac?

    I have a new MacPro running 10.7.3.
    I have an old Mac desktop running Tiger (10.4)
    I can't seem to screen share.
    I want to remotely control the old Tiger machine from my Lion one.
    I checked 'Remote Desktop' on the Tiger- but still no happiness.
    I CAN mount the drives from that older computer just fine.
    mark

    Mark, sorry for any misunderstanding, CoVNC is only needed if you want to control the newer one with the old one.
    On the old one enable...
    Personal File Sharing
    Remote Login
    Apple Remote Desktop
    Remote Apple Events
    On the ARD choice click Access Privileges and fill in what & who can do what.
    Easiest to sign into the old one with the old one's username & old one's PW if you checked that as OK on the old one.

  • Access from a Windows Machine

    I've bought a G5 PowerMac and passed my G4 to my wife so she can move over from her Windows machine. My old account still exists on the G4 (along with hers) and we've set up an account for her too on the G5.
    From the windows machine, we can access my accounts on both G4 and G5 machines but we can't access hers on either! I'm convinced we're using the same format - just a different user name and password - but it gives the message that we do not have permission. Any ideas?

    Hi Ed,
    You need to use the port mapping feature of the Airport Extreme base station to forward the ports used by ARD/VNC to the Mac you want to connect to on your home network. Be aware that you can only forward the ports to one private IP address on your home network so you will be able to connect to only one machine.
    This is from the Remote Desktop Manual.
    If you want to use Remote Desktop from behind a NAT router to access computers beyond the NAT router, you need to set TCP and UDP port forwarding for ports 3283 and 5900 to your administrator computer. Similarly, if you wish to access a client computer that is behind a NAT router, you need to set the router to forward TCP and UDP ports 3283 and 5900 to the client computer you wish to access.
    PowerMac G5 Dual 2 GHz, MacBook Pro Core 2 Duo 2.16 GHz   Mac OS X (10.4.8)  

  • I have reinstalled my OS without time machine (using the disc). I want to restore some pictures in the iPhotos which are already in the time machine i was using previously. How can I restore iPhoto from previous time machine?

    My mac book was incredibly slow. When I went to Mac store, they asked me to reinstall the OS with CD and not with the time machine. I reinstalled the operating system. But when I opened the applications, all those started as fresh applications as usual. I have the backup of all other data in another hard disc. But unfortunately, I forgot to copy the photos before reinstallation. I have those photos in my time machine back up. But when I opened time machine, it started like a fresh (very new) time machine and it started backing up my present OS (the reinstalled one). I cannot open the previous time machine, which is in the same hard drive. I wish to open the previous time machine to get the photos which are backed up previuosly. When opened the time machine disc (manually by clicking the icon), i can see all the thigs which I had previously in my macbook. But unfortunately, i cannot access those through time machine! Can anybody help me please?

    How to redownload purchased apps from the App Store

  • Can no longer access the Canon Remote UI Management Mode (Portal) (on my Desktop Computer)

    I set up access to the Canon Remote UI Management Mode (Portal) using my IPv4 address so that I could make changes to the settings of my imageCLASS MF6160dw directly from my Desktop Computer. That has worked flawlessly for almost 3 months. Then, all of a sudden 3 days ago, I started getting this message: This page can't be displayed I have not added nor removed any equipment or software to my Desktop Computer. I also reconfirmed that my IPv4 address was correct.And I try to access the "Portal" numerous times at different times of the day & on different days. My Desktop Computer is a Dell XPS 8700 Special Edition running Windows Pro 8.1 (64-BIT) How can I regain access to the "Portal"?

    I never got a reply from anyone.
    But for those who viewed this thread & may also have this problem, I finally figured out that the IP Address had actually CHANGED.
    How & why it changed, I do not know.
    But, the last 2 digits of .15 changed to .2
    I can now access the Canon Remote UI Management Mode (Portal) by using the CHANGED IP Address.
    Hope this helps someone.

  • How can I restore files from a time machine back-up of my iMac to an EXTERNAL hard drive connected to MacBook Pro. Using Migrat

    I would like to restore files from a time machine back-up of my iMac to an EXTERNAL hard drive connected to MacBook Pro. When I tried using Migration Assistant it only gives me my internal hard drive as an option to restore to. The internal hard drive on my macbook isnt large enough to store the files.

    Welcome to Apple Support Communities
    OS X can only restore data to the drive where Time Machine backed up files from.
    If you want to restore files from the Time Machine backup onto an external drive, your only option is to access to the Time Machine drive manually (open a Finder window and choose your Time Machine drive in the Finder sidebar), navigate through its folders and copy the files you want to the external drive

  • Oracle E-Business Suite access from the Host machine

    Hellow,
    Please, after installing E-Business Suite and going through Post-configuration details, I would like to get access of my applications portal from the host system.
    I have tried several ways of doing that and would not know the steps to follow in order to access the portal directly from the physical host machine.
    I took the normal steps as when configuring end users and can ping the virtual machine from the Host system but can't do the same form the virtual machine of the host machine.
    I can ping another server and other machines int he same network but not the one on which the virtual machine is installed.
    Regards,
    N.M
    Edited by: user650358 on 17-Feb-2010 07:21

    Hi,
    I am confused first clear what is hostmachine and what is virtual machine.....
    call the machine which will access the application on virtual machine as CLIENT
    call the machine which is hosting the virtual machine a VIRTUAL MACHINE HOST
    call virtual machine as VIRTUAL MACHINE
    You mean I should change my host IP? It has so many applications using that localhost name.Is ther any setting done in the network and have you ever accessed an application installed on Virtual machine from the host machine?>
    changing of ip doesnt have any impact if ur applications are using hostname..if they are using ip then there is a issue,Yes i have acces EBIZ installed on virtula machine many times.
    And if ur working in a organization then ask ur network admins to check whats the issue..may be some were firewall issue also ..thats why i asked u to chnage ip.
    Regards

Maybe you are looking for

  • JComboBox causing GTK-WARNING and GTK-CRITICAL on Ubuntu 8.04

    I was wondering why whenever I use the GTK Look and Feel, my JComboBox's cause GTK issues. They also don't display right... Here is the code I am using.... import javax.swing.*; public class ComboBoxDisplayTest extends JFrame   public ComboBoxDisplay

  • Numbers shortcuts

    Hi there: I'm trying to use numbers to see if I can get away with not buying Excel for Mac. I'll admit I'm new to using mac and I'm an excel superuser. So, here is my problem. I have a sum formula is cell D6, as shown below: 1 A B C D 2 1 2 3 4 3 5 6

  • Load and save difficulties.

    I am new to java and do not understand how the load and save functions work. I have the following code and would like the load function to open selected files into text area 1 and the save function to save the contents of text area 2. Can anyone help

  • URLLoader throws Error#2048 on Mac

    Hi, are there any known issues regarding URLLoaders and Macs? My flash application seems to run correctly on Windows but not on a mac. It is supposed to retrieve data from a php file with the following code:. <?php require_once(connect...); ?> <?php

  • Recovering lost files

    My hard drive had to be replaced and so I lost everything on my computer. Now, when they replaced my hard drive they upgraded me from OS Tiger to Leopard but the issue is that whatever they did made it so my user account name and password didn't work