- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- tring to autostart services on boot
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2004 12:31 AM
01-01-2004 12:31 AM
I am tring to enable certain services on boot time.
I enabled them on boot with:
$ tcpip set conf enable service ftp
...
after boot, FTP wont start!
when I do:
tcpip enable service ftp
it starts.
how can I enable it on startup?
my tcpip version is:
tcpip show ver
Compaq TCP/IP Services for OpenVMS Alpha Version V5.3 - ECO 2
on a AlphaServer ES45 Model 1B running OpenVMS V7.3-1
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2004 04:39 AM
01-01-2004 04:39 AM
Re: tring to autostart services on boot
If you enable the service in there it will be
started automatically at boot time.
Else you could always add the tcpip set conf...
commands to your own startup scripts ;-)
Happy new year,
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2004 07:08 AM
01-01-2004 07:08 AM
SolutionSYSTEM WIDE LOGIN PROCEDURE contained logic
Start with putting $SET NOON at the very beginning, also maybe something like
$if f$mode() .eqs. "NETWORK" then exit
very early there.
Also, put a
$ SET LOGINS/INTERACTIVE=0
pretty much top of SYSTARTUP_VMS.COM, try
to log into system early, do
$ REPLY/ENABLE
and check what kind of messages you get during TCPIP startup.
My bet is on your SYS$SYLOGIN pointed procedure containing some bad stuff that FAILS if procedure executed during system
startup but what works later.
_veli
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 09:57 PM
01-05-2004 09:57 PM
Re: tring to autostart services on boot
To see what services gets started at system startup use
$ TCPIP SHOW CONFIG ENABLE SERVICE
To permanently enable FTP at system startup use:
$ TCPIP SET CONF ENABLE SERVICE FTP
Add a /COMMON if you want to enable FTP clusterwide.
All the above normally is done by TCPIP$CONFIG.COM
Regards
Juerg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2004 02:43 AM
01-06-2004 02:43 AM
Re: tring to autostart services on boot
I have seen similar situations. The only workaround has been to delete (when you can, of course) the file sys$system:tcpip$service.dat, then @tcpip$config to add again the services you use (Ftp, Telnet...)
You should have in operator.log a message, may be something as
"nolisten service disabled...", which could help resolve this issue.
regards
Gerard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2004 05:44 AM
01-07-2004 05:44 AM
Re: tring to autostart services on boot
I added: $if f$mode() .eqs. "NETWORK" then exit
to my sylogin.com and it realy solved my problem.
You earned your points.
10x,
Amit.