1 nohup ./run.sh > /dev/null 2>&1 &
最先执行的命令是nohup ./run.sh,报错:nohup: ignoring input and appending output to ‘nohup.out’。 原因是:没有写入权限的错误。所有这里要做重定向,最终的执行就是:nohup ./run.sh > /dev/null 2>&1 &
解释:
nohup 挂起的意思
./run.sh linux服务器的启动命令
/dev/null 重定向到某个文件夹
2>&1 0是键盘输入 1屏幕输入 2 是错误输出 这里是把错误 的输出重定向到屏幕输入 写入到dev/null 里面
& 意思是在后台运行
wrapper.exe -i C:\James\james-2.1\bin\wrapper.conf 这个是windows的后台启动
2 james邮箱服务器的优化:在bin下的phoenix.sh中添加:PHOENIX_JVM_OPTS="$PHOENIX_JVM_OPTS -Xms128M -Xmx512M -XX:PermSize=64M -XX:MaxPermSize=128M"
在:./james/conf/wrapper.conf的jvm配置,设置初始内存128M,最大内存512M
# Initial Java Heap Size (in MB)
#wrapper.java.initmemory=16
wrapper.java.initmemory=128
# Maximum Java Heap Size (in MB)
#wrapper.java.maxmemory=64
wrapper.java.maxmemory=512