2,484 バイト追加
、 2020年2月15日 (土) 07:32
==GERONIMO 導入==
{{include_html banner_html, "!Geronimo"}}
[GERONIMO]
ver 1.1.1
Fedora Core 3 に導入
===導入===
*http://geronimo.apache.org/
*[http://cwiki.apache.org/GMOxDOC11/apache-geronimo-v11-users-guide.html user's guid]
====前提====
=====[http://java.sun.com/ J2SE SDK]=====
=====Maven=====
====ダウンロード~解凍====
*[http://www.apache.org/dyn/closer.cgi/geronimo/1.1.1/geronimo-tomcat-j2ee-1.1.1.tar.gz geronimo-tomcat-j2ee-1.1.1.tar.gz]
#gzip -d geronimo-tomcat-j2ee-1.1.1.tar.gz
#tar xvf geronimo-tomcat-j2ee-1.1.1.tar
====起動====
# cd geronimo-1.1.1/bin
# java -jar server.jar
java.net.BindException: Address already in use:8080
おっと、競合してた。
=====デフォルトポートの変更=====
geronimo-1.1.1/var/config/config.xml
8080 → 8090
<gbean name="TomcatWebConnector">
<attribute name="host">0.0.0.0</attribute><attribute name="port">8090</attribute>
<attribute name="redirectPort">8443</attribute>
</gbean>
# java -jar server.jar
Booting Geronimo Kernel (in Java 1.5.0)...
Starting Geronimo Application Server v1.1.1
[**********************] 100% 72s Startup complete
Listening on Ports:
1099 0.0.0.0 RMI Naming
1527 0.0.0.0 Derby Connector
4201 0.0.0.0 ActiveIO Connector EJB
4242 0.0.0.0 Remote Login Listener
8009 0.0.0.0 Tomcat Connector AJP
8090 0.0.0.0 Tomcat Connector HTTP
8443 0.0.0.0 Tomcat Connector HTTPS
9999 0.0.0.0 JMX Remoting Connector
61616 0.0.0.0 ActiveMQ Message Broker Connector
Started Application Modules:
EAR: geronimo/webconsole-tomcat/1.1.1/car
RAR: geronimo/activemq/1.1.1/car
WAR: geronimo/remote-deploy-tomcat/1.1.1/car
WAR: geronimo/welcome-tomcat/1.1.1/car
Web Applications:
http://siva.typea.dip.jp:8090/
http://siva.typea.dip.jp:8090/console
http://siva.typea.dip.jp:8090/console-standard
http://siva.typea.dip.jp:8090/remote-deploy
Geronimo Application Server started
[[File:0524_geronimo_ins.jpg]]
====管理ユーザ名の変更====
デフォルトは、system/manager
# cd geronimo-1.1.1/var/security/
# vi groups.properties
# admin=user1,user2
# vi users.properties
# user1=password1
# user2=password2
====管理コンソールへログイン====
http://192.168.0.3:8090/console/portal/welcome
[[File:0523_geronimo_cons.jpg]]
----
{{ref geronimo_ins.jpg}}
{{ref geronimo_cons.jpg}}
{{attach}}
{{include_html banner_html, "!Geronimo"}}