安装和设置
下载:
要设置 WebSphere Liberty,请从 WASdev.net 下载最新的 zip。
布局:
获得 zip 后,将其解压缩到文件系统的任何位置。Liberty 安装的基本布局如下:
wlp/ # WLP_INSTALL_DIR
bin/ # location of scripts such as 'server'
dev/ # developer resources (APIs, SPIs, and tools)
etc/ # global customizations (server.env or jvm.options)
lib/ # platform runtime environment
usr/ # user directory
servers/ # servers directory
server_name # directory containing all information for a given server
server.xml # (required) primary server configuration file
apps/ # server applications folder
dropins/ # server dropin applications folder
logs/ # server log files
详细的布局信息: 目录位置和属性
创建,启动和停止服务器:
行动 | 命令 |
---|---|
创建一个服务器 | server create myServer |
启动服务器 | server start myServer |
停止服务器 | server stop myServer |
注意:server
脚本位于:$WLP_INSTALL_DIR/bin/server