- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Prevent changes to config files
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
11-13-2000 06:39 PM
11-13-2000 06:39 PM
Prevent changes to config files
I don't want users to have the ability to change these configurations via the IgniteUI when they Ignite their servers. The only option I want to give them is the ability to select the correct configuration, but still be able to see what the configuration consist of i.e. they can move to the various tabbed interfaces in the UI and can see whats configured - but must not be able to change anything including marking or unmarking software.
Is this possible and if so how can it be achieved.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2000 03:08 AM
11-14-2000 03:08 AM
Re: Prevent changes to config files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2000 03:49 AM
11-14-2000 03:49 AM
Re: Prevent changes to config files
I think the options you need to change and experiment with are in the config.full file for the host in question on the ignite server. Variables are;
RUN_UI=TRUE
RUN_SD=TRUE
SD_USE_UI=FALSE
CONTROL_FROM_SERVER=FALSE
HALT_WHEN_DONE=FALSE
USE_EXPERT_UI=FALSE
CLEAN_ALL_DISKS=FALSE
HIDE_BOOT_DISK=FALSE
ERROR_IF_BAD_SW=FALSE
RECOVERY_MODE=TRUE
DISABLE_DHCP=FALSE
Try setting to FALSE RUN_UI and test it. If not what you wanted try modifying some of the others and testing them also.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2000 11:30 AM
12-14-2000 11:30 AM
Re: Prevent changes to config files
sw_sel "B3929BA" {
description = "HP OnLineJFS (Advanced VxFS)"
sw_source = "core"
sw_category = "OrderedApps"
sd_software_list = "B3929BA,r=B.11.00,a=HP-UX_B.11.00_32/64,v=HP"
(_hp_os_bitness == "32") {
impacts = "/usr" 362Kb
impacts = "/" 10Kb
}
(_hp_os_bitness == "64") {
impacts = "/usr" 591Kb
impacts = "/" 10Kb
}
} = TRUE
And setting the permission of the config file to -r- will seal the fate.
cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2001 07:31 AM
01-04-2001 07:31 AM
Re: Prevent changes to config files
The keyword "init" is used to set a configuration as a default one.
But if you don't want to be able to moify it, remove this keyword, for both variables and configurations :
init _hp_pri_swap = MEMORY * 2
becomes
_hp_pri_swap = MEMORY * 2
init sw_sel "EE pack" =TRUE
becomes
sw_sel "EE pack" =TRUE
you can use the keyword is_visible =false for some parts you don't want to appear, and then that you can't modify.
But the "read only" permission won't do what you want, neither RUN_UI and other variables.