0
点赞
收藏
分享

微信扫一扫

【Linux】CentOS7 C#开发环境搭建笔记(Jexus安装、配置、部署)

求索大伟 2022-03-23 阅读 178
centoslinux

Jexus安装、配置、部署

1、Jexus安装

建议安装Jexus独立版(专业版)
Jexus“独立版”指的是自带.net运行时(mono),不需要在客户服务器安装mono就能正常运行的Jexus版本,该版本只支持 64位Linux操作系统。
安装jexus独立版的命令是:

 
  1. $ curl https://jexus.org/release/x64/install.sh|sudo sh #默认安装路径为/usr/jexus

或者

 
  1. $ wget https://www.linuxdot.net/down/jexus-6.1-x64.tar.gz #下载
  2. $ tar -zxvf jexus-6.1-x64.tar.gz -C /usr/local #解压
  3. $ vim /etc/profile #添加环境变量
  4. #(按i编辑模式,粘贴下面内容)
  5. #**************环境变量*********************************************************
  6. #export PATH USER LOGNAME MAIL...
  7. export PATH=$PATH:/usr/local/jexus
  8. #******************************************************************************
  9. #(添加上述内容后,按Esc键,输入:wq!回车即可保存退出vim)
  10. $ source /etc/profile #刷新配置
  11. $ ./jws start #启动服务
  12. $ ./jws -v #查看版本

打开浏览器输入http://127.0.0.1,展示出Welcome to Jexus表示安装成功
注:软件包下载地址请根据官网进行选择更新

2、配置Jexus服务开机启动

 
  1. $ cd /etc/init.d
  2. $ vim jws
  3. #(按i编辑模式,粘贴下面内容)
  4. #******************************************************************************
  5. #!/bin/bash
  6. ### BEGIN INIT INFO
  7. #
  8. # Provides: jws
  9. # Required-Start: $local_fs $remote_fs
  10. # Required-Stop: $local_fs $remote_fs
  11. # Default-Start: 2 3 4 5
  12. # Default-Stop: 0 1 6
  13. # Short-Description: jws
  14. # Description: This file should be used to construct scripts to be placed in /etc/init.d.
  15. #
  16. ### END INIT INFO
  17. ## Fill in name of program here.
  18. PROG="jws"
  19. PROG_PATH="/usr/local/jexus" ## 注意:填写jexus的安装路径
  20. PROG_ARGS="start"
  21. PID_PATH="/var/run/"
  22. start() {
  23. if [ -e "$PID_PATH/$PROG.pid" ]; then
  24. ## Program is running, exit with error.
  25. echo "Error! $PROG is currently running!" 1>&2
  26. exit 1
  27. else
  28. ## Change from /dev/null to something like /var/log/$PROG if you want to save output.
  29. $PROG_PATH/$PROG $PROG_ARGS 2>&1 >/var/log/$PROG &
  30. $pid=`ps ax | grep -i 'jws' | sed 's/^\([0-9]\{1,\}\).*/\1/g' | head -n 1`
  31. echo "$PROG started"
  32. echo $pid > "$PID_PATH/$PROG.pid"
  33. fi
  34. }
  35. stop() {
  36. echo "begin stop"
  37. if [ -e "$PID_PATH/$PROG.pid" ]; then
  38. ## Program is running, so stop it
  39. pid=`ps ax | grep -i 'jws' | sed 's/^\([0-9]\{1,\}\).*/\1/g' | head -n 1`
  40. kill $pid
  41. rm -f "$PID_PATH/$PROG.pid"
  42. echo "$PROG stopped"
  43. else
  44. ## Program is not running, exit with error.
  45. echo "Error! $PROG not started!" 1>&2
  46. exit 1
  47. fi
  48. }
  49. ## Check to see if we are running as root first.
  50. ## Found at http://www.cyberciti.biz/tips/shell-root-user-check-script.html
  51. if [ "$(id -u)" != "0" ]; then
  52. echo "This script must be run as root" 1>&2
  53. exit 1
  54. fi
  55. case "$1" in
  56. start)
  57. start
  58. exit 0
  59. ;;
  60. stop)
  61. stop
  62. exit 0
  63. ;;
  64. restart)
  65. stop
  66. start
  67. exit 0
  68. ;;
  69. **)
  70. echo "Usage: $0 {start|stop|restart}" 1>&2
  71. exit 1
  72. ;;
  73. esac
  74. #******************************************************************************
  75. #(添加上述内容后,按Esc键,输入:wq!回车即可保存退出vim)
  76. $ chmod 766 jws
  77. $ chkconfig --add jws

执行上述命令后,重启系统查看http://127.0.0.1是否展示,即可验证是否配置开机启动成功

举报

相关推荐

0 条评论