2023年7月26日发(作者:)
nexus服务启动关闭命令nexus服务启动/关闭命令history | grep nexus # 查看服务器上⾯的历史请求命令ps -ef | grep nexus 查看进程及⽬录find / -name 'nexus' # 查找find / -name 'nexus-2.13.0-01' -type d查找⽬录:find /(查找范围) -name '查找关键字' -type d 带*模糊匹配查找⽂件:find /(查找范围) -name 查找关键字 -printfind / -name 'nexus*2.13*' -type d# find / -name 'nexus-2.13*' -type d/opt/nexus-2.13.0-01find / -name 'nexus-2.13*' -type d# find / -name 'nexus-2.13.0-01' -type d/opt/nexus-2.13.0-01find / -name 'nexus*' -type dwhich nexus # which指令会在环境变量$PATH设置的⽬录⾥查找符合条件的⽂件。[root@test01 bin]# ./nexusUsage: ./nexus { console | start | stop | restart | status | dump }启动nexus:#./nexus start# nexus-2.13.0-01/bin/nexus start关闭nexus:#./nexus stop# nexus-2.13.0-01/bin/nexus stop
发布者:admin,转转请注明出处:http://www.yc00.com/news/1690362893a338043.html
评论列表(0条)