商用服务器AIX下C语言的License配置
作者:神话海青_769 | 来源:互联网 | 2017-06-26 10:00
文章标题:商用服务器AIX下C语言的License配置。Linux是中国IT实验室的一个技术频道。包含桌面应用,Linux系统管理,内核研究,嵌入式系统和开源等一些基本分类
一. 安装C/C++/Fortran编译器及LUM(License 管理程序)
1.使用以下命令确认软件包 ipfx.rte 已经安装:
lslpp -l ipfx.rte
如果未安装,可从AIX 4.3 系统盘的第一张光盘找出并安装。
2.从编译器安装介质安装编译器软件包。
3.从AIX 系统盘安装LUM(License 管理程序)软件包:
bos.rte.ifor_ls
ifor_ls.base.cli
ifor_ls.base.gui
ifor_ls.client.base
ifor_ls.client.gui
ifor_ls.msg.en_US.base.cli
ifor_ls.msg.en_US.base.gui
下列软件包可任选:
bos.net (升级 NCS 到 版本4.3)
ifor_ls.compat (兼容旧版本License 管理程序NetLS)
ifor_ls.ipf.en_US (IPFX 格式的LUM 联机文档)
ifor_ls.html.en_US (HTML 格式的LUM 联机文档)
5.运行命令
lslpp -l bos.net.ncs
确认其版本为4.3.x.x(与AIX版本相同)
二. 配置编译器License
1.配置 LUM V4 Nodelock Licence Server
运行命令
i4cfg -script
将启动交互式License配置程序。以下为该命令输出内容,按照下列步骤配置
Nodelock License server:
i4cfg Version 4.0 AIX -- LUM Configuration Tool
(c) Copyright 1995-1997, IBM Corporation, All Rights Reserved
US Government Users Restricted Rights - Use, duplication or disclosure
restricted by GSA ADP Schedule Contract with IBM Corp.
[有时会遇到提示 "Configuration cannot take place until all licensing daemons
are stopped.",在提示“if you want to terminate them”后回答“Yes”继续。]
[如遇到提示 "default ini file not found,configuration ends.",可运行
/usr/opt/ifor/ls/bin/i4cnvini"重建默认的初始化文件。]
From a License Management point of view,
you can choose to configure this system as:
1) Network License Client
2) Nodelock License Server (and/or Network License Client)
3) Network (and/or Nodelock) License Server
4) Central Registry (and/or Network and/or Nodelock) License Server (*)
(*) Remember that one and only one Central Registry License Server
(i4gdb daemon) can be active in a Licensing domain.
Please indicate your choice [1,2,3,4]: 2
Do you want to disable remote administration of the license server? y
[此时可能遇到提示
"You have to choose now which mechanism must be enabled
to locate this License Server:
1) NCS Namespace and Direct Binding (*)
2) Direct Binding only"
选择 '2) Direct Bind Only']
Choose the desired Server(s) logging level
1) Default
2) All
3) Customized
Please indicate your choice [1,2,3]: 1
The default Log file(s) path is /var/ifor
Enter blank to accept default or specify a new path:[按回车键]
**********************************************************************
Server configuration is complete.
Do you want to configure this machine as a Network License Client too?
[y,n]: n
Do you want the License Server(s) automatically start on this system
at boot time? [y,n]: y
**********************************************************************
WARNING: Configuration is about to end.
This is your last chance to quit before your updates will be written.
Do you want to continue? [y,n]: y
*** Configuration file updated. ***
Do you want the License Server(s) start now? [y,n]: y
0513-059 The i4llmd Subsystem has been started. Subsystem PID is 18636.
'Start Services' has completed successfully
****************************************
* Configuration completed successfully *
****************************************
#
2. 运行下列命令将License加入管理程序:
# /var/ifor/i4blt -a -f [licfile] -R u -T [number_of_lics]
其中
licfile 为license文件名,number_of_lics 为 实际购买的编译器用户数。
例如: i4blt -a -f /usr/vac/c43aix_cn.lic -R u -T 10
将 C for AIX 4.3 编译器的10 个用户的license 加入Nodelock server。
i4blt -a -f /usr/vac/c44aix_cn.lic -R u -T 10000
将 C Version 4.4 编译器的10000个用户的license加入Nodelock server。
i4blt -a -f /usr/ibmcxx/cxx36_cn.lic -R u -T 5
将C&C++ Version 3.6.4 的5个用户的license 加入Nodelock server。
i4blt -a -f /usr/lpp/xlf/DOC/f51aix_cn.lic -R u -T 3
将Fortran V5.1.1 的3个用户的license 加入Nodelock server。
如果遇到错误信息"host not found" ,可将选项 "-n [hostname]" 加入命令行。例如:
i4blt -a -n myhost.com -f/usr/vac/c43aix_cn.lic -Ru -T 1
如果遇到错误信息"0509-023 Symbol ifor_translate_i18n in ksh is not defined",
这可能与库文件libshrnck.a 的版本有关,此时需要寻找正确的libshrnck.a文件并将其
拷贝到/usr/lib/ncs/lib/libshrnck.a。遇到这种情况可与IBM技术支持中心联系以寻求帮助。
命令 i4blt 运行成功后屏幕将显示: "ADM-10099: Product successfully enrolled"
3. 设置 C编译程序路径:
如果使用 C for AIX 4.4/5.0 编译器,运行脚本
/usr/vac/bin/replaceCSET
如果使用 C&C++ V3.6.x 编译器, 运行脚本
/usr/ibmcxx/bin/replaceCSET
三. 删除/更新 License
使用下列命令可将license 删除:
# i4blt -d -v "'IBM Software Solutions Toronto'" -p "'C for AIX' 4.3.cn"
-t 876751962
其中时间戳 876751962 在不同的系统上各不相同,可用命令
/var/ifor/i4blt -lp -i 查看。
使用下列命令可以更新license 用户数:
# i4blt -U -v "'IBM Software Solutions Toronto'" -p "'C for AIX' 4.3.cn"
-T [new number of users]
推荐阅读
-
本文介绍了一种利用函数实现不同进制数(二进制、八进制、十进制)之间转换的方法。包括了程序的运行效果展示、所使用的主要函数解析、以及如何验证用户输入的合法性。整个项目仅使用了两个全局变量来存储用户的选项和输入的数值。 ...
[详细]
蜡笔小新 2024-12-04 21:03:53
-
CSGOTimeLimit:40002000MS(JavaOthers)MemoryLimit:524288524288K(JavaOthers)ProblemDescriptio ...
[详细]
蜡笔小新 2024-12-04 19:06:23
-
-
本文详细介绍了C++中常见的容器(如列表、向量、双端队列等)及其迭代器的实现方式,通过具体代码示例展示了如何使用这些容器和迭代器。 ...
[详细]
蜡笔小新 2024-12-04 17:00:02
-
CGroups(Control Groups)是Linux内核提供的一个功能,旨在限制、记录和隔离进程组使用的物理资源,如CPU、内存和I/O等。它通过精细的资源管理,支持现代容器技术如Docker的资源限制需求。 ...
[详细]
蜡笔小新 2024-12-04 15:19:11
-
本文将介绍如何利用Postman工具执行基本的日志写入和数据管理操作。通过本教程,您将了解如何连接至Elasticsearch服务,创建索引,存储及检索数据。 ...
[详细]
蜡笔小新 2024-12-04 10:48:31
-
本文介绍两个实用的统计报表模板,并提供如何将这些静态模板转换为动态JSP页面的方法。同时,文中附上了详细的代码示例。 ...
[详细]
蜡笔小新 2024-12-04 10:26:05
-
本文探讨了在PHP中处理特定类型编码字符串的方法,特别是如何将HTML实体编码的字符串转换为普通文本。 ...
[详细]
蜡笔小新 2024-12-04 20:00:11
-
本文详细介绍了Java中的动态代理机制,包括如何定义接口、实现类和代理处理器,并通过具体示例演示了动态代理的创建和使用过程。 ...
[详细]
蜡笔小新 2024-12-04 19:46:00
-
本文详细介绍了在PHP中如何创建新文件以及如何使自定义函数在整个项目中全局可用的方法,包括最新的实践技巧。 ...
[详细]
蜡笔小新 2024-12-04 18:48:49
-
框图|中将_DA14531 学习笔记经验总结 ...
[详细]
蜡笔小新 2024-12-04 14:03:22
-
本文探讨如何通过贪心算法有效地安排一系列活动,确保使用最少数量的会场来完成所有活动的调度。 ...
[详细]
蜡笔小新 2024-12-04 12:45:17
-
本文探讨了使用匈牙利算法解决二分图中的最大权匹配问题,并通过HDU1533题目实例进行详细解析。代码实现中包括了必要的数据结构定义、输入处理以及求解过程。 ...
[详细]
蜡笔小新 2024-12-04 12:36:20
-
Django的数据库1.在Django_test下的view.py里面model定义模型fromdjango.dbimportmodels#Createyourmodelshere ...
[详细]
蜡笔小新 2024-12-04 11:29:56
-
本文详细解析了 Mongolass 中 populate 方法的正确使用方式及其限制,特别是与 Mongoose 在使用上的差异。 ...
[详细]
蜡笔小新 2024-12-04 11:05:08
-
随着智能手机市场的不断发展,处理器技术也在不断进步。近期,一些手机开始采用骁龙660AIE处理器,这引发了消费者对其与标准版骁龙660之间差异的好奇。本文将详细探讨这两款处理器的区别,帮助您更好地了解它们各自的特点。 ...
[详细]
蜡笔小新 2024-12-04 10:22:24
-