# 需使用root用户执行 cd /app/soft/datastage_11713/is-suite ./setup
# 从浏览器打开输出的最下方的地址 若本机hosts没有配置则将主机名替换为IP地址 heibanbai:/app/soft/datastage_11713/is-suite # ./setup INFO: Installation program will be running in this session, please do not close installation window until installation program completes. The installation program started at 2/2/2310:53 AM.
======> Enter the following URL to your web browser to begin the installation process: https://heibanbai:8446/ISInstall
选择安装语言
安装说明
防火墙要求说明
前期环境检查
选择安装路径
选择安装方式
选择安装组件
选择安装产品
许可声明
服务器集群高可用
选择是否安装数据库
点击next后如果出现如下页面(元数据库配置),可能是由于安装过程的网络交互等原因,需要点击左边树状进度条High Availablity Server Cluster Configuration 将安装进程往回切换一下,然后在HA配置页面点击NEXT:
是否安装WAS
选择WAS安装目录
WAS服务端口分配
配置WAS管理员用户
配置InformationServer管理员用户
配置数据库信息
配置WAS控制台数据库信息
CAS端口选择
ABS代理程序端口配置
操作系统管理员用户设置
作业监视器端口配置
为Engine层指定ITAG以区别于同服务器上的其它版本Datastage实例
是否安装全球化支持
WebsphereMQ插件选择
SAS设置
预建工程配置
操作数据库配置信息,用于存储操作控制台使用的监控信息
选择安装版本
安装环境检查
Error:
Ensure that the user app can read from directory /app/soft/datastage_11713/is-suite.
heibanbai:~ # ssh-keygen -t rsa Generating public/private rsa key pair. Enter file inwhich to save the key (/root/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /root/.ssh/id_rsa. Your public key has been saved in /root/.ssh/id_rsa.pub. The key fingerprint is: SHA256:5WLS91GgGV/YnJMNLT+gNhJY76x6UaCvN1BEKwYIkas root@heibanbai The key's randomart image is: +---[RSA 2048]----+ | o+ .. +o. .+o* | | . . .. +o=.+B o| | . oo.*.o o+ | | . .o.=o= . ..| |. . S *oo .| |E + =.. . | | o.. . | | ..+ | | .o . | +----[SHA256]-----+
复制秘钥
1 2 3 4 5 6 7 8 9 10
heibanbai:~ # ssh-copy-id -i ~/.ssh/id_rsa.pub 199.188.166.110 /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub" /usr/bin/ssh-copy-id: INFO: attempting to login with the new key(s), to filter out any that are already installed /usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys Password:
Number of key(s) added: 1
Now try logging into the machine, with: "ssh '199.188.166.110'" and check to make sure that only the key(s) you wanted were added.
tar -zcvf /app/IBM/no_root_backup/ASBServer.tar.gz /app/IBM/InformationServer/ASBServer tar -zcvf /app/IBM/no_root_backup/InfoSphere.tar.gz /app/IBM/WebSphere/AppServer/profiles/InfoSphere tar -zcvf /app/IBM/no_root_backup/ASBNode.tar.gz /app/IBM/InformationServer/ASBNode
#!/bin/sh usage(){ echo"usage:" echo"serviceAdmin.sh {stop|start|restart}" echo"stop:stop the DS service" echo"start:start the DS service" echo"restart:restart the DS service" exit -1 } stopService(){ echo"start to stop the DS service......" echo"**********************************" cd /app/IBM/InformationServer/Server/DSEngine/bin ./uv -admin -stop cd /app/IBM/InformationServer/ASBNode/bin ./NodeAgents.sh stop cd /app/IBM/InformationServer/ASBServer/bin ./MetadataServer.sh stop echo"**********************************" echo"finish to stop the DS service!!!!!" } startService(){ echo"start to start the DS service......" echo"**********************************" cd /app/IBM/InformationServer/Server/DSEngine/bin ./uv -admin -start cd /app/IBM/InformationServer/ASBNode/bin ./NodeAgents.sh start cd /app/IBM/InformationServer/ASBServer/bin ./MetadataServer.sh run echo"**********************************" echo"finish to start the DS service!!!!!" } if [ $# -ne 1 ] then usage fi if [ "X$1" == "Xstop" ] then stopService else if [ "X$1" == "Xstart" ] then startService else if [ "X$1" == "Xrestart" ] then stopService startService else usage fi fi fi