resin安装

cd  /usr/ports/www/resin3/

make install clean

Resin is now installed in /usr/local/resin3

You may want to activate it in /etc/rc.conf:

resin3_enable="YES"

Then start it:

env – /usr/local/etc/rc.d/resin3.sh start

For this control script to run seamlessly, it is recommended to increase the
maximum length of commands displayed by ps(1).  Please append the following
setting to /etc/sysctl.conf:

  # Do not truncate command line arguments in ps(1) listing
  kern.ps_arg_cache_limit=10000

This setting will take effect at next reboot, however it is possible to have
immediate effect with the following command as root:

  # sysctl kern.ps_arg_cache_limit=10000

If you wish to skip this setting, please note that the `stop', `restart' and
`status' will not function properly with resin3.sh.

Once Resin is started, point your web browser to the default home page at
http://localhost:8080/ to read the documentation and test the samples.

Resin configuration is located at /usr/local/etc/resin3/resin.xml

Enjoy!

——————————————————————————–
ADVANCED USAGE

If you need to pass special options to Java, please set the resin3_flags option
in /etc/rc.conf, see examples below:

  # Prevent Java from opening an X11 display

  resin3_flags="-Djava.awt.headless=true"

  # Increase memory limit of the Java virtual machine

  resin3_flags="-Xms32m -Xmx256m"

  # Run Java with remote debugging turned on on port 8000

  resin3_flags="-Xdebug -Xnoagent
  -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000"

RSS feed for comments on this post · TrackBack URL

发表评论

You must be logged in to post a comment.