- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Turning off services
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
06-12-2003 08:13 AM
06-12-2003 08:13 AM
X11 Server
X11 Font Server
instal_boots
instal_bootc
We are not using X windows. I tried to determine what initiates or starts this service but was unsuccessful. In my research I found that instal_boots and instal_bootc seems to be connected with Ignite. We use ignite only to create a recovery tape and do use ignite to start up any remote systems. If we ever have to rebuild using an ignite tape it would be onsite. Again I was unable to determine if these services are needed for what we do in ignite and subsequently how are they shut off. Appreciate any help or ideas.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2003 08:27 AM
06-12-2003 08:27 AM
Re: Turning off services
You can always go and look in the different init levels like /sbin/rc2.d and /sbin/rc3.d
to see what is started/stopped and when and remove the ones you dont want...
Just thoughts
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2003 08:30 AM
06-12-2003 08:30 AM
Re: Turning off services
See: '/etc/rc.config.d/xfs' to control the X font server on port 7000.
If you are only using Ignite 'make_tape_recovery' then you should be able to disable the services so noted.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2003 08:32 AM
06-12-2003 08:32 AM
Re: Turning off services
X11 Server: to stop dtlogin from starting at boot, edit /etc/rc.config.d/desktop and change the DESKTOP variable to be "DESKTOP=" instead of "DESKTOP=CDE"
X11 Font Server: to stop xfs from starting at boot, edit /etc/rc.config.d/xfs and change the RUN_X_FONT_SERVER variable to 0.
--
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2003 08:32 AM
06-12-2003 08:32 AM
Re: Turning off services
And start meditating from there for what you need/want and what is to be removed...
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2003 08:44 AM
06-12-2003 08:44 AM
SolutionIn /sbin/rc3.d, rename or delete S990dtlogin to disable the XServer.
X11 Font Server:
In /etc/rc.config.d/xfs, set
RUN_X_FONT_SERVER=0
instal_boots
In /etc/inetd.conf, comment out the line that starts
instl_boots
You do not neet the boots or bootc if you are not running an ignite server.
I also recommend installing lsof and using it in conjunction with netstat -a -f inet to determine what ports are open on your system.
netstat -a -f inet will show you what ports are listening, and lsof -i :xxxxx (where xxxxx is teh port nimber) will tell you what process has those ports open.
lsof -i will show you all processes that have an open tcp or udp port.