如何让项目跑起来参考

http://blog.csdn.net/u012225679/article/details/73849357?locationNum=5&fps=1

http://blog.csdn.net/happy_Pinocchio/article/details/72942330

遇到的问题

1.上面的讲nginx配置不详细,下面附一个配置文件

#user nobody;

worker_processes 1;

#error_log logs/error.log;

#error_log logs/error.log notice;

#error_log logs/error.log info;

#pid logs/nginx.pid;

events {

worker_connections 1024;

}

http {

include mime.types;

default_type application/octet-stream;

#log_format main '$remote_addr - $remote_user [$time_local] "$request" '

# '$status $body_bytes_sent "$http_referer" '

# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;

sendfile on;

#tcp_nopush on;

#keepalive_timeout 0;

keepalive_timeout 65;

#gzip on;

server {

listen 80;

server_name 127.0.0.1;

#charset koi8-r;

#access_log logs/host.access.log main;

# 静态页面目录

root D:\___WORK\github\iBase4J-master\iBase4J-UI\iBase4J-UI-AngularJS;

# 默认首页

index index.html;

location / {

#用户浏览器端的缓存设置

location ~* \.(css|js|jpg|jpeg|gif|png|swf|html|htm|json|xml|svg|woff|xsl|xslx|doc|docx|zip|rar)$ {

expires 1h;

if (-f $request_filename){

break;

}

}

if (!-e $request_filename){

proxy_pass http://127.0.0.1:8088;

}

}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html

#

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root html;

}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80

#

#location ~ \.php$ {

# proxy_pass http://127.0.0.1;

#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

#

#location ~ \.php$ {

# root html;

# fastcgi_pass 127.0.0.1:9000;

# fastcgi_index index.php;

# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;

# include fastcgi_params;

#}

# deny access to .htaccess files, if Apache's document root

# concurs with nginx's one

#

#location ~ /\.ht {

# deny all;

#}

}

# another virtual host using mix of IP-, name-, and port-based configuration

#

#server {

# listen 8000;

# listen somename:8080;

# server_name somename alias another.alias;

# location / {

# root html;

# index index.html index.htm;

# }

#}

# HTTPS server

#

#server {

# listen 443 ssl;

# server_name localhost;

# ssl_certificate cert.pem;

# ssl_certificate_key cert.key;

# ssl_session_cache shared:SSL:1m;

# ssl_session_timeout 5m;

# ssl_ciphers HIGH:!aNULL:!MD5;

# ssl_prefer_server_ciphers on;

# location / {

# root html;

# index index.html index.htm;

# }

#}

}

2.redis版本2.x是不行的,需要3.x

https://github.com/MicrosoftArchive/redis/releases

3.使用idea,不要用eclipse

4。上面两个教程已经写的很详细了。所以这里只说遇到的问题。

linux 部署 ibase4j,ibase4j学习相关推荐

  1. linux运行dock打包的镜像,Linux部署之Docker方式部署项目

    Linux部署之Docker方式部署项目 1. 使用Docker对前端vue项目进行部署 1.1 环境准备 服务器或者虚拟机上先安装好Nginx和相关配置 docker pull nginx 拉去最新 ...

  2. 亲爱的,我是一条Linux运维技术学习路径呀。

    根据我的经验,人在年轻时,最头疼的一件事就是决定自己这一生要做什么.在这方面,我倒没有什么具体的建议:干什么都可以,但最好不要写小说,这是和我抢饭碗.总而言之,干什么都是好的:但要干出个样子来,这才是 ...

  3. linux deploy下载地址,Linux部署 Linux Deploy

    Linux部署 Linux Deploy 大小:10.10M 语言:中文 类型:办公学习 版本:1.0 时间:2020-08-05 12:17:02 介绍 Thisapplicationisopens ...

  4. Linux性能优化实战学习笔记:第四十六讲=====实战分析

    Linux性能优化实战学习笔记:第四十六讲 一.上节回顾 不知不觉,我们已经学完了整个专栏的四大基础模块,即 CPU.内存.文件系统和磁盘 I/O.以及网络的性能分析和优化.相信你已经掌握了这些基础模 ...

  5. Ubuntu Kylin使用docker单机部署Fate联邦学习框架

    Ubuntu Kylin使用docker单机部署Fate联邦学习框架 Fate联邦学习框架分为单机部署和集群部署,本文是在Ubuntu Kylin上使用docker单机部署Fate联邦学习框架,具体环 ...

  6. Linux运维工程师学习成长路线

    作为互联网的幕后英雄,Linux运维工程师长期隐匿在大众认知范围之外,关于运维的讨论仍旧是一片无人涉足的荒漠.在某知名行业研究调查结果中,非互联网从业者对于运维相关问题的回复有三个高频词汇是:不知道. ...

  7. 《鸟哥的Linux私房菜-基础学习篇》读书笔记

    写在前面 嗯,来这边实训,青软的孔老师给装了一个有Linux系统的虚拟机,讲了一些Linux的常识,决定去看这本书,了解一些Linux的知识  . 加油生活^_^,嗯,希望以后的生活不会枯燥哎!!摘条 ...

  8. 在Linux部署ElasticJob-Lite-UI运维控制台

    文章目录 前言 在Linux部署 使用运维控制台 参考 前言 ElasticJob-Lite-UI是任务的分布式调度解决方案(ElasticJob-Lite)搭配的可视化运维控制台.运维控制台和Ela ...

  9. Linux部署Tengine

    一,提前准备 1.个人觉得如果要操作linux需要两种软件Putty和winSCP,一种命令行和一种可视化,完美. 2.之后在http://tengine.taobao.org/下载tengine服务 ...

  10. Linux shell脚本基础学习

    Linux shell脚本基础学习这里我们先来第一讲,介绍shell的语法基础,开头.注释.变量和 环境变量,向大家做一个基础的介绍,虽然不涉及具体东西,但是打好基础是以后学习轻松地前提. 1. Li ...

最新文章

  1. frps server端配置_Docker 快速搭建 mock-server
  2. HDU 排名(简单题)
  3. 11g新特性:X$DBGALERTEXT一个很酷的内部视图
  4. 宿主机windows Xp部署virtualBox虚拟机并在其上安装linux ubuntu操作系统
  5. 室外排水设计规范_XXZG排水汇集器完美解决LOFT公寓卫生间排水难题
  6. html鼠标长按事件,JavaScript-web如何获取长按鼠标左键事件
  7. 云路由 vyatta 体验(一)基本设置
  8. 初步认识Volatile-什么叫缓存一致性呢?
  9. 前端性能优化:Add Expires headers
  10. Style transfer系列论文之——Arbitrary Style Transfer in Real-time with Adaptive Instance Normali,ICCV, 2017
  11. 【C++设计模式】建造者模式
  12. matlab igbt 关断,IGBT关断过程的分析
  13. CleanMyMac X下载Mac系统清理优化工具
  14. Extjs Design 可视化开发工具
  15. 学习嵌入式怎么入门和提高?嵌入式开发教程pdf
  16. 微信投票软件制作代码
  17. 【基础知识】8、加州房价预测项目精细解释
  18. stm32+W5500+阿里物联网平台
  19. 实验一 网络流量捕获实验
  20. excel之高级筛选与VLOOKUP函数

热门文章

  1. 小白能读懂的 《手把手教你学DSP(TMS320X281X)》第四章(2) gel文件
  2. 在vpp中做nat实验
  3. 安卓-利用android studio制作简单的QQ登陆login界面
  4. 黄绿色——五色配色篇
  5. 最难数独的快速解法 - python
  6. 矩阵分析与应用(20)
  7. c++实现通讯录制作
  8. Delphi 播放wav声音
  9. QT 简单应用之播放WAV声音
  10. 盗版windows xp摇身一变成正版(不用算号器)