<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: can only run X as user system in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369759#M57684</link>
    <description>Ok, I think I have misunderstood the way it should have been done. A big thank you to all of guys, and an extra thank you to you Rick, the command procedure works great. I really appreciate the quick and great support I got from you.&lt;BR /&gt;&lt;BR /&gt;Best regards, /Arne Korpas</description>
    <pubDate>Tue, 03 Mar 2009 08:03:36 GMT</pubDate>
    <dc:creator>Arne Korpas</dc:creator>
    <dc:date>2009-03-03T08:03:36Z</dc:date>
    <item>
      <title>can only run X as user system</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369754#M57679</link>
      <description>Hi,&lt;BR /&gt;I wonder if anyone have any ideas on this one.&lt;BR /&gt;I login on a 8.3 AXP/OpenVMS machine running TCPIP Services 5.6 as user system via Reflection and SSH with Xtunneling enabled.&lt;BR /&gt;I set up the display with &lt;BR /&gt;$ SET DISPLAY/CREATE/NODE=myclient-/TRANSPORT=TCPIP and $ RUN SYS$SYSTEM:DECW$STARTLOGIN.EXE, works fine, I get the cde login and I'm able to login.&lt;BR /&gt;I have tried the same with different users, but the only user that works is SYSTEM. Cant figure out why, so I hope that anyone can give me a clue, not even sure how one should trace this. Regards /Arne Korpas</description>
      <pubDate>Mon, 02 Mar 2009 15:23:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369754#M57679</guid>
      <dc:creator>Arne Korpas</dc:creator>
      <dc:date>2009-03-02T15:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: can only run X as user system</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369755#M57680</link>
      <description>Hi Arne&lt;BR /&gt;&lt;BR /&gt;this could be a privilege issue.&lt;BR /&gt;You could enable Opcom with &lt;BR /&gt;$ Reply /Enable &lt;BR /&gt;and then look at the messages during start of X. &lt;BR /&gt;Give all privilegies to another account than system and retry to start X. &lt;BR /&gt;If that works, how does the logical LNM$TEMPORARY_MAILBOX looks ?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Geni</description>
      <pubDate>Mon, 02 Mar 2009 15:33:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369755#M57680</guid>
      <dc:creator>Heinz W Genhart</dc:creator>
      <dc:date>2009-03-02T15:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: can only run X as user system</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369756#M57681</link>
      <description>SYS$SYSTEM:DECW$STARTLOGIN.EXE is for the privileged users only, it is the login targetted at the LOCAL display.&lt;BR /&gt;For remote X sessions there is XDM, but unfortunately the present VMS  version delivered with TCPIP services does no secure connections.&lt;BR /&gt;Since You are logging in through SSH with X11 forwarding, why do You create the X display using tcpip transport ?&lt;BR /&gt;This defeats the SSH tunnel (and consequently requires X11 access security set to off on the X11 server side).&lt;BR /&gt;(do a SHOW DISPLAY after SSH login, You will&lt;BR /&gt;see a display already).&lt;BR /&gt;&lt;BR /&gt;Why not simply login using SSH with Your userid, then start the session by&lt;BR /&gt; @cde$path:xsession.com&lt;BR /&gt;?&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Mar 2009 16:08:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369756#M57681</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-03-02T16:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: can only run X as user system</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369757#M57682</link>
      <description>Arne,&lt;BR /&gt;  Engineering never intended for the Decw$startlogin program to be run interactively by users to get logged into a session.&lt;BR /&gt;&lt;BR /&gt;You can certainly have all sorts of problems when running Decw$startlogin.exe interactively, and you are running into one of the problems now.&lt;BR /&gt;&lt;BR /&gt;The best way to do this so that all users can get a session is to create a DCL script and place it in SYS$MANAGER so that user's can execute it interactively, or call it from a application launcher like in eXcursion, or ReflectionX:&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;$!***************************************&lt;BR /&gt;$!START_CDE.COM                         *&lt;BR /&gt;$!***************************************&lt;BR /&gt;$ define sys$output sys$login:startcde.log&lt;BR /&gt;$ set noverify&lt;BR /&gt;$ SPAWN/NOWAIT MCR CDE$SYSTEM_DEFAULTS:[BIN]DTHELLO&lt;BR /&gt;$ @CDE$SYSTEM_DEFAULTS:[BIN]XSESSION.COM&lt;BR /&gt;$ LOGOUT&lt;BR /&gt;&lt;BR /&gt;Once you copy this file into SYS$MANAGER, you will want to make the DCL script (W:RE).&lt;BR /&gt;&lt;BR /&gt;If you use this script with eXcursion and PCX$SERVER.COM, you do not have to worry about setting the DISPLAY environment variable.&lt;BR /&gt;&lt;BR /&gt;Same thing with ReflectionsX, as you can use PCX$SERVER.COM and this command-line in ReflectionX's application launcher:&lt;BR /&gt;&lt;BR /&gt;"@sys$system:pcx$server.com 4,%#%,0,tcpip,%IP% @sys$manager:start_cde.com"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In the start_cde.com file, DTHello, holds open a channel so that properties can be set on the root window that CDE will require, and until the DTWM and Session manager get started. This will permit you to save your settings when you logout and ensures that your settings will be read in when you login.&lt;BR /&gt;&lt;BR /&gt;When the session is ended, the logout is completed, and the session ends cleanly.&lt;BR /&gt;&lt;BR /&gt;I hope this helps you.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Rick Retterer&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Mar 2009 22:59:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369757#M57682</guid>
      <dc:creator>Rick Retterer</dc:creator>
      <dc:date>2009-03-02T22:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: can only run X as user system</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369758#M57683</link>
      <description>Rick, does login through application launcher and @pcx$... involve encryption, since Arne does SSH, i.e. doesn't want clear-text traffic ?</description>
      <pubDate>Tue, 03 Mar 2009 07:35:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369758#M57683</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-03-03T07:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: can only run X as user system</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369759#M57684</link>
      <description>Ok, I think I have misunderstood the way it should have been done. A big thank you to all of guys, and an extra thank you to you Rick, the command procedure works great. I really appreciate the quick and great support I got from you.&lt;BR /&gt;&lt;BR /&gt;Best regards, /Arne Korpas</description>
      <pubDate>Tue, 03 Mar 2009 08:03:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369759#M57684</guid>
      <dc:creator>Arne Korpas</dc:creator>
      <dc:date>2009-03-03T08:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: can only run X as user system</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369760#M57685</link>
      <description>Arne, concerning my second reply,&lt;BR /&gt;do You see a file TCPIP$SSH_RCMD.LOG for the reflection login ?&lt;BR /&gt;If not, then be aware that the X session is not (SSH-)encrypted !</description>
      <pubDate>Tue, 03 Mar 2009 08:20:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369760#M57685</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-03-03T08:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: can only run X as user system</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369761#M57686</link>
      <description>Hi Joseph,&lt;BR /&gt;NO I cant find the file, should it show up in the users default dir ?&lt;BR /&gt;Regards /Arne</description>
      <pubDate>Tue, 03 Mar 2009 08:30:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369761#M57686</guid>
      <dc:creator>Arne Korpas</dc:creator>
      <dc:date>2009-03-03T08:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: can only run X as user system</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369762#M57687</link>
      <description>Yes, should be in sys$login:, the home directory.&lt;BR /&gt;Could of course be that refection is doing something I don't know to suppress logging, but I doubt it.&lt;BR /&gt;So I presume the session is not SSH tunneled.&lt;BR /&gt;I don't have reflection to find a way to force SSH or some other encryption scheme.</description>
      <pubDate>Tue, 03 Mar 2009 09:19:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369762#M57687</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-03-03T09:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: can only run X as user system</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369763#M57688</link>
      <description>Ok thank you for the info, it's ok for now to run unencrypted so I do the work anyway, but of course it would be great to solve it, I will dig deeper in the case later but for now I'm satisfied with the solution. Thanks again for your help.&lt;BR /&gt;&lt;BR /&gt;Cheers, /Arne</description>
      <pubDate>Tue, 03 Mar 2009 09:23:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/can-only-run-x-as-user-system/m-p/4369763#M57688</guid>
      <dc:creator>Arne Korpas</dc:creator>
      <dc:date>2009-03-03T09:23:45Z</dc:date>
    </item>
  </channel>
</rss>

