Linux安裝JDK,Tomcat,Nginx,Redis教程__Linux

來源:互聯網
上載者:User
安裝JDK並配置環境變數 1.下載JDK 2.解壓
tar xzf jdk-7u79-linux-x64.tar.gz
3.配置環境變數(配置完成之後需要重啟)
用文字編輯器開啟/etc/profile 在profile檔案末尾加入: export JAVA_HOME=/usr/share/jdk1.7.0_79 export PATH=$JAVA_HOME/bin:$PATH export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
安裝tomcat
直接複製進去即可
安裝nginx

http://blog.csdn.net/gaojinshan/article/details/37603157
安裝完成之後訪問此機器的80連接埠,能出來Welcome to nginx!說明安裝成功
安裝telnet服務端

http://jingyan.baidu.com/article/9f63fb91ac7ebcc8400f0e94.html 關閉防火牆

有3種方式

1) 重啟後生效 開啟: chkconfig iptables on 關閉: chkconfig iptables off 2) 即時生效,重啟後失效 開啟: service iptables start 關閉: service iptables stop 需要說明的是對於Linux下的其它服務都可以用以上命令執行開啟和關閉操作。 在開啟了防火牆時,做如下設定,開啟相關連接埠, 修改/etc/sysconfig/iptables 檔案,添加以下內容: -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
Nginx配置

http://www.cnblogs.com/xiaogangqq123/archive/2011/03/02/1969006.html

貼上一篇自己已經配置成功的配置

#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;    upstream mysvr {      server 127.0.0.1:31080 weight=2;      server 127.0.0.1:32080 weight=6;    }    server {        listen       80;        server_name  localhost;        #charset koi8-r;        #access_log  logs/host.access.log  main;        location / {            root   html;            index  index.html index.htm;        }        location ~ \.(do|jsp)?$ {          proxy_set_header Host $host;          proxy_set_header X-Real-IP $remote_addr;          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;      proxy_pass http://mysvr;    }        #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;    #    }    #}}
Redis配置 安裝Redis

複製redis-2.8.18.tar.gz到linux某個目錄下,解壓 啟動Redis

cd redis-2.8.18/src/
./redis-server 在tomcat中配置Redis

1.在tomcat的lib中引入3個依賴包
tomcat-redis-session-manager-1.2-tomcat-6.jar
tomcat-redis-session-manager-1.2-tomcat-7.jar
commons-pool-1.6.jar
jedis-2.1.0.jar

2.在tomcat的context.xml檔案中配置Redis的配置資訊

<Valve className="com.radiadesign.catalina.session.RedisSessionHandlerValve"/>      <Manager className="com.radiadesign.catalina.session.RedisSessionManager"    host="127.0.0.1"    port="6379"    database="0"    maxInactiveInterval="60"/>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.