草稿

在 CentOS 上安装 nodejs。

メモ書き
ホームページから取ってくるのではなく、コマンドラインからインストールする。
グーグル検索するときは 会話する感じでキーワードを適当に打ち込むのが 情報に当てやすい。
How to install a nodejs on CentOS?
とか。
Web記事も英語で会話してたりするので。日本語は会話表現がいろいろあって 情報に当てづらい気がする。
キーワードだけを打ち込むと キーワード狙い撃ちのアフィリエイト記事に当たりやすい気がする。
http-server -p 80

当输入”and”命令时,Web服务器会在80端口启动。然而,由于这样做会导致nodejs不折不扣地努力,所以需要在其前面加上nginx作为中间服务器。

これもやはり
How to install nginx on CentOS?

你们可能不知道过去的PC情况,但对于老人来说最近的PC情况是通过在本地电脑上创建存储库进行分布式处理计算,我会想到“哇”的。过去只需要下载和安装。

某篇旧的文章

先暂且以我的电脑为例,采用最高权限进行操作。

sudo su -
cd /
ls
cd etc
ls
cd yum.repos.d
ls
vi nginx.repo

已经写好了。

:q!
ls -l /etc/yum.repos.d/

cd /
yum info nginx

还是觉得乱七八糟的,感到不愉快。我们回家吧。

exit
how to use systemctl?
systemctl list-unit-files --type=service

nginx 没有运行。

How do you link nginx and nodejs?
sudo su -
cd etc
cd nginx
ls
vi nginx.conf
events {
    worker_rlimit_nofile 10240;
    worker_connections  1024;
}

nginx和nodejs的协作不太顺利。

不使用nginx。

http-server -p 80

不通。

exit
pm2 start
how to start server nodejs by pm2?

我找不到Node.js的存储库。它去哪了?是否需要重新建立?

mkdir xxx
cd xxx
how to install nodejs on centos?
node -v
v11.5.0

进来了。

[Node.js] 构建Web服务器+应用速度太快了 〜 JS的奥秘之道#004

麻烦。装个WinSCP。

WinSCP-获胜的SCP

我决定在Windows上编写JavaScript并将其发送到CentOS。

var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello Kifuwarabe!\n');
}).listen(80, 'http://192.168.xx.xx');

不动。

console.log("Hello js!");
node hello.js

动起来。

var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello Kifuwarabe!\n');
}).listen(80, '192.168.xx.xx');
sudo node start-server.js

一旦权限设定好后就可以运行了。然而,只能在家中的局域网内看到。

在谷歌浏览器中按 [Ctrl]+[F5] 进行超级刷新。仍然看不到。
也许需要一个发夹路由器。太麻烦了。尝试使用IP地址访问。可以看到。

直接从终端退出会导致Web服务器关闭。这样的东西不能称之为Web服务器。

pm2 start start-server.js

不可能。

pm2 stop start-server
npm install express
npm install express-generator
./node_modules/.bin/express
ls
sudo yum install tree
y
tree -I node_modules
.
├── app.js
├── bin
│   └── www
├── hello.js
├── package-lock.json
├── package.json
├── public
│   ├── images
│   ├── javascripts
│   └── stylesheets
│       └── style.css
├── routes
│   ├── index.js
│   └── users.js
├── start-server.js
└── views
    ├── error.jade
    ├── index.jade
    └── layout.jade

www在bin目录中。
不看说明就开始打字。

pm2 start bin/www

不行。

pm2 stop www

npm install
npm audit fix
npm start

这也是不可能的。

curl http://localhost:3000
curl: (7) Failed connect to localhost:3000; 接続を拒否されました

curl http://127.0.0.1:3000
curl: (7) Failed connect to 127.0.0.1:3000; 接続を拒否されました
pm2 start bin/www
curl http://127.0.0.1:3000

可以了。
但這只能在本地主機上運行,無法從外部訪問。Nginx未正常工作。

在局域网的内部看不见。只能在CentOS中看见。

将Nginx反向代理至Node.js。

我不明白。我要看引用的文章。

将Nginx配置为反向代理服务器。

vi /etc/nginx/nginx.conf

写的内容有很大的差异。

vi /etc/nginx/conf.d/default.conf

这边吧。我们来看一下设置……。

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

在查看 usr 目录。 默认的吗?
指定要动态生成的 express 是什么?

完全不明白。我试着添加一些内容。

sudo vi default.conf
server {
    location @node {
        proxy_pass http://node;
        proxy_redirect off;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        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_cache_bypass $http_upgrade;
    }
}
pm2 restart www

curl http://localhost
curl: (7) Failed connect to localhost:80; 接続を拒否されました

据我所知,阅读的文章和操作系统好像不一样。

systemctl restart nginx

不可能的。读错了一篇文章。

在CentOS上搭建NodeJS+nginx环境。

sudo /etc/init.d/nginx restart
sudo: /etc/init.d/nginx: コマンドが見つかりません
sudo nginx -s reload
nginx: [emerg] "worker_rlimit_nofile" directive is not allowed here in /etc/nginx/nginx.conf:10

按照示例程序写的话会出现错误。

启动Nginx,重新启动

sudo nginx -s reload
nginx: [error] open() "/var/run/nginx.pid" failed (2: No such file or directory)

其实根本没开机。

启动 Nginx

systemctl start nginx

curl http://localhost:80

在本地可以看到。

500 Internal Server Error
nginx/1.14.2

從外部開始接收到nginx的回應了。
是不是只要給HTTP加上標頭就可以了?

http {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-NginX-Proxy true;
    proxy_redirect off;
}
400 Bad Request
Request Header Or Cookie Too Large
nginx/1.14.2

嗯,因为加了标题。

如果nginx返回错误,是不是可以查看nginx的日志?

cd /var/log/nginx/
ls
vi error.log
認可がありません
sudo vi error.log

2019/03/10 02:27:50 [alert] 53970#53970: *5202 socket() failed (24: Too many open files) while connecting to upstream, client: 127.0.0.1, server: xxxxxxxxxxxxx, request: "GET / HTTP/1.0", upstream: "http://127.0.0.1:80/", host: "backend_node"
2019/03/10 02:27:50 [crit] 53970#53970: *5202 open() "/usr/share/nginx/html/50x.html" failed (24: Too many open files), client: 127.0.0.1, server: xxxxxxxxxxxxxxx, request: "GET / HTTP/1.0", upstream: "http://127.0.0.1:80/", host: "backend_node"

是否将数据传输到节点了吗?

:q
pm2 list

Express正在运行。

sudo vi /etc/nginx/conf.d/default.conf
upstream backend_node {
    ip_hash;
    # Nodejs express port.
    server 127.0.0.1:3000;
}

Express 框架的端口是 3000 是吗。

systemctl restart nginx
An error occurred.
Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.

错误页面不停地变换。
总之,感觉好像是在倒退。

cd ~
curl http://localhost:80

在enginx的错误页面上,

curl http://localhost:3000

欢迎来到Express界面,还没有进行协同合作。
没有任务可做。

sudo npm install -g npm-check-updates
ncu
ncu -u
npm install
npm audit fix

嗯。

修改 default.conf。

Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required.

For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.

Thank you for using nginx.

回到默认画面。

我要改变这篇文章。

将Nginx作为Node.js的反向代理

我要改变文章。

在Vagrant环境中安装CentOS 7.1上的Nginx+NodeJS(nvm)。

sudo nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

停止 nginx。

systemctl stop nginx

sudo http-server -p 80

相连。

sudo node start-server.js

这也是相互联系的。

 curl http://localhost:3000

联系起来。

curl http://localhost:80
curl: (7) Failed connect to localhost:80; 接続を拒否されました

curl http://localhost:8080
curl: (7) Failed connect to localhost:8080; 接続を拒否されました

然后nginx似乎只是没有工作……

curl http://localhost/page.html
<!DOCTYPE html>
<html>
<head>
<title>Error</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>An error occurred.</h1>
<p>Sorry, the page you are looking for is currently unavailable.<br/>
Please try again later.</p>
<p>If you are the system administrator of this resource then you should check
the <a href="http://nginx.org/r/error_log">error log</a> for details.</p>
<p><em>Faithfully yours, nginx.</em></p>
</body>
</html>

即使指定了不存在的页面,nginx也会做出响应。

改变文章。

71号帖子的博客

改变文章。

nginx系列第4篇:nginx配置指南,第2部分 – 虚拟服务器的配置

改变报道。

CentOS7中的nginx配置。

#状態確認
systemctl status nginx


● nginx.service - nginx - high performance web server
   Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled)
   Active: active (running) since 日 2019-03-10 04:10:18 JST; 3min 1s ago
     Docs: http://nginx.org/en/docs/
  Process: 55904 ExecStop=/bin/kill -s TERM $MAINPID (code=exited, status=0/SUCCESS)
  Process: 55907 ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf (code=exited, status=0/SUCCESS)
 Main PID: 55908 (nginx)
   CGroup: /system.slice/nginx.service
           ├─55908 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx....
           ├─55909 nginx: worker process
           ├─55910 nginx: worker process
           ├─55911 nginx: worker process
           ├─55912 nginx: worker process
           ├─55913 nginx: worker process
           ├─55914 nginx: worker process
           ├─55915 nginx: worker process
           ├─55916 nginx: worker process
           ├─55917 nginx: worker process
           ├─55918 nginx: worker process
           ├─55919 nginx: worker process
           └─55920 nginx: worker process

 3月 10 04:10:18 localhost.localdomain systemd[1]: Starting nginx - high per...
 3月 10 04:10:18 localhost.localdomain systemd[1]: Started nginx - high perf...
Hint: Some lines were ellipsized, use -l to show in full.

改变文章。

如果pm2正在运行,则将nginx的proxy_pass设为。

改变文章内容。

使用React+Next.js+PM2+Nginx来部署应用程序。

node -v
v11.5.0
npm -v
6.4.1

我稍微理解了道理。(虽然这些文章都没有解释道理……☆)

/etc/nginx/conf.d/default.conf
/etc/nginx/conf.d/xxxxx.conf

可以创建多个配置文件,并且可以根据域名等将 server {} 目录写入到本地主机等不同的位置。
如果配置重复,则可以通过 sudo nginx -t 指令查看错误行。

试着改变一下事态。

直到搭建CentOS上的node.js+Express环境并进行测试

试着改变一下态度。

将节点daemonize并将nginx作为反向代理与其连接

sudo nginx -t
nginx: [emerg] "proxy_redirect" directive is not allowed here in /etc/nginx/conf.d/ip.conf:25
nginx: configuration file /etc/nginx/nginx.conf test failed

有些地方无法编写代理重定向。

试着更改文章。

在开发服务器上,至少需要做这一个nginx的设置

grep processor /proc/cpuinfo | wc -l
4

ulimit -n
1024

改变文章。

[nginx] 只需要5分钟就足够了,给我跪下!!

改变文章。

使用Node.js + Express + forever的组合,并通过nginx进行传输。

proxy_redirect                          off;

我应该会写,但是出现 “proxy_redirect” 指令不允许 的错误可能是原因之一。

改变新闻报道。

[随笔] 对于 nginx 的 proxy_set_header 的使用方式

没有变化。

改变文章。

nginx: Linux软件包

sudo yum install yum-utils

パッケージ yum-utils-1.1.31-50.el7.noarch はインストール済みか最新バージョンです
何もしません
vi /etc/yum.repos.d/nginx.repo

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1

内容不同。

[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key

[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key

改写。

sudo yum-config-manager --enable nginx-mainline
sudo yum install nginx

Nginx的版本将发生变化。

改变文章。

开始、停止和重新加载配置

只需要执行一次启动nginx,然后使用nginx的四个命令。

nginx -s stop
nginx -s quit
nginx -s reload
nginx -s reopen

没有初次启动的说明,但可以使用 systemctl start nginx 命令来启动。

nginx -s quit
nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)
2019/03/10 06:42:08 [warn] 57176#57176: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /etc/nginx/nginx.conf:2
2019/03/10 06:42:08 [notice] 57176#57176: signal process started
2019/03/10 06:42:08 [alert] 57176#57176: kill(57150, 3) failed (1: Operation not permitted)
sudo nginx -s reload

嗯,必须有权限吗?

ps -ax | grep nginx

 57150 ?        S      0:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
 57180 ?        S      0:00 nginx: worker process
 57181 ?        S      0:00 nginx: worker process
 57182 ?        S      0:00 nginx: worker process
 57183 ?        S      0:00 nginx: worker process
 57185 pts/1    S+     0:00 grep --color=auto nginx

有一个什么工作都不做的nginx存在。

cd /usr/share/nginx/html
ls -l
合計 12
-rw-r--r--. 1 root root 494  2月 27 00:47 50x.html
-rw-r--r--. 1 root root 612  2月 27 00:47 index.html

改变事务。

nginx的所有者、组和权限

那么,让我们试试看是否可以设置能够查看本地文件的配置。

    server {
        location / {
            root /home/muzudho/public-html;
        }
    }
nginx -s reload
nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)
2019/03/10 12:28:19 [warn] 58407#58407: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /etc/nginx/nginx.conf:2
2019/03/10 12:28:19 [notice] 58407#58407: signal process started
2019/03/10 12:28:19 [alert] 58407#58407: kill(57150, 1) failed (1: Operation not permitted)

不要指定用户主页,选择其他目录来指定。

    server {
        location / {
            root /usr/share/nginx/html;
        }
    }
nginx -s reload
nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)
2019/03/10 12:32:43 [warn] 58428#58428: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /etc/nginx/nginx.conf:2
2019/03/10 12:32:43 [notice] 58428#58428: signal process started
2019/03/10 12:32:43 [alert] 58428#58428: kill(57150, 1) failed (1: Operation not permitted)

如果不能在/usr/share里找的话,那去哪里能找到呢?

sudo nginx -s reload

可以这样做。这个日志是否具有根权限?

sudo nginx -s stop

强行停止。

systemctl start nginx

请自行启动。

nginx -t
nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)
2019/03/10 12:40:25 [warn] 58508#58508: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /etc/nginx/nginx.conf:2
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
2019/03/10 12:40:25 [emerg] 58508#58508: open() "/var/run/nginx.pid" failed (13: Permission denied)
nginx: configuration file /etc/nginx/nginx.conf test failed

无法写入错误日志的权限是什么?

试着改变事物。

在nginx.conf的配置中出现了错误。

听说在根目录下启动nginx是常见的做法。

sudo su -
systemctl start nginx

暂时之后

    server {
        location / {
            root /home/muzudho/public-html;
        }
    }

是禁止的。

    server {
        location / {
            root /usr/share/nginx/html;
        }
    }

可以的。

顺便说一下,HTML页面出现了乱码。

    server {
        charset utf-8;
        location / {
            root /usr/share/nginx/html;
        }
    }

添加字符集utf-8,效果如何?

使用 Google Chrome 浏览器,按下 [Ctrl]+[F5] 键进行超级刷新。
正常情况下,Nginx 可以显示静态页面,这是 Nginx 的功能。不将访问传递给后端的 Node 是异常的。

502 Bad Gateway
nginx/1.15.9

我忘记写上游。

        if ( !-f $request_filename ) {
            proxy_pass http://backend_node;
            break;
        }

我发现在补充上述4行后会导致500系列错误。

upstream backend_node {
    ip_hash;
    # Nodejs express port.
    server 127.0.0.1:3000;
}

然后,这应该是不起作用的。

# curl http://127.0.0.1:3000
<!DOCTYPE html><html><head><title>Express</title><link rel="stylesheet" href="/stylesheets/style.css"></head><body><h1>Express</h1><p>Welcome to Express</p></body></html>

它们分别移动。

# curl http://127.0.0.1:3000/users
respond with a resource

# curl http://127.0.0.1:80/users
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>

没有传到后端。

暂时尝试以超级用户身份重新启动节点。

pm2 list

没有任何东西被启动。

exit
pm2 list

我启动了许多东西。

pm2 stop www
pm2 delete start-server
pm2 delete www

把一个节点放在/home目录下是否没有意义。

mv /home/muzudho/html /usr/share/html

在 /usr/share/ 的目录下放置 Web 应用程序可以吗?

mkdir /usr/local/webapps
mv /usr/share/html /usr/local/webapps/xxx

由于不喜欢,我决定移动。

cd /usr/local/webapps/xxx
sudo su -
pm2 start www
# curl http://localhost:80/users
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>

# curl http://localhost:3000/users
respond with a resource

现在为什么会这样呢。

vi /var/log/nginx/error.log

没有情报。

cd /var/log/nginx
vi access.log

无访问记录。

由于Nginx不起到反向代理的作用,所以没有工作。

    location / {
        proxy_pass http://localhost:3000;

你认为丢给别人怎么样?

curl http://localhost:3000/users
curl http://localhost:80/users

500错误。

代理服务器未起作用。搜索一下。

proxy_pass does not work between nginx and node.

NodeJS和Nginx代理无法正常工作。

如何在Ubuntu 14.04上使用Let’s Encrypt保护Nginx

# nano /etc/nginx/sites-available/default

没有这样的目录。

改变文章。

将NGINX配置为用于Node.js应用程序的反向代理。

搜索一下。

proxy_pass does not work between nginx and node on centos.

如何在 CentOS 7 上为生产环境设置 Node.js 应用程序

sudo systemctl restart nginx
sudo systemctl enable nginx

提供了一种不以root用户身份启动nginx的方法。

sudo yum install epel-release

这已经安装好了。

改变新闻稿。

使用CentOS 7进行初始服务器设置

以SSH协议使用root用户登录。

增加账户的数量。

adduser demo

在那之前,查看用户列表。

cat /etc/passwd

然后,已经创建了一个针对nginx的帐户。

gpasswd -a demo wheel

查看用户组的列表。

cat /etc/group

暂时将其添加到轮组内。

ssh-keygen

随意输入文件名和密码。

然后,在本地用户的主目录下生成了一个名为<文件名>和<文件名>.pub的文件。这应该是私钥和公钥。

ssh-copy-id demo@SERVER_IP_ADDRESS

/bin/ssh-copy-id: ERROR: failed to open ID file '/root/.pub': そのようなファイルやディレクトリはありません
        (to install the contents of '/root/.pub' anyway, look at the -f option)

那么安全性就通过密码来保障吧。

由于本地主机的端口3000和80没有连接起来,而且它是一个私有IP地址,因此无法从外部访问。DNS也无法连接,两个都没有连接成功。

ipconfig
Windows IP 構成


イーサネット アダプター イーサネット:

   接続固有の DNS サフィックス . . . . .: xxxxxxxxxxxxxxxx
   IPv6 アドレス . . . . . . . . . . . .: xxxxxxxxxxxxxxxxxxxx
   一時 IPv6 アドレス. . . . . . . . . .: xxxxxxxxxxxxxxxxxxxx
   リンクローカル IPv6 アドレス. . . . .: xxxxxxxxxxxxxxxxxxxxxxx
   IPv4 アドレス . . . . . . . . . . . .: xxxxxxxxxxxxxxxxxxx
   サブネット マスク . . . . . . . . . .: xxxxxxxxxxxxxxxxxxxx
   デフォルト ゲートウェイ . . . . . . .: xxxxxxxxxxxxxxxxxxx
                                          xxxxxxxxxxxxxxxxxx

这个默认网关连接到Windows 10,并且它指向CentOS。我原本以为这将整合CentOS内部nginx接收的路由和访问CentOS私有IP地址的另一条路由,但是由于麻烦,我决定将从外部进入的部分放在后面。

当您访问私有IP地址,路由器的登录页面会显示出来。
当您访问CentOS的私有IP地址,会出现500错误。
当您访问购买的域名,会超时。

因为现在没什么事情可做,我就试试用Team Viewer登录Windows 10吧,连接到我的合作伙伴。

由于路由器已经占用了IP地址1,而且路由器会自动分配私有IP地址,所以我没有什么可做的。

只是在Hyper-V管理器中运行CentOS,并不需要Windows10。就像打开或关闭一个空冰箱一样,进来也什么都没有。

問題只存在于CentOS内部。

改变文章。

将Nginx作为Node.js的反向代理使用。

为什么 Nginx 会出现500错误,却没有打印出错误日志?

2019/03/10 03:23:43 [crit] 55248#55248: *3 connect() to 127.0.0.1:3000 failed (13: Permission denied) while connecting to upstream, client: 127.0.0.1, server: *********, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:3000/", host: "localhost"

并不是说调整了协调世界时,而是在午夜翻看错误日志时发现中断了。

127.0.0.1 - - [10/Mar/2019:03:24:05 +0900] "GET / HTTP/1.1" 502 537 "-" "curl/7.29.0" "-"
127.0.0.1 - - [10/Mar/2019:03:24:11 +0900] "GET /index.html HTTP/1.1" 200 653 "-" "curl/7.29.0" "-"
127.0.0.1 - - [10/Mar/2019:03:25:38 +0900] "GET / HTTP/1.1" 502 537 "-" "curl/7.29.0" "-"
127.0.0.1 - - [10/Mar/2019:03:27:29 +0900] "GET /users HTTP/1.1" 502 537 "-" "curl/7.29.0" "-"
127.0.0.1 - - [10/Mar/2019:03:37:05 +0900] "GET / HTTP/1.1" 502 537 "-" "curl/7.29.0" "-"

由于访问日志也很旧,所以停止了。日志输出到哪里了?

nginx: [emerg] "proxy_redirect" directive is not allowed here in /etc/nginx/conf.d/default.conf:31
nginx: configuration file /etc/nginx/nginx.conf test failed

我也不明白。比如说在 location 目录下是可以写的,但在 if 代码块中就不能写。

C:\Users\むずでょ>telnet
'telnet' は、内部コマンドまたは外部コマンド、
操作可能なプログラムまたはバッチ ファイルとして認識されていません。

TELNET太过时了,我不懂。使用PuTTY进行SSH连接不行吗?

使用Windows Telnet客户端的方法(1/2)

ホストを解決しています
接続中

从外面也依旧看不见。

广告
将在 10 秒后关闭
bannerAds