linux要用什么用户安装was

linux要用什么用户安装was,第1张

一准备

1. 登录到系统,是否使用root用户都可以(推荐使用root用户安装,以减少安装复杂度)。检查umask设置:对root用户,推荐使用0022;对非root用户,推荐使用0002

2. 安装FireFox浏览器(一般缺省都会安装),用来在安装时运行Launchpad程序,以及在安装后,使用Gnome或者KDE中的为Linux WAS创建的快捷菜单

3. 如果以前在系统中安装过Linux WAS,要停止所有相关的Java进程,以及IBM HTTP Server进程

4. 确保燃携蚂足够的硬盘空间。基本的安装(不包括HTTP Server)大概需要以下大小的硬盘空间:

/opt/IBM/WebSphere ~ 930M

/tmp ~ 100M

包含例子的WAS profile ~ 200M,一般也在/opt/IBM/WebSphere目录

5. 增加ulimit值,以免在addNode和importWasprofile的时候出问题:在用户的bash登录脚本(~/.bashrc)的最后加入一行:ulimit -n 8192

6. 如果安装了带有cp命令的软件,要确保把这些软件的路径从PATH环境变量中去掉,以保证使用shell的cp命令。在安装完Linux WAS以后皮埋,再恢复PATH设置即可。

二 安装Linux WAS

1. 以root用户运行安装包根目录下的launchpad.sh命令启动Launchpad

2. 在打开的页面中,点击"Launch the installation wizard for Websphere Application Server",d出Linux WAS安装向导欢迎界面

3. 在System Prerequisite Check页会有警告说 没有检测到支持的 *** 作系统,点击Next忽略即可

4. 在WebSphere Application Server Environments页面,选择"Application Server"

5. 在Enable Administrative Security页面,取消选中(如果需要的话,可以在安装以后启用)

6. 安装结束后,点击Finish按钮,接着d出First Steps Console

7. 可选步骤:点击Installation verification,验证安装,然后可以点击Administrative console,隐段打开管理控制台页面(http://servername:9060/ibm/console)查看Linux WAS的相关配置信息。最后点击Stop the server,停止Linux WAS。

8. 可选: 安装补丁包将补丁包安装程序(UpdateInstaller)7.0.0.0-WS-UPDI-LinuxIA32.zip,解压缩,然后cd到解开的目录下面,以root运行java -jar setup.jar,缺省安装到/opt/IBM/WebSphere/UpdateaInstaller安装结束后,UpdateInstaller会自动运行,(手动将下载的补丁包,如7.0.0-WS-WAS-LinuxX32-FP0000005.pak放到/opt/IBM/WebSphere/UpdateaInstaller/maintenance下面),一路Next即可。

9. 如果启用了SELinux,需要更改Linux WAS相关的java命令程序以及相关链接库和jar包的security context, 不然在用startServer.sh启动Linux WAS的时候会碰到类似如下的错误信息 /opt/IBM/WebSphere/AppServer/bin/startServer.sh: line 145: /opt/IBM/WebSphere/AppServer/java/bin/java: Permission denied Linux WAS本身提供了现成的脚本(/opt/IBM/WebSphere/AppServer/properties/version/nif/config/script/relabel_was.sh)来自动完成这些修改。不过这个脚本是为RHEL 5量身定做的,会检查系统是不是RHEL5. 所以我们要做一下简单的修改,注释掉脚本最后的检查语句,如下所示:

view plaincopy to clipboardprint?

#if [ -r /etc/redhat-release ]then

#release=`cat /etc/redhat-release | awk '{print $7}'`

#version=${release%%\.*}

#if [ $version -ge 5 ]then

if [ -x /usr/sbin/selinuxenabled ] &&/usr/sbin/selinuxenabledthen

INSTALL_PATH=$1

JAVA_PATH=$INSTALL_PATH/java/jre

set_java_contexts

set_lib_contexts

fi

# fi

#fi

exit $rc

#if [ -r /etc/redhat-release ]then

# release=`cat /etc/redhat-release | awk '{print $7}'`

# version=${release%%\.*}

#if [ $version -ge 5 ]then

if [ -x /usr/sbin/selinuxenabled ] &&/usr/sbin/selinuxenabledthen

INSTALL_PATH=$1

JAVA_PATH=$INSTALL_PATH/java/jre

set_java_contexts

set_lib_contexts

fi

#fi

#fi

exit $rc

把修改后的脚本存为relabel_was_fedora.sh,然后执行:

sudo setenforce 0

sudo ./relabel_was_fedora.sh /opt/IBM/WebSphere/AppServer/

sudo setenforce 1

10. 如果启用了防火墙,要打开Linux WAS相关的端口,比如9080,9060等

11. 运行sudo /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin/startServer.sh server1 启动Linux WAS,检查一切是否正常。

安装JDK,IBMJava118-SDK-1.1.8-4.0.i386.rpm

假设将rpm下载到/root/rpms,从命令行输入:

rpm -ivh/root/rpms/IBMJava118-SDK-1.1.8-4.0.i386.rpm

在正确使用JDK之前必须设置好shell环境。检查有关shell的文档来了解如何设置环境。我使用bash,因此在/root/.bash_profile文件中添加了以下几行:

以下是引用片段:

JAVA_HOME=/usr/jdk118

PATH=$PATH:/usr/jdk118/bin

CLASSPATH=$CLASSPATH:/usr/jdk118/lib/classes.zip

export PATH JAVA_HOME CLASSPATH

为了确保更改在当前的命令行中生效,输入: . ~/.bash_profile

安装Web服务器(HTTP Server)

Web服务器必须在安 WebSphere Application Server之前安装。

下载安装包:ihs.6010.linux.ia32.tar

1、tar -xvf ihs.6010.linux.ia32.tar---生成一个目录IHS;

2、cd IHS--看到一个目录install;

3、 ./install--执行命令即开始安装 ,安装到了/opt/IBMIHS/目录下;

4、启动服务器:/opt/IBMHTTPServer/bin/apachectl start

如果看到一个错误 HTTP Server无法启动, 尝试更新 /opt/IBMHTTPServer/conf/httpd.conf 文件。因为我运行的是单机,所以将以下这行:ServerType inetd,更新为ServerType standalone。

netscape浏览器下载

下载地址:http://browser.netscape.com/release

下载包netscape-i686-pc-linux-gnu-sea.tar.gz

gzip -d netscape-i686-pc-linux-gnu-sea.tar.gz

tar -xvf netscape-i686-pc-linux-gnu-sea.tar.gz --解压生成一个目录netscape-installer

开始安装,友衫进入netscape-installer,看到netscape-installer,执行命令:./netscape-installer 即可;

启动Netscape浏览器,并指向http://localhost/index.html,检查设置和运行是否一切正常。若正常应该看到类似图1的画面:IBM HTTP Server的欢迎页面。

安装和配置 WebSphere Application Server和安装其他软件哗没一样:

1、gzip -d was.cd.6100.trail.base.linux.ia32.tar.gz --解压gzip

2、tar -xvf was.cd.6100.trail.base.linux.ia32.tar --解压 生成一个WAS的目录,进去之后看到一个绿色的目录install就对了,执行乱告纳该目录就是安装;

3、cd WAS --进入加压后的目录

4、./install --执行安装。默认安装目录:/opt/IBM/WebSphere/AppServer

5、启动server:进入 /opt/IBM/WebSphere/AppServer/bin ,执行命令:./startServer.sh server1;

6、停止服务:进入/opt/IBM/WebSphere/AppServer/bin,,执行命令:./stopServer.sh server1;

7、启动HTTP Server

8、部署WEB Application

进入WebShere的控制台

cd /opt/IBM/WebSphere/AppServer


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12492051.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-25
下一篇 2023-05-25

发表评论

登录后才能评论

评论列表(0条)

保存