Remote Login Server

I manage a small lab of Intel G5 Mac machines. I have one as the server. It is able to share screen with the other computers. The other computers can share screens with each other. However it is the other computers that CAN NOT share screen with the server computer. I have been going nuts trying to find a support article and there was not much of anything helpful on this matter.
I have in Server Admin under General the tab for Remote Login (SSH) checked off. I also have it selected under system preferences in sharing. Are there other conditions I'm not aware of. Many thanks to whoever can help me on this.

Here is the output;
Primary address = 192.168.1.5
Current HostName = fileserver.ccccsj.com
DNS HostName = fileserver.ccccsj.com
The names match. There is nothing to change.
dirserv:success = "success"
jabber:s2sRestrictDomains = no
jabber:authLevel = "ANYMETHOD"
jabber:savedChatsLocation = "/var/jabberd/message_archives"
jabber:dataLocation = ""
jabber:enableAutoBuddy = no
jabber:enableXMPP = no
jabber:sslKeyFile = "/etc/certificates/fileserver.ccccsj.com.64E496A714597C84516D964259EDB37564B132 36.concat.pem"
jabber:initialized = yes
jabber:logLevel = "ALL"
jabber:sslCAFile = "/etc/certificates/fileserver.ccccsj.com.64E496A714597C84516D964259EDB37564B132 36.chain.pem"
jabber:requireSecureS2S = yes
jabber:serviceMode = "CHATSERVER"
jabber:savedChatsArchiveInterval = 7
jabber:jabberdDatabasePath = "/private/var/jabberd/sqlite/jabberd2.db"
jabber:hosts:arrayindex:0 = "ichat.ccccsj.com"
jabber:hosts:arrayindex:1 = "XX.XX.XXX.XX"
jabber:eventLogArchiveInterval = 7
jabber:enableSavedChats = yes
jabber:s2sAllowedDomains = emptyarray
Please note the output included my IP address. I substituted it with the XX.XX.XXX.XX .
Thanks.
Mitch

Similar Messages

  • Lost remote login ability

    Hi all, hope I can keep this brief and get some help. I set up SBS 2011 and ES 2010 for a small business with a few users, all went well. I had to purchase an SSL certificate to get ES working as I wanted, with remote users of iPads, laptops etc ... and
    again, this went as it should. However, since installing the certificate, I have lost the ability to connect to the server remotely. I used to connect via RDP to remote.xxx.co.uk using remote web access feature; but since the certificate I installed was issued
    to mail.xxx.co.uk the RDP no longer works. Accessing individual exchange accounts via OWA still work fine, and the ES still works fine. It's just that I'd like to be able to get to the server remotely, so I don't have to visit the site when anything needs
    changing. Anyone any ideas? Any input much appreciated, thanks.

    Hi,
    Based on your description, I understand that you can't remote login server via RWA. Would you please let me know any error message that you can find, when you want to logon remotely? Meanwhile, would you please let me know how you install the third-party
    SSL certificate on server?
    In addition, please refer to the following KB and run SBS 2011 BPA tool. Please solve issues that SBS BPA can find, then check if this issue still persists.
    Windows SBS Best Practices Analyzer (BPA)
    http://support.microsoft.com/kb/2673284/en-us
    Hope this helps.
    Best regards,
    Justin Gu

  • After externalising Login Server, portal30.wwsec_api.add_user_to_list no more working

    30983 on Sun solaris.
    We have externalized LS last week.
    Now following procedure wich is invoked from url return a UserDefined Exception :
    | htp.p('user:'||     wwctx_api.GET_USER);htp.br;
    | wwctx_api.set_context('portal30', 'alpes39');
    | htp.p('user:'||     wwctx_api.GET_USER);htp.br;
    | portal30.wwsec_api.add_user_to_list(p_person_id => 6,p_to_group_id => 7,p_is_owner =>0);
    |_________________________________________________
    Result :
    | user:PUBLIC
    | user:PORTAL30
    | Error : User-Defined Exception
    |_________________________________________________
    Is there anything special to do ?
    (The idea is to use self reg procedure and assign specifc groups while no user session is set.)
    regards.

    If I try to set the context using a db_link on portal30_sso schema on the remote login server database instance it failed with the following error message :
    wwctx_api.set_context@login_server('portal30', 'alpes39');
    | user:PUBLIC
    | Error : ORA-00164: autonomous transaction disallowed within distributed transaction ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "PORTAL30_SSO.WWCTX_SSO", line 875 ORA-06502: PL/SQL: numeric or value error
    |__________________________________

  • Login prompt on remote shared server-Crystal Report

    HI
    I am trying to deploy crystal reports 2008 on shared server. Before publishing on the remote server i published it on the localhost while connecting it to remote sql server 2008 database. The report is shown perfactly but when i publish it on shared server it prompt me for login credentials. My hosting provider is arvixe and it support crystal report. In my popup database field is empty and locked use name field show the correct user name and password field is empty. I read somewhere it may be due to version conflict between my version and version on server. Thanks in advance for help
    I am using dataset to puch my data to report. Here is my source code
    myRpt report = new myRpt();
                crConnectionInfo.ServerName = @"mysharedserver.com";
                crConnectionInfo.DatabaseName = "mydb";
                crConnectionInfo.UserID = "myuser";
                crConnectionInfo.Password = "mypass";
                System.Data.SqlClient.SqlConnection myConnection = new System.Data.SqlClient.SqlConnection();
                myConnection.ConnectionString = "Data Source=mysharedserver.com;Initial Catalog=mydb;Persist Security Info=True;User ID=myuser;Password=mypass";
                System.Data.SqlClient.SqlCommand MyCommand = new System.Data.SqlClient.SqlCommand("dbo.spspMyStoreProc");
                MyCommand.Connection = myConnection;
                MyCommand.Parameters.Add("@PositionID", SqlDbType.Int).Value = (cmbPositions.SelectedValue == "" ? 0 : Convert.ToInt32(cmbPositions.SelectedValue));
                MyCommand.CommandType = System.Data.CommandType.StoredProcedure;
                System.Data.SqlClient.SqlDataAdapter MyDA = new System.Data.SqlClient.SqlDataAdapter();
                MyDA.SelectCommand = MyCommand;
                myDS _DS = new myDS();
                MyDA.Fill(_DS, "dbo.spspMyStoreProc");           
                report.SetDataSource(_DS);
                crDatabase = report.Database;
                crTables = crDatabase.Tables;
                for (int i = 0; i < crTables.Count; i++)
                    crTable = crTables<i>;
                    crTableLogOnInfo = crTable.LogOnInfo;
                    crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
                    crTable.ApplyLogOnInfo(crTableLogOnInfo);
                report.SetParameterValue(0, "Param 1");
                report.SetParameterValue(1, "Param 2");
                report.SetParameterValue(2, "Param 3");
                report.SetParameterValue(3, (cmbPositions.SelectedValue == "" ? 0 : Convert.ToInt32(cmbPositions.SelectedValue)));
                CrystalReportViewer1.ReportSource = report;

    If you are using a dataset, why are you using the databse login APIs? E.g.;
    crDatabase = report.Database;
                crTables = crDatabase.Tables;
                for (int i = 0; i < crTables.Count; i++)
                    crTable = crTables<i>;
                    crTableLogOnInfo = crTable.LogOnInfo;
                    crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
                    crTable.ApplyLogOnInfo(crTableLogOnInfo);
    Either use report.SetDataSource(_DS); which will make the report consume the dataset, or use the above code which will make the report connect to the database directly.
    Do not use both though.
    Ludek

  • Remotely login error on windows server 2003 using gemalto smart card

    I am getting this error when trying to log on windows server 2003 remotely using smartcard. We have our own CA. We are able to successfully logon on windows server 2008 using same card.

    Hi,
    Base on my research, Event 537 indicates that a logon attempt was made and rejected for some reason other than those covered by explicit audit records in this category.
    Would you please provide more details?
    Are there any related warnings and errors under Application Logs or System Logs?
    By remotely login, do you mean logon via RDP?
    Here are some related links below for you references:
    Event 537
    http://www.microsoft.com/technet/support/ee/transform.aspx?ProdName=Windows%20Operating%20System&ProdVer=5.0&EvtID=537&EvtSrc=Security&LCID=1033
    Smart Card and Remote Desktop Services
    http://technet.microsoft.com/en-us/library/ff404286(v=WS.10).aspx
    Please get back to us with the necessary information at your earliest convenience.
    Best Regards,
    Amy Wang

  • Viewing Layouts on Remote/Testing Server

    This is a beginner question.
    I'm trying to view Layouts and/or Content Holders on the Remote/Testing Server out of Dreamweaver so I can edit them independently, but I just get 404 messages.
    When I create a new page in BC, I am prompted for a Page Title which subsequently creates a Page URL and File name. The Page URL by default has no extension. The File Name has an extension.
    If I view that new page on the Remote Server I get a 404 message. If I edit the Page URL to include the File Name extension, I have no problem on the Remote Server.
    Now for example: In File Manager I have the following directory structures:
    http://www.MySite.com/_System/ContentHolders/layout.html
    http://www.MySite.com/Layouts/SystemMessages/SecureZoneAccessDenied-CA.html
    Why is it that I can't view these pages on the Remote Server?
    Is BC creating a default URL for these Layout pages that isn't the same as the file name it gives them? or no URL at all?
    Thanks,
    Cam

    Hey there. Those are not pages. They are system generated layouts and for content holders only render when the module issued for that content holderin a pager template.
    Ile extensionsyouseefor these are needed to work via FTP and understnd HTML formatting etc.
    Zone access denied is a system message and will render when you create a login and enter a incorrect password.
    Actual pages do not need agile extension.
    Loin into the admins floor around. Look and pages, system layouts and templates, apply templates to pages. get a feel of things there as well to help get abetted understanding.
    Also check out the links from the main page oftheseforums to theknowledgebaseto read through things as you need them.

  • Multiple Desktops when remote login?

    Hi, is there a way that I can remotly login with two different users and have each one an own GUI desktop?

    Sounds like you want Terminal Services.
    Checkout:
    http://www.aquaconnect.net
    http://www.coderebel.com/products/irapp-terminal-server
    I think that it is still early days for Terminal Services on Mac but take a look it might be able to do what you need.
    David Lee
    http://www.allgraphicsit.co.uk

  • Screen Sharing and Remote Login suddenly stopped working

    I have had Screen Sharing and Remote Login turned on on my iMac for several weeks and they have been working fine up until now. I have been accessing the computer via VNC programs and command-line ssh logins from other computers on the same local network. When I tried to connect today, i was given the following error message.
    ssh: connect to host xxx.xxx.xxx.xxx port 22: No route to host
    I have all of the required settings turned on in System preferences and there are no firewalls or router settings blocking it. I connected the two computers together via ethernet cable and the error message still occurred.
    I can ssh from the machine to 127.0.0.1, so the ssh server is running. I can ssh to other locations from the laptop i am attempting to connect with, so that's not the problem either. I just spent an hour on the phone with the apple tech support line and they couldn't figure anything out either. Can anybody figure something out?

    have you tried the obvious - restarting the computers involved and the router?

  • Remote login in SM51 Fails / ECC 6.0 / HP-UX / Oracle 10

    Hi All,
    We had a cluster, 4 physical servers / 14 SAP Instances / HP-UX - Oracle 10G /  ECC 6 EHP 3.
    Basically we have a general RFC problem in the system. You can reproduce it simply in transaction sm51: In most of the instances whenever you try to change to an instance that has the same instance number than the one you are logged on at this moment, you will come back to this instance, e.g.:
    you are logged on at host1_SID_01, start sm51 and try to change to the instances:
    host2_SID_01,
    host3_SID_01 or
    host4_SID_01
    (or you try to display the system log or other). You will see (System - Status) that you don't change to these instances but will stay on host1_SID_01.
    We found the SAP Note 662895 - Remote login using SM51 Fails. In this note they refer to the error: "Transaction termination 14 025".
    Now we have this error (we upgraded from SAP 46C with another error in sm21).
    The problem is that we really donu2019t understand exactly what they want to do in the SAP Note 662895:
    Summary
    Symptom
    Remote login in SM51 by double-clicking R/3 instances fails
    Solution
    You can use transaction SM51 to log in to another application server using RFC, without entering a password. Server "A"
    Server "A"                                          Server "B"
            <--Remote logon via RFC   <--
    GUI
          sm51
    Double-click on the server B entry --->
    If host name "B" was entered on server "A" as the gw/alternative_hostnames profile parameter, the local SAP gateway from server "A" is used when you log on to server "B". This results in the syslog message "Transaction termination 14 025".
    The same error occurs if you try to open a new external mode on server "A".
    Who is the origin server? Host A? Host B? In fact sometimes you can go from A to B and vice versa. So changing the gw/alternative_hostnames parameter doesn't appear to be a solution.
    I would appreciate some tips about this Note / Problem.
    Best Regards,
    Erick Ilarraza

    Hello, thanks a lot for your replyes.
    Abhijeet Siras, the command /etc/ping <host> works prefectly.
    Sergo,
    Exactly we have 3 host each one with 4 dialog instances. 1 host with 2 dialog instances and one host with the central instance.
    Not all  instances have this problem, only the following combination:
         Origin                     Destination
    host4_SID_01    - >     host1_SID_01
    host2_SID_03    - >      host3_SID_03
    host1_SID_01    -->  host3_SID_01
    host1_SID_02   -->     host3_SID_02
    host1_SID_03   -->     host3_SID_03
    host1_SID_04   -->     host3_SID_04
    host2_SID_01   -->     host3_SID_01
    host2_SID_02  -->     host3_SID_02
    host2_SID_03  -->     host3_SID_03
    host2_SID_04  -->     host1_SID_04
    host2_SID_04  -->     host3_SID_04
    host3_SID_04  -->     host1_SID_04
    host4_SID_01  -->     host1_SID_01
    host4_SID_02  -->     host1_SID_02
    host4_SID_02  -->     host2_SID_02
    host4_SID_02  -->     host3_SID_02
    The problem is between *_NUMBER to *_NUMBER!
    For example from Dialog Instance 3 running on host 2 to Dialog Instance 3 running on host 3
    For example host4_SID_01 means the Dialog Instance 1 running on host 4.
    Best Regards,
    Erick Ilarraza

  • The connection was denied because the user account is not authorized for remote login

    Using Terminal Server 2008 not able to get non administrator users to login to the remote desktop. Have tried from Windows server 2008 and from Windows servers 2003. Get error login in "The connection was denied because the user account is not authorized for remote login" from Windows Server 2008. Error "The requested session access is denied" from Windows Server 2000.

    Is that seriously the only way to do this? Doesn't this render the "Allow log on through Terminal Services" GP Setting useless?
    I would like to know this answer, as well.  I have created a new AD group for my assistant admins called "Domain Admins (limited)".  I have added this group to the GP setting "Allow log on through Terminal Services", but the
    assistant admins cannot log in through RDP.  It 'feels like' this is all I would need to do.
    Craig
    Found some good info
    here. There are really two things required for a user to connect to a server via RDP. You can configure one of them via Group Policy but not the other.
    1) Allow log on through Terminal Services can be configured through Group Policy, no problem.
    2) Permissions on the RDP-listener must also be granted.  If your user is a member of the local Administrators group or the local Remote Desktop Users group then this is handled.  If you are trying to utilize a new, custom group (as I am),
    then there isn't a way to do this via group policy (that I have found).
    EDIT: Found the answer.  I am creating a blog post to outline the steps.  They aren't hard, but they're not self-explanatory.  It deals with the Restricted Groups mentioned above, but it's still automate-able using Group Policy so that you
    don't have to touch each computer.  I think the above poster (Andrey Ganev) got it right, but
    I had trouble deciphering his instructions.
    Here is my blog post that walks through this entire process, step-by-step.

  • Is there one tell  me the correct way to access remote SQL server

    Hi
    I have tried to access a remote SQL server by many ways but all failed
    here is my trying :
    String driver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    String url= "jdbc:microsoft:sqlserver://217.52.98.102:1433";
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url,"sa"," " );
    String selectStr = "select * from FleetWatch..table_name";
    Statement st = conn.createStatement();
    ResultSet rs = st.executeQuery(selectStr);
    DriverManager.registerDriver(new com.microsoft.jdbc.sqlserver.SQLServerDriver());
    // connect to the DB by using the driver.
    String connString = "217.52.98.102:1433;databasename=FleetWatch";
    String strDBConnect = "jdbc:microsoft:sqlserver://" + connString;
    conn = DriverManager.getConnection(strDBConnect, "sa", "");
    String driver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    Class driverClass = Class.forName(driver, true, jdbcLoader);
    Driver currDriver = (Driver)driverClass.newInstance();
    Properties prop = new Properties();
    prop.setProperty("sa", (String)paras.get("sa");
    prop.setProperty("password", (String)paras.get(" ");
    String url= "jdbc:microsoft:sqlserver://217.52.98.102:1433";
    conn = currDriver.connect((String)paras.get(url, prop);
    pls tell if you know the correct way to access a remote sql server and
    access it befor tell me its step to ensure it's connect

    String driver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    String url= "jdbc:microsoft:sqlserver://your servername:1433";
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url,"username ","password " );
    this user name and password may be diff becoz if u have only sql authentication then u have to know that user name or it can have windows nt authentication so if it is so then no probs can use ur windows nt login..
    know the server name where ur sqlserver is connected to.
    set the classpath for the sqlserverdrivers jar files which u have downloaded where ur working on.
    then it works
    i did the same and worked for me.
    try it.

  • System preferences remote login address naming HELP PLEASE

    Hello,
    This problem is driving me crazy... Enabling Remote Login (under Sharing Preferences) gives me a note that "To log in to this computer remotely, type ssh [email protected]". The problem is the part of the address named "wrongname".  I have no idea where it is picking this up. I've gone back under the networking preferences and confirmed it's not coming from there. The netbios name by the way is "CARLS-MACBKPRO1". Enabling file sharing gives me the same "wrongname". Any idea where this is coming from and how do I fix it?
    Running 10.7.3 on a Macbook Pro.
    Thanks in advance.
    Carl

    The question is how are you trying to connect to the server? and where are you testing from?
    You say you can 'log-in to the Mac-Mini from the internal network', but what protocol are you using?
    The ports you've opened are for web (80), FTP (21) and SSH (22), so if you're using any other protocol (e.g. AFP for file sharing), it won't work.
    So, you need to decide what protocol you want to use and forward the appropriate ports. For example, if you do want to use AFP to transfer files, you'll need to open port 548.
    An alternative is to just use port 22 and use SSH tunneling to tunnel other protocols over a secure connection (normal AFP, web, etc. traffic is not secure and tunneling these protocols over an SSH connection provides an enhanced level of security.

  • Flex mobile connect to remote secure server!!

    Hi guys
    I'm a beginner with flex mobile.
    i'm trying to create an appllication flex mobile. and i have to connect to remote secured server (apache) to get some services deployed.
    i did it and when i try with emulator from flash builderit's worked, a pop up window started to enter a login and password for connect to the remote server. it's okay, i get a result.
    but now when i try this application with my mobile phone, application launched correctly but i can't connect to remte server ( i dont have anythig like a popup to enter the login and pssword).
    i need your help.
    thanks

    Did you ever figure this out? I'm having the same issue.

  • Can't Set Remote Login OFF via Send Unix Command systemsetup

    Trying to use the System Setup->Remote Login template in ARD to turn off Remote Login (SSH) in Sharing panel of System Preferences on Mac that is administered through Apple Remote Desktop.
    In Apple Remote Desktop (ARD), I select the client machine, then choose "Send Unix Command..." from the "Manage" menu. In resultant window, I pick "System Setup->Remote Login (SSH) from the "Template" drop down box in the upper right. That populates the upper window with Unix commands. I edit/change the "on" to "off" and tell the dialog to Run command as User: root, then click on "Send" button.
    Progress bar goes forever with no change.
    I can turn off Remote Login via ARD by controlling each client machine via an ARD WINDOW, then navigating to the Sharing Preference pane, but that process is tedious when performing for multiple client Macs.
    Strange, but I CAN use the "Send Unix Command..." outlined above to turn ON Remote Login, and get the status of Remote Login ("systemsetup -getremotelogin"). Just can't turn OFF Remote Login (quickly/efficiently).
    man systemsetup suggests I need to write the command as "setremotelogin -f off" but that failed with an improper command syntax error.
    Thoughts?

    It’s waiting for you to type a confirmation. If you run this command on the command line normally, you’ll see the message:
    Do you really want to turn remote login off? If you do, you will lose this connection and can only turn it back on locally at the server (yes/no)?
    Use this command instead:
    systemsetup -f -setremotelogin off

  • Question on Remote login

    I was on my work computer, went to "sharing" clicked on "remote login". I received the information to type in to login to that computer. I then had my husband turn on my home computer & do the same.
    Question #1 - Now that I have the information to type so I can login, where do you go to actually login & enter that information provided?
    Question #2 - My work computer has an IP address that I have to type in if I want to login to my work computer. But the information I'd have to type in to login to my home computer does not have an IP address in the information provided. Is that weird?

    You "could" run the login gadget remotely. But why? Let me explain, you could have a complete portal installation on a gadget server (due to API calls). The gadget could run over there. I'm not sure if the overall performance of that architecture is really worth it. Am I missing something? I have done that before... I really don't know how well it scaled or performed (the customer was very small in terms of servers and users).

Maybe you are looking for