Last active
September 30, 2016 13:39
-
-
Save capsmalt/3899512fe34c7cfd094fb21674f5a341 to your computer and use it in GitHub Desktop.
Libertyで 1 minuteデプロイ (1 minute deploy with Liberty) ref: http://qiita.com/capsmalt/items/d20271ca1040509f92be
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ unzip wlp-webProfile7-16.0.0.3.zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ bin/server create server1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ bin/server run server1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd usr/servers/server1/dropins // wlp以下にusrがある | |
$ mkdir myApp.war | |
$ cd myApp.war | |
$ vi index.jsp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cp あなたのアプリ.war wlp/usr/servers/server1/dropins/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html><body>Hello World!!</body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment