Bind remote tmux window to local session

I have been looking around but nothing I've found even understands what I want. I want to run tmux as a service on all of my machines as my user. Then, with as simple a process as possible, connect to the remote machine from within tmux on the local machine, create a new session (or attach an already running one) on the remote server but bind its new window to the local session. In essence I can now use my standard keys to switch to the window locally but split the window into panes like I'm on the remote system (so each pane is a shell on the remote system).
Essentially, with a tiling window manager, I don't enjoy having more than one terminal open on the same workspace if can be helped. If I do, now I have to use two different sets of keys to switch first application focus and then a different set to manipulate tmux. Is this even possible? If not, what's the major limitation (Tmux, yes. What about it?)?
My Solution:
Well, I've came to a better solution, let X handle local terminal multiplexing. I recently switched to i3 from XMonad and find it's window interaction much cleaner (ie it's not just resizing them everywhere but actually hides, minimizes, full screens, etc). I now only use Tmux in TTYs, the console, and in remote sessions (when I SSH from Tmux I just run a non-multiplexed shell on the server). This is probably the better solution anyways. It's absurdly redundant to run Tmux in XOrg when your window manager is a multiplexer anyway.
Last edited by Nycroth (2014-09-18 12:16:50)

Yes all the cmdlets appear in EMS. 
The output on another workstation using controso.com as a credential...
PSC:\Users\username> $session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://server/powershell/ -Authentication Kerberos -Credential $cred
[server] Connecting to remote server failed with the following error message : WinRM cannot process the
request. The following error occured while using Kerberos authentication: There are currently no logon servers availabl
e to service the logon request.
 Possible causes are:
  -The user name or password specified are invalid.
  -Kerberos is used when no authentication method and no user name are specified.
  -Kerberos accepts domain user names, but not local user names.
  -The Service Principal Name (SPN) for the remote computer name and port does not exist.
  -The client and remote computers are in different domains and there is no trust between the two domains.
 After checking for the above issues, try the following:
  -Check the Event Viewer for events related to authentication.
  -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or us
e HTTPS transport.
 Note that computers in the TrustedHosts list might not be authenticated.
   -For more information about WinRM configuration, run the following command: winrm help config. For more information,
 see the about_Remote_Troubleshooting Help topic.
    + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [], PSRemotingTransportExc
The credential i used was controso.com\(my username) and my password

Similar Messages

  • [Solved] Split Tmux window prevents middle-click from functioning

    I have an annoying problem with Tmux.  If I open a TTY and run Tmux in just the one window my middle-click/paste action works properly.  However, if I split a window my middle-click merely changes which window should be the active one.  I realise I could disable mouse support and get the correct middle-click behaviour I desire.  However, I'd like to keep my middle-click/paste function with my mouse.  Does anyone have a solution or pointer to a possible way to keep both functions intact?
    Thank you!
    Last edited by MoonSwan (2014-11-02 21:51:34)

    Hi karol, yes I meant to say a terminal window in X, i.e., xfce4-terminal and roxterm.  Pasting text only fails if I have tmuxvsplit its active (currently focused) window either horizontally or vertically.  The pasting function fails even if I create a new window and then split that one within the tmux environment too.
    My .tmux.conf:
    #~/.tmux.conf - tmux terminal multiplexer config
    # Based heavily on Thayer Williams' (http://cinderwick.ca)
    ## Environmental Options
    # Enable tmux to use a 256 colour terminal
    # Provided the underlying terminal supports 256 colours, it is usually sufficient to add the following to ~/.tmux.conf:
    set -g default-terminal "screen-256color"
    set -g terminal-overrides 'xterm*:smcup@:rmcup@'
    # Set clock colour.
    setw -g clock-mode-colour green
    #setw -g clock-mode-colour blue
    # If you SSH into a host in a tmux window, you'll notice the window title of your terminal emulator remains to be user@localhost
    # rather than user@server. To allow the title bar to adapt to whatever host you connect to, set the following in ~/.tmux.conf
    set -g set-titles on
    set -g set-titles-string "#T"
    # open a man page in new window
    bind m command-prompt -p "new-window 'exec man %%'"
    ## By default, all windows in a session are constrained to the size of the
    ## smallest client connected to that session, even if both clients are
    ## looking at different windows. It seems that in this particular case, Screen
    ## has the better default where a window is only constrained in size if a
    ## smaller client is actively looking at it. This behaviour can be fixed by
    ## setting tmux's aggressive-resize option.
    setw -g aggressive-resize on
    ## mouse-select-pane [on | off]
    ## If on, tmux captures the mouse and when a window is split into multiple panes
    ## the mouse may be used to select the current pane. The mouse click is also
    ## passed through to the application
    set -g mouse-select-pane on
    ## Upon starting to use tmux, I noticed that I had to add a noticeable delay
    ## between two characters in a command sequence for it to recognize the
    ## command, for example between the C-a and n in C-a n. This is because tmux is
    ## waiting for an escape sequence. Fix that by setting escape time to zero.
    set -s escape-time 0
    ### Hotkeys and Commands
    ## Binds
    # set prefix key to ctrl+a
    unbind C-b
    set -g prefix C-a
    ## Quick way to mosh/ssh into another system bound to S [Shift-S]
    bind S command-prompt -p 'SSH to:' "new-window -n %1 'mosh %1'"
    # reload config without killing server
    bind R source-file ~/.tmux.conf \; display-message "Config reloaded..."
    # toggle last window like screen
    bind-key C-a last-window
    # more intuitive keybindings for splitting
    unbind '%'
    bind v split-window -v
    bind - split-window -v
    unbind '"'
    bind h split-window -h
    bind \ split-window -h
    # send the prefix to client inside window (ala nested sessions)
    bind-key a send-prefix
    # confirm before killing a window or the server
    bind-key k confirm kill-window
    bind-key K confirm kill-server
    # toggle statusbar
    bind-key b set-option status
    # ctrl+left/right cycles thru windows
    #bind-key -n C-right next
    #bind-key -n C-left prev
    #bind-key -n M-right next
    #bind-key -n M-left prev
    # quick view of processes
    bind '~' split-window "exec htop"
    # scrollback buffer n lines
    set -g history-limit 10000
    # listen for activity on all windows
    set -g bell-action none
    set -g bell-on-alert on
    set -g visual-bell on
    # on-screen time for display-panes in ms
    set -g display-panes-time 4000
    # start window indexing at one instead of zero
    set -g base-index 1
    # disable wm window titles
    set -g set-titles off
    # disable auto renaming
    #setw -g automatic-rename on
    # border colours
    set -g pane-active-border-bg default
    #set -g pane-border-fg blue
    # wm window title string (uses statusbar variables)
    set -g set-titles-string "tmux:#I [ #W ]"
    #set -g set-titles-string "tmux"
    # session initialization
    #new -s0 -nTTYtter 'ttytter'
    #selectw -t 1
    ### default statusbar colors
    set -g status-fg default
    set -g status-bg default
    set -g status-attr bright
    ### default window title colors
    # set-window-option -g window-status-fg white
    # set-window-option -g window-status-bg default
    # set-window-option -g window-status-attr bright
    ### White Yunzi - command/message line colors
    set -g message-fg green
    set -g message-bg default
    set -g message-attr bright
    ### Silver Yunzi - command/message line colors
    #set -g message-fg white
    #set -g message-bg default
    #set -g message-attr bright
    ### Pink Yunzi - command/message line colors
    #set -g message-fg magenta
    #set -g message-bg default
    #set -g message-attr bright
    ### White Yunzi - statusbar
    # set -g status-interval 1
    # set -g status-justify centre # center align window list
    # set -g status-left-length 30
    # set -g status-left '#[fg=white,bright] [ #[fg=green,bright]#H#[fg=white,bright] ]#[fg=white,bright] Up #(uptime | cut -f 4-5 -d " "|cut -f 1 -d ",")'
    # set -g status-right-length 30
    # set -g status-right '#[fg=green,bright][#[fg=white,bright] %a %m-%d-%Y %H:%M #[fg=green,bright]]'
    # set-window-option -g window-status-current-bg default
    # set-window-option -g window-status-current-attr bright
    ### Silver Yunzi - statusbar
    set -g status-interval 1
    set -g status-justify centre # center align window list
    set -g status-left-length 30
    set -g status-left '#[fg=white,bright][ #[fg=blue,bright]#H#[fg=white,bright] ]#[fg=white,bright] Up #(uptime | cut -f 4-5 -d " "|cut -f 1 -d ",")'
    set -g status-right '#[fg=yellow]%k:%M #[fg=blue]%a,%d-%b#[default] '
    set -g status-right-length 30
    set -g status-right '#[fg=blue,bright][#[fg=white,bright] %a %b-%d-%Y %H:%M #[fg=blue,bright]]'
    set-window-option -g window-status-current-bg default
    set-window-option -g window-status-current-attr bright
    ### Pink Yunzi - statusbar
    # set -g status-interval 1
    # set -g status-justify centre # center align window list
    # set -g status-left-length 30
    # set -g status-left '#[fg=white,bright] [ #[fg=magenta,bright]#H#[fg=white,bright] ]#[fg=white] Up #(uptime | cut -f 4-5 -d " "|cut -f 1 -d ",")'
    # set -g status-right-length 30
    # set -g status-right '#[fg=magenta,bright][#[fg=white,dim] %a %m-%d-]'
    # set -g status-right '#[fg=blue,bright][#[fg=white,bright] %a %b-%d-%Y %H:%M #[fg=blue,bright]]'
    # set-window-option -g window-status-current-bg default
    # set-window-option -g window-status-current-attr bright
    #### White Yunzi - active window title colors
    # set-window-option -g window-status-current-fg green
    # set-window-option -g window-status-current-attr bright
    # set-window-option -g window-status-current-bg default
    # set-window-option -g window-status-current-attr bright
    #### Silver Yunzi - active window title colors
    set-window-option -g window-status-current-fg white
    set-window-option -g window-status-current-attr bright
    set-window-option -g window-status-current-bg default
    set-window-option -g window-status-current-attr bright
    #### Pink Yunzi - active window title colors
    # set-window-option -g window-status-current-fg magenta
    # set-window-option -g window-status-current-attr bright
    # set-window-option -g window-status-current-bg default
    # set-window-option -g window-status-current-attr bright
    Edit - typos
    Last edited by MoonSwan (2014-11-01 23:06:08)

  • How to connect a remote server in my local pc?.

    I have a code to connect my server in visual basic 6.0 code, my sap version is 2007 A.
    Private Sub ConnectToCompany()
        '// Initialize the Company Object.
        '// Create a new company object
        Set oCompany = New SAPbobsCOM.Company
        '// Set the mandatory properties for the connection to the database.
        '// To use a remote Db Server enter his name instead of the string "(local)"
        '// This string is used to work on a DB installed on your local machine
        oCompany.Server = "(local)"
        oCompany.language = ln_English
        '// Use Windows authentication for database server.
        '// True for NT server authentication,
        '// False for database server authentication.
        oCompany.UseTrusted = True
        ChooseCompany.Show vbModal, Me
      End Sub
    but I want to connect my remote server and I didn't. Do i forgeting  something??... I changed "(local)" for my name remote server or my local Ip for remote server. But maybe my user name windows for autentication. there is Someone who can help me please. Which one is the correct data I need??

    hello freind
    i think yu are missing  company usernsme,password,db type like this code
    private void Connect()
                try
                    Cursor = System.Windows.Forms.Cursors.WaitCursor;//Change mouse cursor             
                    oCompany = new SAPbobsCOM.Company();               
                    oCompany.DbServerType =  (SAPbobsCOM.BoDataServerTypes.dst_MSSQL2008);
                    oCompany.Server = Properties.Settings.Default.ServerName.ToString();// change to your company server
                    oCompany.language = SAPbobsCOM.BoSuppLangs.ln_English; // change to your language
                    oCompany.UseTrusted = false;
                    oCompany.DbUserName = Properties.Settings.Default.UserID.ToString();
                    oCompany.DbPassword = Properties.Settings.Default.Password.ToString();
                    // Set connection properties
                    oCompany.UserName = txtUSer.Text;
                    oCompany.Password = txtPassword.Text;
                    oCompany.CompanyDB = Properties.Settings.Default.DatabaseName.ToString();            
                    //Try to connect
                    lRetCode = oCompany.Connect();
                    if (lRetCode != 0) // if the connection failed
                        int temp_int = lErrCode;
                        string temp_string = sErrMsg;
                        oCompany.GetLastError(out temp_int, out temp_string);
                    //  u.action_status("Connection Failed - " + temp_string, this);
                    if (oCompany.Connected) // if connected
                        this.Text = this.Text + " - Connected to " + oCompany.CompanyDB;
                        CheckUser();
                    Cursor = System.Windows.Forms.Cursors.Default; //Change mouse cursor         
                catch (Exception)

  • Local Session Bean calling another local Session Bean in EJB 3.0

    Hi,
    In EJB 3.0, I am trying to do JNDI lookup of a local sesion bean from another session bean's helper class.
    I am not using @EJB injection mechanism here, as call to the local session bean is made in a helper class. Helper classes do not support resource injection.
    Following are the EJB class definitions used in my project. Call to "EJB3Local" made from "EJB1" fails as the "EJB2" helper class is calling "EJB1Local"
    @Stateless
    @EJBs({@EJB(name="EJB2Local", beanInterface=EJB2Local.class),
    @EJB(name="EJB3Local", beanInterface=EJB3Local.class)})
    public class EJB1 implements EJB1Remote, EJB1Local{
    public void findEJB3Local(){
    //1. JNDI lookup for EJB3Local ----
    //2. EJB3Local.someFunction()
    @Stateless
    @EJB(name="EJB1Local", beanInterface=EJB1Local.class)
    public class EJB2 implements EJB2Remote, EJB2Local{
    public void findEJB1Local(){
    //1. JNDI lookup EJB1Local
    // 2. Call EJB1Local.findEJB1Local method
    @Stateless
    public class EJB3 implements EJB3Remote, EJB3Local{
    public void someFunction(){}
    A remote call to EJB2.findEJB1Local() will invoke EJb1Local.findEJB3Local method and the call fails with "java:comp/env/EJB3Local" not found in EJB1Local.
    Has anybody encountered an issue like this issue with local interface calling another local interface?
    Thanks,
    Mohan

    To refer a Ejb from another Ejb include <ejb-ref> element
    in ejb-jar.xml
    <session>
    <ejb-name>SessionBeanA</ejb-name>
    <ejb-ref>
    <ejb-ref-name>SessionBeanB</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <home>com.ejb.SessionBeanBHome</home>
    <remote>com.ejb.SessionBeanB</remote>
    </ejb-ref>
    </session>
    Include a <reference-descriptor> in weblogic-ejb-jar.xml
    <weblogic-enterprise-bean>
    <ejb-name>SessionBeanA</ejb-name>
    <reference-descriptor>
    <ejb-reference-description>
    <ejb-ref-name>SessionBeanB</ejb-ref-name>
    <jndi-name>com.ejb.SessionBeanBHome</jndi-name>
    </ejb-reference-description>
    </reference-descriptor>
    </weblogic-enterprise-bean>
    In SessionBeanA Bean class refer to SessionBeanB with
    a remote reference to SessionBeanB.
    InitialContext initialContext=new InitialContext();
    SessionBeanBHome sessionBeanBHome=(SessionBeanBHome)
    initialContext.lookup("com.ejb.SessionBeanBHome");
    SessionBeanB sessionBeanB=sessionBeanBHome.findByPrimaryKey(primarykey);
    sessionBeanB.update();
    sessionBeanB.getAll();
    thanks,
    Deepak

  • Using local session bean interface from web container using EJB 3.0

    Hi,
    How can you use a local session bean interface from Java (rather than data controls) in a web container using EJB 3.0?
    I can use a remote interface by looking up InitialContext, but I can't find a local interface this way (even from another session EJB). I can use a local interface from an EJB using annotation "EJB", but as I understand, this is not available in the web container.
    If I try to add an ejb-jar.xml file, these seems to mess up by project...
    Hope you can help.
    Roger

    The portable way to retrieve an EJB reference in Java EE is to either inject it or look it up via the
    component's private naming environment. The simplest way is :
    @EJB
    private DocumentManager dm;
    The global JNDI name is only used as an implementation specific way to uniquely assign an
    identifier to a specific Remote EJB. It's best for this not to appear directly in the source code.
    There's more on global JNDI names in our EJB FAQ :
    https://glassfish.dev.java.net/javaee5/ejb/EJB_FAQ.html
    The alternative to annotations is to use an ejb-ref to declare the ejb dependency. The ejb-ref
    is declared in the standard deployment descriptor corresponding to the component doing the
    lookup. Each ejb-ref has an ejb-ref-name, e.g. <ejb-ref-name>DM_ref</ejb-ref-name>
    The code looks up the ejb-ref-name relative to the java:comp/env namespace to retrieve the
    EJB reference.
    DocumentManager dm = (DocumentManager)
    new InitialContext().lookup("java:comp/env/DM_ref");

  • Local Session Bean Call Exception in App Server

    I have been having trouble calling a Local Session bean in Glassfish.
    I set up an example to show the exception I am having:
    MainBeanLocal
        package com.test;
        import javax.ejb.Local;
        @Local
        public interface MainBeanLocal {
             void testCall();
    MainBean:
        package com.test;
        import javax.ejb.Stateless;
         * Session Bean implementation class MainBean
        @Stateless(mappedName = "ejb/MainBean")
        public class MainBean implements MainBeanLocal {
             @Override
             public void testCall() {
                  System.out.println("Test Call Succeeded");
    RemoteBeanRemote:
        package com.test;
        import javax.ejb.Remote;
        @Remote
        public interface RemoteBeanRemote {
             public void callMainBean();
    RemoteBean:
        package com.test;
        import javax.ejb.Stateless;
        import javax.naming.InitialContext;
        import javax.naming.NamingException;
         * Session Bean implementation class RemoteBean
        @Stateless(mappedName = "ejb/RemoteBean")
        public class RemoteBean implements RemoteBeanRemote {
             @Override
             public void callMainBean() {
                  try {
                       InitialContext ctx = new InitialContext();
                       MainBeanLocal mb = (MainBeanLocal) ctx.lookup("ejb/MainBean");
                       mb.testCall();
                  } catch (NamingException e) {
                       // TODO Auto-generated catch block
                       e.printStackTrace();
    Test Code:
        package com.test;
        import javax.naming.InitialContext;
        import javax.naming.NamingException;
        public class BeanTester {
             public static void main(String[] args){
                  try {
                       InitialContext ctx = new InitialContext();
                       RemoteBeanRemote remote = (RemoteBeanRemote) ctx.lookup("ejb/RemoteBean");
                       remote.callMainBean();
                  } catch (NamingException e) {
                       // TODO Auto-generated catch block
                       e.printStackTrace();
    Output Trace:
        INFO: deployed with moduleid = TestEJB
        INFO: **RemoteBusinessJndiName: ejb/RemoteBean; remoteBusIntf: com.test.RemoteBeanRemote
        INFO: LDR5010: All ejb(s) of [TestEJB] loaded successfully!
        WARNING: javax.naming.NameNotFoundException: MainBean not found
             at com.sun.enterprise.naming.TransientContext.doLookup(TransientContext.java:216)
             at com.sun.enterprise.naming.TransientContext.lookup(TransientContext.java:188)
             at com.sun.enterprise.naming.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:74)
             at com.sun.enterprise.naming.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:111)
             at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:409)
             at javax.naming.InitialContext.lookup(InitialContext.java:392)
             at com.test.RemoteBean.callMainBean(RemoteBean.java:19)
             at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
             at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
             at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
             at java.lang.reflect.Method.invoke(Method.java:597)
             at com.sun.enterprise.security.application.EJBSecurityManager.runMethod(EJBSecurityManager.java:1011)
             at com.sun.enterprise.security.SecurityUtil.invoke(SecurityUtil.java:175)
             at com.sun.ejb.containers.BaseContainer.invokeTargetBeanMethod(BaseContainer.java:2920)
             at com.sun.ejb.containers.BaseContainer.intercept(BaseContainer.java:4011)
             at com.sun.ejb.containers.EJBObjectInvocationHandler.invoke(EJBObjectInvocationHandler.java:203)
             at com.sun.ejb.containers.EJBObjectInvocationHandlerDelegate.invoke(EJBObjectInvocationHandlerDelegate.java:117)
             at $Proxy71.callMainBean(Unknown Source)
    ...What am I doing wrong when calling **MainBeanLocal**? I would like to avoid dependency injection, as if the MainBeanLocal was being called from a POJO.
    Note: I have no trouble calling the RemoteBean.. I want to be able to call the local bean from the remote bean.

    Maik,
    If this is still a problem, could you please post the descriptors from the EAR?
    Are you using any annotations?
    - Tim

  • Lose Mouse click after resuming local session (from RDP)

    After posting this thread, I was told to post here.
    https://answers.microsoft.com/en-us/windows/forum/windows8_1-tms/lose-mouse-click-on-session-resume/e4ca4acf-4f96-4a1f-9e76-4c3665d1253e?auth=1
    This gist of the problem is that when I resume a local session on my PC after I have had an RDP session open from home, occasionally, my mouse click function is gone. The cursor itself works, the keyboard works, but the click does not. Only a reboot fixes
    it.
    I have replaced all my computer components, reloaded Windows 8.1 Enterprise, and replaced my keyboard and mouse. The problem persists.
    One item of note, I have 3 monitors and after resuming a session my display might take 30-45 seconds to become functional due to all the windows I have open. I notice that this happens after some time has passed since my last reboot and usually when lots
    of windows are open.
    Still, after all the hardware replacements, reloading of Windows, it seems to be a bug. Where do I go from here?

    Hi,
    Please check if mstsc.exe process has already ended completely:
    Open task manager -> Details tab, to see if mstsc.exe list there
    Meanwhile, please check and install all available Windows Update in order to keep it's latest.
    In addition, please perform a Clean boot to see if it's caused by some third party software or service conflicts:
    How to perform a clean boot in Windows
    http://support.microsoft.com/kb/929135
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Get a remote interface from a local instance

    hi,
    I want to construct a bean locally on a server and then I want to pass the remote interface for that constructed bean back to a client. Is this possible?
    Thanks

    Yes. Take a look at SessionContext class. You can't construct a bean yourself, as its life is managed by container.
         * Obtain an object that can be used to invoke the current bean through
         * the given business interface.
         * @param businessInterface One of the local business interfaces
         *        or remote business interfaces for this session bean.
         * @return The business object corresponding to the given business
         *         interface.
         * @exception IllegalStateException Thrown if this method is invoked
         *         with an invalid business interface for the current bean.
        <T> T getBusinessObject(Class<T> businessInterface) throws IllegalStateException;

  • Issue Binding remote computers

    OK, have Advanced Leopard Server running, DNS and Open Directory setup. Can Bind local computers. Tried binding remote computers and does not see/find server in Directory Utility... yet I can sign in and mount NFS shares. Does a specific port need to be open in firewall to do the binding? - Lewis

    Binding is largely for login. Yes some management settings, like printers, can be passed through this way.
    To print from home you should be using a VPN. The Internet is not a safe place these days. VPN creates a virtual tunnel between home and the office and you can imagine a virtual Ethernet cable passing through that tunnel.
    I think a combination of Mobile accounts and VPN may be the deal for you. You might not even need mobile accounts if your users have their own Mac and are already using a local account.
    VPNs are meant to be the only entry point on to your network. So once you have a VPN setup then your Internet connection should only allow VPN traffic in and nothing else, e.g. LDAP.
    Ok, two basic choices for VPNs... either your router is fancy enough to have its own VPN feature or you can setup your Leopard Server to be your VPN server. The router would then need to be configured to route incoming VPN requests to your Mac server. All other types of traffic pass through the VPN.
    This isn't the place for detailing exact steps for this. It would get long and complicated and there are specific info needed about your actual setup. I have to refer you to the manuals in the first instance:
    http://images.apple.com/server/macosx/docs/NetworkServices_Admin_v10.5_2ndEd.pdf
    http://images.apple.com/server/macosx/docs/UserManagementv10.5.mnl.pdf
    Other recommended reading:
    Mac OS X Support Essentials v10.5 ISBN-13: 978-0321489814
    Mac OS X Server Essentials v10.5 ISBN-13: 978-0321496607
    Leader-led training:
    http://training.apple.com/itpro/leopard101
    http://training.apple.com/itpro/leopard201
    Trust me... you will feel so enlightened.

  • Profile locked by another local session, please retry later

    Hi when i ran the "netweaver initial setup" task, this error occurs
    "com.sap.rprof.dbprofiles.AccessException: Profile locked by another
    local session, please retry later.", i checked in TCODE SM12 and saw an
    register "001 PILDUSER 16:57:44 X AII_PROFILES AIICOMMON
    exchange_profile.xml 1 0", i saw the sap note 1333205, and update my
    Support Packages to Stack 11 of Netweaver 7.1, but not was solved.
    Thanks
    Josue Neto

    Dear all,
    we had the same problem on our PI7.0 SP21, that CTS was not working and IntegrationBuilder was not operational, aso...
    The lock "AII_TABLES" was visible in SM12 and appeared immediately after restart or manual deletion.
    We have opened a very high message to SAP, as the recomm. from SAP Note 1602945 did no help. Once they replied we have additionaly applied SAP_JTECHS PL30 and added parameter "com.sap.aii.ib.remote.exprof.enabled=TRUE" to the exchange profile per each server node.
    After these changes and restart, the lock is not active anymore - this was implemented and tested on Dev and Test systems. We will proceed with the Prod later on, we believe it helps.
    Regards,
    Peter Bajza

  • Firefox Selenium Remote Control window does not close.

    Using Selenium 2.17 and/or Selenium 2.26 on Windows 7 we are having a problem with the Firefox Selenium RC (Remote Control) window not closing after the Selenium tests have completed.
    We did not have any issues when using Firefox 10.0.1esr, but when we upgraded to 10.0.10esr the problem showed up.
    Any ideas how to solve this problem? Our company requires us to be at the latest ESR release so going back to 10.0.1esr is not an option.
    Any plans to resolve this problem in another ESR release?
    Thanks,
    Karl

    Please check SAP note 1512960  and SAP note 1384496.
    http://service.sap.com/notes
    This behaviour is by design.
    Regards,
    Stratos

  • Safari 6.0, what happened with option to open with windows from last session?

    Made the upgrade from Snow Leopard to Mountain Lion and realized that I don't longer have the option to open Safari with windows from last session (Preferences->General). The option has been removed:

    They don't. I can access them by history ->reopen all windows from last session, but that's not what I want.
    Does anybody else have this problem or is it just me that lost that option on Preferences -> General?

  • How do I set Safari to prompt before closing multiple tabs OR reopen all of the closed tabs when when I relaunch the application?  The "Reopen all windows from last session" is unselectable.

    How do I set Safari to prompt before closing multiple tabs OR reopen all of the closed tabs when when I relaunch the application?  The "Reopen all windows from last session" is unselectable.

    It would seem if your choose "Show my windows and tabs from last time" '''''and''''',
    *when you last closed Firefox, you had no web site open (just a blank tab), that it would open just that blank tab
    *when you last closed Firefox, you had one or more tabs/web site open, that would allow you to "Restore Previous Session"
    #Have you tried that?
    #If so, what is happening in each circumstance when you reopen Firefox?
    '''Restore Previous Session'''<br />
    Open tabs are automatically saved when closing Firefox beginning in Firefox 4. To open your last session, after Firefox starts, click History > Restore Previous Session. For this to work
    #You must be remembering history (Options > Privacy > Remember my browsing history).
    #*See [https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel Options window-Privacy panel]
    #You must not be using Private Browsing or permanent Private Browsing
    #*See [https://support.mozilla.com/en-US/kb/Private%20Browsing Private Browsing]
    #You must not use Clear Recent History or Clear history when Firefox closes
    #*See [https://support.mozilla.com/en-US/kb/Clear%20Recent%20History Clear Recent History]
    #*See [https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel Options window-Privacy panel]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]

  • Safari 5.1.2 opens two of every window when selecting "Reopen all windows from last session" since the latest update.

    Since the latest Saffari update to 5.1.2, every time I close Safari and reopen, and select "Reopen all windows from last session," two of every window opens.  I must go through a long list under the 'Window' menu and select one of eac pair and close them.  What a hassle. 
    Has anyone experienced this as well, and is there a fix? 

    is there a fix?
    Disable Resume...
    How To Disable Lion's 'Resume' Feature - MacRumors.com

  • Location of File Containing Data for "reopen all windows from last session"

    I'm a heavy-duty Safari user and usually keep 100+ tabs and windows open, carefully invoking the command "reopen all windows from last session" each time I restart. Unfortunately, I screwed up today and started and quit Safari without invoking "reopen all windows from last session," and all of my open tabs and windows are gone.
    I can recover the tabs manually using my history listings, but there must be an easier way: the information about the last session has to be stored somewhere. I did a Deja Vu backup on Friday and today I copied the files /~user/Library/Preferences/com.apple.Safari.plist and all the files from /~user/Library/Safari, including HistoryIndex.sk, History.plist, and LastSession.plist, from my backup to my hard drive, but the result was unchanged (that is, my 100+ tabs and windows were nowhere to be found).
    Given the time it takes for Safari to shut down, I assume it's storing a large history file somewhere, if only I knew where. Does anybody out there know or could otherwise help my recover from my stupidity?
    Thanks in advance.
    -- Kevin
    (proud Mac user for 23 years)

    I found a work-around. Since I frequently quit Safari and "reopen all windows from last session" upon restart, my history reflects all of the open tabs and windows contiguously. I thus reloaded the history file, invoked the command "History --> Show All History," found the most recent such contiguous history listing, shift-clicked and selected all relevant listings, and then double-clicked. All of my formerly open tabs and windows were reopened in tabs within a single window. I had to go back and rearrange things but it was far simpler than manually reopening all of those tabs and windows.
    -- Kevin

Maybe you are looking for

  • REPORT LAYOUT Discoverer Viewer AS-10g

    I have a problem about report layout on Discoverer viewer AS10g. If I have a crosstab layout and Year is my left axis and Sales and Products are my top axis, I see the label on report (Year), not only values (2003, …). I also see the label “Data poin

  • How to add signature "sent via blackberry​" on facebook posts from BlackBerry q5?

    I have a problem with the signature. Whenever I post, or update my status from my BlackBerry q5, it doesn't show "sent from BlackBerry ". Please help.

  • Microsoft Server 2008 R2

    Hi, I am using Mac Book Pro and want to download some files from my "Microsoft Server 2008 R2" on my Mac Book Pro, as currently I am using "Fast Remote Desktop" but this App doesn't have option files download from Server on Mac Book Pro, so is there

  • Have you heard about the latest addition to our SAP Microsoft Interoperability Suite?

    As you have seen from the coverage we did at the Microsoft SharePoint Conference earlier this month we introduced a new interoperability solution with the name Power BI Connectivity to SAP BusinessObjects BI. This is a great solution that makes it po

  • Oracle 9i to SQL Server

    I have an Oracle 9i database and need to obtain some values from a sql server database. Either by an SQL Select statement or calling a stored procedure or similar. I suspect what I may need is the Oracle Transparent Gateway for SQL Server but am stru