当前位置:   article > 正文

nginx反向代理+nginx黑白名单+nginx负载均衡+平滑升级+配置jdk环境-7.30

nginx反向代理+nginx黑白名单+nginx负载均衡+平滑升级+配置jdk环境-7.30

一、反向代理

1.前端服务器配置

前端服务器:用于接收和响应客户端,代理另一台主机

Nginx 安装

(1).下载安装nginx

[root@web ~]# wget https://nginx.org/download/nginx-1.26.1.tar.gz

(2).解压

[root@web ~ ]# tar -zxvf nginx-1.26.1.tar.gz

(3).编译安装 nginx
(1)安装 pcre

⾸先安装 pcre。此软件是为了⽀持 rewrite(重写、复写)功能⽽存在的。rewrite 是实现 url 重定向的重要命令,它会根据正则表达式来匹配内容,从⽽跳转到⽬标上⾯去。

[root@web ~]# yum -y install pcre-devel

(2)安装 OpenSSL

当没有使⽤ ssl 证书对服务器数据进⾏加密认证时,⽤户的数据将会以明⽂的形式进⾏传输,⽽此时,⽤户的数据可以被⼀些抓包⼯具获取,就容易造成⽤户的信息泄露。

所以为了改善这种情况,作为运维⼈员需要去为⽹站配置 ssl 证书,实现 https 协议的访问

[root@web ~]# yum -y install openssl-devel

(3)在安装之前还要安装⽤来编译的⼯具

gcc、gcc-c++、make;lrzsz 是⽤来从 Windows 上直接将⽂件导⼊到 Linux 内的⼯具。

[root@web ~]# yum -y install gcc gcc-c++ make

(4)编译安装 nginx

如果之前在系统上有 yum 安装的 nginx,那么在编译安装之前 需要先卸载掉原来的 nginx。

卸载nginx:yum -y remove nginx

(5)进行编译

[root@web ~]# ls nginx-1.26.1  nginx-1.26.1.tar.gz

 cd到安装包⽬录下  

[root@web ~]# cd nginx-1.26.1/

[root@web nginx-1.26.1]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-stream

命令分步解释:

[root@web nginx-1.26.1]# make && make install

[root@web nginx-1.26.1]# useradd -s /bin/nologin -M nginx

(6)检查目录

[root@web nginx-1.26.1]# tree /usr/local/nginx  

[root@web nginx-1.26.1]# cd /usr/local/nginx/

[root@web nginx]# ls

conf  html  logs  sbin

(7)备份目录

[root@web nginx]# cp -r conf/ conf.bak  

[root@web nginx]# ./sbin/nginx  

(8)开放端口或者服务

[root@web nginx]# firewall-cmd --zone=public --add-port=80/tcp --permanent success [root@web nginx]# firewall-cmd --reload success  

[root@web nginx]# vim /usr/local/nginx/conf/nginx.conf

(9)创建符号链接(软链接)

[root@web nginx]# ln -s /usr/local/nginx/sbin/nginx /usr/bin/

[root@web nginx]# ls -l

/usr/bin/nginxlrwxrwxrwx. 1 root root 27 7月 29 16:16 /usr/bin/nginx -> /usr/local/nginx/sbin/nginx

[root@web nginx]# nginx

[root@web nginx]# nginx -s stop

[root@web nginx]# netstat -lnput|grep nginx

[root@web nginx]# nginx

[root@web nginx]# netstat -lnput|grep nginx

tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 17228/nginx: master

(10)启动和关闭nginx服务

./nginx ./nginx -s reload

修改了配置文件后,重载nginx服务网

./nginx -s reload

(11)脚本启动nginx服务:

[root@web nginx]# vim ~/nginx.sh

[root@web nginx]# bash ~/nginx.sh

tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 17228/nginx: master

nginx正在执行,或者是80端口被占用

[root@web nginx]# nginx -s stop

[root@web nginx]# bash ~/nginx.sh

12)以systemctl控制nginx

[root@web nginx]# vim /usr/lib/systemd/system/nginx.service

如果直接使用sbin目录下的nginx,就无法使用systemctl

这两套命令只能用一套

(1)[root@web nginx]# systemctl daemon-reload

​ [root@web nginx]# systemctl stop nginx

(2)[root@web nginx]# nginx -s reload [root@web nginx]# nginx -s stop

(13)添加监控块

[root@web nginx]# vim /usr/local/nginx/conf/nginx.conf

[root@web nginx]# systemctl restart nginx

2.后端服务器

[root@web ~]# wget https://nginx.org/download/nginx-1.26.1.tar.gz

[root@web ~ ]# tar -zxvf nginx-1.26.1.tar.gz

[root@web ~]# yum -y install gcc gcc-c++

[root@web ~]# yum -y install openssl-devel pcre-devel make

[root@web ~]# lsnginx-1.26.1 nginx-1.26.1.tar.gz

[root@web ~]# cd nginx-1.26.1/

[root@web nginx-1.26.1]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-stream

[root@web nginx-1.26.1]# make && make install  

[root@web nginx-1.26.1]# useradd -s /bin/nologin -M nginx  

[root@nginx nginx-1.26.1]# echo "我是后端服务" > /usr/local/nginx/html/index.html

[root@nginx nginx-1.26.1]# firewall-cmd --zone=public --add-port=80/tcp --permanent

success  [root@nginx nginx-1.26.1]# firewall-cmd --reload

success  

修改配置文件  

[root@nginx nginx-1.26.1]# vim /usr/local/nginx/conf/nginx.conf

将其修改为utf-8(防止出现乱码)  

[root@nginx nginx-1.26.1]# /usr/local/nginx/sbin/nginx  

[root@nginx nginx-1.26.1]# /usr/local/nginx/sbin/nginx -s reload  

浏览器访问:192.168.2.27

[root@nginx ~]# echo "this is java web server" > /usr/local/nginx/html/index.html

[root@nginx ~]# #启动nginx

[root@nginx ~]# /usr/local/nginx/sbin/nginx

[root@nginx ~]# #使用curl访问当前项目

[root@nginx ~]# curl localhost

this is java web server

3.前端服务器配置

  1. [root@web ~]# echo "this is static server" > /usr/local/nginx/html/index.html
  2. [root@web ~]# #启动nginx服务
  3. [root@web ~]# /usr/local/nginx/sbin/nginx
  4. [root@web ~]# ps -aux|grep nginx
  5. [root@web ~]# curl localhost
  6. this is static server
  7. [root@web ~]# curl 192.168.2.25
  8. this is static server
  9. 使用25代理27主机,当用户访问25的时候,25不响应,27主机响应
  10. 使用25主机nginx反向代理27的服务器
  11. [root@web ~]# #location proxy_pass 协议 域名 端口

修改配置文件 /usr/local/nginx/conf/nginx.conf

[root@web ~]# vim /usr/local/nginx/conf/nginx.conf


 

[root@web ~]# /usr/local/nginx/sbin/nginx -s reload

浏览器访问IP:192168.2.25,访问到的内容是后端服务器的

现在的静态服务器实际上是代理服务器,nginx代理其他服务的时候,不需要对方同意

二、设置黑名单、白名单

1.安装配置nginx环境

2.修改一下index.html中的内容

[root@nginx-1 nginx-1.26.1]# echo "you are luckly" > /usr/local/nginx/html/index.html [root@nginx-1 nginx-1.26.1]# curl localhost

you are luckly  

3.修改配置文件 此台服务器IP:192.168.2.28  

前端服务器IP:192.168.2.25  

后端服务器IP:192.1682.27  

设置除开27(后端服务器)可以访问,其他主机都不可以访问  在配置文件中的server模块中设置,allow为允许,deny为禁止,可以对IP生效,也可以对网段生效  

[root@nginx-1 nginx-1.26.1]# vim /usr/local/nginx/conf/nginx.conf

4.重启服务

[root@nginx-1 nginx-1.26.1]# /usr/local/nginx/sbin/nginx -s reload  

5.测试 

分别在前端服务器(25)、后端服务器(27)进行测试:  

前端服务器(25):

  1. [root@web ~]# curl 192.168.2.28
  2. <html>
  3. <head><title>403 Forbidden</title></head>
  4. <body>
  5. <center><h1>403 Forbidden</h1></center>
  6. <hr><center>nginx/1.26.1</center>
  7. </body>
  8. </html>

后端服务器(27):

  1. [root@nginx ~]# curl 192.168.2.28
  2. you are luckly

6.说明:

  1. [root@web ~]# curl 192.168.2.28
  2. curl: (7) Failed connect to 192.168.2.28:80; 没有到主机的路由
  3. 如果出现这种情况,查看是否能ping通外网,是否能ping通192.168.2.28这台主机,最后检查防火墙有没有关

三、负载均衡

1.负载均衡状态

2.环境准备

让每一台主机能够获得相应的压力

轮询:依次的将任务部署给不同的主机

1.准备四台机器:
编号主机名IP地址
1static-server192.168.2.25
2001192.168.2.27
3002192.168.2.28
4003192.168.2.29

2.都配置nginx环境

wget https://nginx.org/download/nginx-1.26.1.tar.gz  

tar -zxvf nginx-1.26.1.tar.gz   yum -y install pcre-devel  

yum -y install openssl-devel  yum -y install gcc gcc-c++ make  

cd nginx-1.26.1/  

./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-stream  

make && make install  

useradd -s /bin/nologin -M nginx  

3.写测试页面:

[root@static-server ~]# echo "I am static server" > /usr/local/nginx/html/index.html  

[root@001 ~]# echo "I am 001 server" > /usr/local/nginx/html/index.html  

[root@002 ~]# echo "I am 002 server" > /usr/local/nginx/html/index.html  

[root@003 ~]# echo "I am 003 server" > /usr/local/nginx/html/index.html 

4.启动服务(static-server、001、002、003):

/usr/local/nginx/sbin/nginx

3.负载均衡策略

(1)配置代理和轮询

[root@static-server ~]# vim /usr/local/nginx/conf/nginx.conf

轮询:

代理:

[root@static-server ~]# /usr/local/nginx/sbin/nginx -s reload

浏览器访问static-server的IP:192.168.2.25

static-server会代理001、002、003这三台机器,刷新浏览器会出现轮询

(2)weight加权

权重默认为1,谁权重大,谁优先处理请求

[root@static-server ~]# vim /usr/local/nginx/conf/nginx.conf

[root@static-server ~]# /usr/local/nginx/sbin/nginx -s reload

浏览器访问IP:192.168.2.25

001出现的次数最多,003出现的次数最少

(3)ip_hash

当对后端的多台动态应用服务器做负载均衡时,ip_hash指令能够将某个客户端IP的请求通过哈希算法定位到同一台后端服务器上。

这样,当来自某一个IP的用户在后端Web服务器A上登录后,再访问该站点的其他URL,能保证其访问的还是后端web服务器A。

注意: 使用ip_hash指令无法保证后端服务器的负载均衡,可能导致有些后端服务器接收到的请求多,有些后端服务器接受的请求少,而且设置后端服务器权重等方法将不起作用

[root@static-server ~]# vim /usr/local/nginx/conf/nginx.conf

[root@static-server ~]# /usr/local/nginx/sbin/nginx -s reload

浏览器访问IP:192.168.2.25

第一次访问到001的测试页面,之后刷新浏览器一直是001的测试页面,不会变。

(4)least_conn

least_conn:最少连接,把请求转发给连接数较少的后端服务器。轮询算法是把请求平均地转发给各个后端,使它们的负载大致相同;但是,有些请求占用的时间很长,会导致其所在的后端负载较高。这种情况下,leastconn这种方式就可以达到更好的负载均衡效果。

(5)url_hash

按访问url的hash结果来分配请求,使每个url定向到同一个后端服务器,要配合缓存命中来使用。同一个资源多次请求,可能会到达不同的服务器上,导致不必要的多次下载,缓存命中率不高,以及一些资源时间的浪费。而使用ur_hash,可以使得同一个url (也就是同一个资源请求)会到达同一台服务器,一旦缓存住了资源,再次收到请求,就可以从 缓存中读取。

 

四、平滑升级

不停用业务,使用平滑升级

需要有kill命令的支持

kill不仅仅用于杀死进程,还可以向软件进程发送信号

常用的-9和-15一个是强杀,一个是正常杀

格式:kill 信号 进程信号

-USR2 平滑启动一个进程,平滑升级

-WINCH 优雅关闭子进程

-QUIT 优雅关闭主进程

步骤:

1.不停止原有服务,但是必须使用原生方式启动或者更改nginx脚本(会创建一个新的进程)

2.重新编译nginx新版本

3.使用kill -USR@启动新版本

4.把旧的nginx子进程全部退出

5.优雅的退出nginx的老进程,系统里就只剩下新的nginx了

实施步骤:

1.查看nginx当前版本

  1. #查看nginx当版本
  2. [root@static-server ~]# /usr/local/nginx/sbin/nginx -v
  3. nginx version: nginx/1.26.1
2.上传新的新nginx版本并解压

平滑升级到1.27

服务持续期间对nginx进行升级

  1. # 上传新的新nginx版本并解压(1.27版本)
  2. [root@static-server ~]# wget https://nginx.org/download/nginx-1.27.0.tar.gz
  3. [root@static-server ~]#tar -zxvf nginx-1.27.0.tar.gz
3.对新版本进行编译安装,安装目录必须和旧版本一致
  1. # 对新版本进行编译安装,安装目录必须和旧版本一致
  2. [root@static-server ~]#cd nginx-1.27.0/
  3. [root@static-server ~]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-stream
  4. [root@static-server ~]#make && make install
4.对新版本进行编译安装,安装目录必须和旧版本一致
  1. # 重装新的版本以后,会出现新的启动工具
  2. [root@static-server nginx-1.27.0]# ls /usr/local/nginx/sbin
  3. nginx nginx.old

5.查看nginx的新旧版本

  1. #查看nginx的新旧版本
  2. [root@static-server nginx-1.27.0]# /usr/local/nginx/sbin/nginx -v
  3. nginx version: nginx/1.27.0
  4. [root@static-server nginx-1.27.0]#/usr/local/nginx/sbin/nginx.old -v
  5. nginx version: nginx/1.26.1
6.查看进程

[root@static-server nginx-1.27.0]# ps -aux|grep nginx

  1. # 升级过程中保持服务不中断
  2. [root@static-server nginx-1.27.0]# ps -aux|grep nginx
  3. root 4432 0.0 0.2 46172 2036 ? Ss 10:17 0:00 nginx: master process /usr/local/nginx/sbin/nginx
  4. nginx 4762 0.0 0.2 46600 2176 ? S 16:09 0:00 nginx: worker process
  5. root 7749 0.0 0.0 112808 680 pts/1 R+ 16:34 0:00 grep --color=auto nginx
7.使用老的nginx进程创建新的进程
  1. # 使用老的nginx进程创建新的进程
  2. # 格式:kill -USR2 老版本的pid编号
  3. [root@static-server nginx-1.27.0]# kill -USR2 4432
  4. [root@static-server nginx-1.27.0]# ps -aux|grep nginx
  5. root 4432 0.0 0.2 46172 2036 ? Ss 10:17 0:00 nginx: master process /usr/local/nginx/sbin/nginx
  6. nginx 4762 0.0 0.2 46600 2176 ? S 16:09 0:00 nginx: worker process
  7. root 7751 0.0 0.3 46128 3344 ? S 16:37 0:00 nginx: master process /usr/local/nginx/sbin/nginx
  8. nginx 7752 0.0 0.1 46584 1912 ? S 16:37 0:00 nginx: worker process
  9. root 7754 0.0 0.0 112824 980 pts/1 R+ 16:37 0:00 grep --color=auto nginx
  10. [root@static-server nginx-1.27.0]# ps -aux|grep nginx
  11. root 4432 0.0 0.2 46172 2036 ? Ss 10:17 0:00 nginx: master p
  12. nginx 4762 0.0 0.2 46600 2176 ? S 16:09 0:00 nginx: worker p
  13. root 7751 0.0 0.3 46128 3344 ? S 16:37 0:00 nginx: master p
  14. nginx 7752 0.0 0.1 46584 1912 ? S 16:37 0:00 nginx: worker p
  15. root 7756 0.0 0.0 112824 980 pts/1 R+ 16:39 0:00 grep --color=au
8.关闭老版本的所有子进程和老版本的主进程

  1. # 此时会出现两套master进程,这个时候处理客户请求的就是新nginx服务了
  2. # 关闭老版本的所有子进程
  3. # 关闭老版本的主进程
  4. [root@static-server nginx-1.27.0]# kill -WINCH 4762
  5. [root@static-server nginx-1.27.0]# ps -aux|grep nginx
  6. root 4432 0.0 0.2 46172 2036 ? Ss 10:17 0:00 nginx: master process /usr/local/nginx/sbin/nginx
  7. root 7751 0.0 0.3 46128 3344 ? S 16:37 0:00 nginx: master process /usr/local/nginx/sbin/nginx
  8. nginx 7752 0.0 0.1 46584 1912 ? S 16:37 0:00 nginx: worker process
  9. nginx 7758 0.0 0.1 46600 1928 ? S 16:40 0:00 nginx: worker process
  10. root 7760 0.0 0.0 112824 976 pts/1 R+ 16:40 0:00 grep --color=auto nginx
  11. [root@static-server nginx-1.27.0]# kill -QUIT 4432
  12. [root@static-server nginx-1.27.0]# ps -aux|grep nginx
  13. root 7751 0.0 0.3 46128 3344 ? S 16:37 0:00 nginx: master process /usr/local/nginx/sbin/nginx
  14. nginx 7752 0.0 0.1 46584 1912 ? S 16:37 0:00 nginx: worker process
  15. root 7762 0.0 0.0 112808 680 pts/1 R+ 16:41 0:00 grep --color=auto nginx

9.使用curl查看当前服务器的版本

  1. # 使用curl查看当前服务器的版本
  2. [root@static-server nginx-1.27.0]# curl -I localhost
  3. HTTP/1.1 200 OK
  4. Server: nginx/1.27.0
  5. Date: Tue, 30 Jul 2024 08:42:08 GMT
  6. Content-Type: text/html; charset=utf-8
  7. Content-Length: 16
  8. Connection: keep-alive
  9. Last-Modified: Tue, 30 Jul 2024 07:02:18 GMT
  10. ETag: "66a88ffa-10"
  11. Accept-Ranges: bytes

五、配置jdk环境

配置tomcat 10运行环境 tomcat9 可以在jdk8的环境运行

tomcat10必须在jdk17以上的版本运行

tomcat-22版本下载网址:https://download.oracle.com/java/22/latest/jdk-22_linux-x64_bin.tar.gz

步骤:

  1. #下载jdk包
  2. [root@static-server ~]# wget https://download.oracle.com/java/22/latest/jdk-22_linux-x64_bin.tar.gz
  3. --2024-07-30 17:28:10-- https://download.oracle.com/java/22/latest/jdk-22_linux-x64_bin.tar.gz
  4. 正在解析主机 download.oracle.com (download.oracle.com)... 184.28.252.147
  5. 正在连接 download.oracle.com (download.oracle.com)|184.28.252.147|:443... 已连接。
  6. 已发出 HTTP 请求,正在等待回应... 200 OK
  7. 长度:195275103 (186M) [application/x-gzip]
  8. 正在保存至: “jdk-22_linux-x64_bin.tar.gz”
  9. 100%[======================================>] 195,275,103 1.28MB/s 用时 5m 43s
  10. 2024-07-30 17:33:57 (556 KB/s) - 已保存 “jdk-22_linux-x64_bin.tar.gz” [195275103/195275103])
  11. [root@static-server ~]# ls
  12. anaconda-ks.cfg nginx-1.26.1 nginx-1.27.0 nginx.sh
  13. jdk-22_linux-x64_bin.tar.gz nginx-1.26.1.tar.gz nginx-1.27.0.tar.gz
  14. #解压jdk压缩包
  15. [root@static-server ~]# tar -xf jdk-22_linux-x64_bin.tar.gz
  16. [root@static-server ~]# ls
  17. anaconda-ks.cfg nginx-1.26.1 nginx-1.27.0.tar.gz
  18. jdk-22.0.2 nginx-1.26.1.tar.gz nginx.sh
  19. jdk-22_linux-x64_bin.tar.gz nginx-1.27.0
  20. #进入到jdk-22.0.2/目录下
  21. [root@static-server ~]# cd jdk-22.0.2/
  22. [root@static-server jdk-22.0.2]# ls
  23. bin conf include jmods legal lib LICENSE man README release
  24. #进入到bin目录下看是否能运行java
  25. [root@static-server jdk-22.0.2]# cd bin
  26. [root@static-server bin]# ./java
  27. 用法:java [options] <mainclass> [args...]
  28. (执行类)
  29. 或 java [options] -jar <jarfile> [args...]
  30. (执行 jar 文件)
  31. 或 java [options] -m <module>[/<mainclass>] [args...]
  32. java [options] --module <module>[/<mainclass>] [args...]
  33. (执行模块中的主类)
  34. 或 java [options] <sourcefile> [args]
  35. (执行源文件程序)
  36. 将主类、源文件、-jar <jarfile>、-m 或
  37. --module <module>/<mainclass> 后的参数作为参数
  38. 传递到主类。
  39. 其中,选项包括:
  40. -cp <目录和 zip/jar 文件的类搜索路径>
  41. -classpath <目录和 zip/jar 文件的类搜索路径>
  42. --class-path <目录和 zip/jar 文件的类搜索路径>
  43. 使用 : 分隔的, 用于搜索类文件的目录, JAR 档案
  44. 和 ZIP 档案列表。
  45. -p <模块路径>
  46. --module-path <模块路径>...
  47. : 分隔的元素列表,每个元素都是
  48. 模块或包含模块的目录的文件路径。每个模块都是
  49. 模块化 JAR 或展开的模块目录。
  50. --upgrade-module-path <模块路径>...
  51. : 分隔的元素列表,每个元素都是
  52. 模块或包含模块(用于替换运行时映像中的
  53. 可升级模块)的目录的文件路径。每个模块都是
  54. 模块化 JAR 或展开的模块目录。
  55. --add-modules <模块名称>[,<模块名称>...]
  56. 除了初始模块之外要解析的根模块。
  57. <模块名称> 还可以为 ALL-DEFAULT, ALL-SYSTEM,
  58. ALL-MODULE-PATH.
  59. --enable-native-access <module name>[,<module name>...]
  60. 允许模块中的代码访问 Java 运行时之外的代码和数据。
  61. <module name> 也可以是 ALL-UNNAMED,以指示类路径上的代码。
  62. --list-modules
  63. 列出可观察模块并退出
  64. -d <module name>
  65. --describe-module <模块名称>
  66. 描述模块并退出
  67. --dry-run 创建 VM 并加载主类, 但不执行 main 方法。
  68. 此 --dry-run 选项对于验证诸如
  69. 模块系统配置这样的命令行选项可能非常有用。
  70. --validate-modules
  71. 验证所有模块并退出
  72. --validate-modules 选项对于查找
  73. 模块路径中模块的冲突及其他错误可能非常有用。
  74. -D<名称>=<>
  75. 设置系统属性
  76. -verbose:[class|module|gc|jni]
  77. 为给定子系统启用详细输出
  78. -version 将产品版本输出到错误流并退出
  79. --version 将产品版本输出到输出流并退出
  80. -showversion 将产品版本输出到错误流并继续
  81. --show-version
  82. 将产品版本输出到输出流并继续
  83. --show-module-resolution
  84. 在启动过程中显示模块解析输出
  85. -? -h -help
  86. 将此帮助消息输出到错误流
  87. --help 将此帮助消息输出到输出流
  88. -X 将额外选项的帮助输出到错误流
  89. --help-extra 将额外选项的帮助输出到输出流
  90. -ea[:<程序包名称>...|:<类名>]
  91. -enableassertions[:<程序包名称>...|:<类名>]
  92. 按指定的粒度启用断言
  93. -da[:<程序包名称>...|:<类名>]
  94. -disableassertions[:<程序包名称>...|:<类名>]
  95. 按指定的粒度禁用断言
  96. -esa | -enablesystemassertions
  97. 启用系统断言
  98. -dsa | -disablesystemassertions
  99. 禁用系统断言
  100. -agentlib:<库名>[=<选项>]
  101. 加载本机代理库 <库名>, 例如 -agentlib:jdwp
  102. 另请参阅 -agentlib:jdwp=help
  103. -agentpath:<路径名>[=<选项>]
  104. 按完整路径名加载本机代理库
  105. -javaagent:<jar 路径>[=<选项>]
  106. 加载 Java 编程语言代理, 请参阅 java.lang.instrument
  107. -splash:<图像路径>
  108. 使用指定的图像显示启动屏幕
  109. 自动支持和使用 HiDPI 缩放图像
  110. (如果可用)。应始终将未缩放的图像文件名 (例如, image.ext)
  111. 作为参数传递给 -splash 选项。
  112. 将自动选取提供的最合适的缩放
  113. 图像。
  114. 有关详细信息, 请参阅 SplashScreen API 文档
  115. @argument 文件
  116. 一个或多个包含选项的参数文件
  117. --disable-@files
  118. 阻止进一步扩展参数文件
  119. --enable-preview
  120. 允许类依赖于此发行版的预览功能
  121. 要为长选项指定参数, 可以使用 --<名称>=<>
  122. --<名称> <>
  123. #对文件进行备份
  124. [root@static-server bin]# cd
  125. [root@static-server ~]# mv jdk-22.0.2/ /usr/local/jdk22/
  126. [root@static-server ~]# ls /usr/local/jdk22/
  127. bin include jmods lib man release
  128. conf jdk-22.0.2 legal LICENSE README
  129. [root@static-server ~]# ls
  130. anaconda-ks.cfg nginx-1.26.1 nginx-1.27.0 nginx.sh
  131. jdk-22_linux-x64_bin.tar.gz nginx-1.26.1.tar.gz nginx-1.27.0.tar.gz
  132. [root@static-server ~]# cd /usr/local/jdk22/
  133. [root@static-server jdk22]# ls
  134. bin include jmods lib man release
  135. conf jdk-22.0.2 legal LICENSE README
  136. [root@static-server jdk22]# pwd
  137. /usr/local/jdk22
  138. [root@static-server jdk22]# sed -n '$p' /etc/profile
  139. PATH=$JAVA_HOME/bin:$PATH
  140. [root@static-server jdk22]# sed -i '$aexport JAVA_HOME=/usr/local/jdk22/' /etc/profile
  141. [root@static-server jdk22]# source /etc/profile
  142. [root@static-server jdk22]# $JAVA_HOME
  143. -bash: /usr/local/jdk22/: 是一个目录
  144. [root@static-server jdk22]# java
  145. -bash: java: 未找到命令
  146. [root@static-server jdk22]# sed -i '$aPATH=$JAVA_HOME/bin:$PATH' /etc/profile
  147. [root@static-server jdk22]# sed -n '$p' /etc/profile
  148. PATH=$JAVA_HOME/bin:$PATH
  149. [root@static-server jdk22]# source /etc/profile
  150. [root@static-server jdk22]# java
  151. 用法:java [options] <mainclass> [args...]
  152. (执行类)
  153. 或 java [options] -jar <jarfile> [args...]
  154. (执行 jar 文件)
  155. 或 java [options] -m <module>[/<mainclass>] [args...]
  156. java [options] --module <module>[/<mainclass>] [args...]
  157. (执行模块中的主类)
  158. 或 java [options] <sourcefile> [args]
  159. (执行源文件程序)
  160. 将主类、源文件、-jar <jarfile>、-m 或
  161. --module <module>/<mainclass> 后的参数作为参数
  162. 传递到主类。
  163. 其中,选项包括:
  164. -cp <目录和 zip/jar 文件的类搜索路径>
  165. -classpath <目录和 zip/jar 文件的类搜索路径>
  166. --class-path <目录和 zip/jar 文件的类搜索路径>
  167. 使用 : 分隔的, 用于搜索类文件的目录, JAR 档案
  168. 和 ZIP 档案列表。
  169. -p <模块路径>
  170. --module-path <模块路径>...
  171. : 分隔的元素列表,每个元素都是
  172. 模块或包含模块的目录的文件路径。每个模块都是
  173. 模块化 JAR 或展开的模块目录。
  174. --upgrade-module-path <模块路径>...
  175. : 分隔的元素列表,每个元素都是
  176. 模块或包含模块(用于替换运行时映像中的
  177. 可升级模块)的目录的文件路径。每个模块都是
  178. 模块化 JAR 或展开的模块目录。
  179. --add-modules <模块名称>[,<模块名称>...]
  180. 除了初始模块之外要解析的根模块。
  181. <模块名称> 还可以为 ALL-DEFAULT, ALL-SYSTEM,
  182. ALL-MODULE-PATH.
  183. --enable-native-access <module name>[,<module name>...]
  184. 允许模块中的代码访问 Java 运行时之外的代码和数据。
  185. <module name> 也可以是 ALL-UNNAMED,以指示类路径上的代码。
  186. --list-modules
  187. 列出可观察模块并退出
  188. -d <module name>
  189. --describe-module <模块名称>
  190. 描述模块并退出
  191. --dry-run 创建 VM 并加载主类, 但不执行 main 方法。
  192. 此 --dry-run 选项对于验证诸如
  193. 模块系统配置这样的命令行选项可能非常有用。
  194. --validate-modules
  195. 验证所有模块并退出
  196. --validate-modules 选项对于查找
  197. 模块路径中模块的冲突及其他错误可能非常有用。
  198. -D<名称>=<>
  199. 设置系统属性
  200. -verbose:[class|module|gc|jni]
  201. 为给定子系统启用详细输出
  202. -version 将产品版本输出到错误流并退出
  203. --version 将产品版本输出到输出流并退出
  204. -showversion 将产品版本输出到错误流并继续
  205. --show-version
  206. 将产品版本输出到输出流并继续
  207. --show-module-resolution
  208. 在启动过程中显示模块解析输出
  209. -? -h -help
  210. 将此帮助消息输出到错误流
  211. --help 将此帮助消息输出到输出流
  212. -X 将额外选项的帮助输出到错误流
  213. --help-extra 将额外选项的帮助输出到输出流
  214. -ea[:<程序包名称>...|:<类名>]
  215. -enableassertions[:<程序包名称>...|:<类名>]
  216. 按指定的粒度启用断言
  217. -da[:<程序包名称>...|:<类名>]
  218. -disableassertions[:<程序包名称>...|:<类名>]
  219. 按指定的粒度禁用断言
  220. -esa | -enablesystemassertions
  221. 启用系统断言
  222. -dsa | -disablesystemassertions
  223. 禁用系统断言
  224. -agentlib:<库名>[=<选项>]
  225. 加载本机代理库 <库名>, 例如 -agentlib:jdwp
  226. 另请参阅 -agentlib:jdwp=help
  227. -agentpath:<路径名>[=<选项>]
  228. 按完整路径名加载本机代理库
  229. -javaagent:<jar 路径>[=<选项>]
  230. 加载 Java 编程语言代理, 请参阅 java.lang.instrument
  231. -splash:<图像路径>
  232. 使用指定的图像显示启动屏幕
  233. 自动支持和使用 HiDPI 缩放图像
  234. (如果可用)。应始终将未缩放的图像文件名 (例如, image.ext)
  235. 作为参数传递给 -splash 选项。
  236. 将自动选取提供的最合适的缩放
  237. 图像。
  238. 有关详细信息, 请参阅 SplashScreen API 文档
  239. @argument 文件
  240. 一个或多个包含选项的参数文件
  241. --disable-@files
  242. 阻止进一步扩展参数文件
  243. --enable-preview
  244. 允许类依赖于此发行版的预览功能
  245. 要为长选项指定参数, 可以使用 --<名称>=<>
  246. --<名称> <>
  247. #查看java版本
  248. [root@static-server jdk22]# java -version
  249. java version "22.0.2" 2024-07-16
  250. Java(TM) SE Runtime Environment (build 22.0.2+9-70)
  251. Java HotSpot(TM) 64-Bit Server VM (build 22.0.2+9-70, mixed mode, sharing)
  252. [root@static-server jdk22]#

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/912605
推荐阅读
相关标签
  

闽ICP备14008679号