繁体   English   中英

在php .sh文件中执行

[英]Execute in php .sh file

我试图在php中执行一个.sh文件

该文件位于/home/update.sh

#!/bin/bash

/usr/bin/rsync -zaP '-e ssh -i /home/id_rsa_ws -v -p 6633' --del /var/www root@xxx.xxx.xxx:/var/

执行此文件运行良好:

cd /home/; ./update.sh;

问题是:我需要在php中执行此文件

我已经在php中尝试过的内容:

1-什么也没发生。

    $contents = file_get_contents('/home/distribute.sh');
    echo '<pre>';
    echo shell_exec($contents);

我也试过了:

2。

    exec("cd /home/;./update.sh 2>&1",$o,$return);
    print_r($o);
    print_r($return);

    Array
    (
            [0] => OpenSSH_7.6p1 Ubuntu-4ubuntu0.3, OpenSSL 1.0.2n  7 Dec 2017
            [1] => debug1: Reading configuration data /etc/ssh/ssh_config
            [2] => debug1: /etc/ssh/ssh_config line 19: Applying options for *
            [3] => debug1: Connecting to xxx.xxx.xxx.xxx [xxx.xxx.xxx.xxx] port 6633.
            [4] => debug1: Connection established.
            [5] => debug1: identity file /var/www/.ssh/id_rsa_ws type 0
            [6] => debug1: key_load_public: No such file or directory
            [7] => debug1: identity file /var/www/.ssh/id_rsa_ws-cert type -1
            [8] => debug1: Local version string SSH-2.0-OpenSSH_7.6p1 Ubuntu-4ubuntu0.3
            [9] => debug1: Remote protocol version 2.0, remote software version OpenSSH_7.6p1 Ubuntu-4ubuntu0.3
            [10] => debug1: match: OpenSSH_7.6p1 Ubuntu-4ubuntu0.3 pat OpenSSH* compat 0x04000000
            [11] => debug1: Authenticating to xxx.xxx.xxx.xxx:6633 as 'root'
            [12] => debug1: SSH2_MSG_KEXINIT sent
            [13] => debug1: SSH2_MSG_KEXINIT received
            [14] => debug1: kex: algorithm: curve25519-sha256
            [15] => debug1: kex: host key algorithm: ecdsa-sha2-nistp256
            [16] => debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC:  compression: none
            [17] => debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC:  compression: none
            [18] => debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
            [19] => debug1: Server host key: ecdsa-sha2-nistp256 SHA256:VYnLDKxjyAr9Peqx/Ef03k+99009S6y3OZvRL5euGE8
            [20] => debug1: checking without port identifier
            [21] => debug1: read_passphrase: can't open /dev/tty: No such device or address
            [22] => Host key verification failed.
            [23] => rsync: connection unexpectedly closed (0 bytes received so far) [sender]
            [24] => rsync error: unexplained error (code 255) at io.c(235) [sender=3.1.2]
    )
    255

这是linux中的文件:

    cd /home/
    total 12K
    -rwxrwxrwx 1 www-data root  111 Jul  7 12:20 update.sh
    -rw------- 1 www-data root 1.7K Jul  6 02:26 id_rsa_ws
    -rw------- 1 www-data root  393 Jul  6 02:26 id_rsa_ws.pub

谢谢大家

非常感谢[ https://stackoverflow.com/users/1491895/barmar]

Barmar建议之后,我更改了以下内容:

答:我将ssh密钥移至/var/www/.ssh

B.我更改了.sh文件中的命令,我添加了两个参数

    -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null


    /usr/bin/rsync -zaP '-e ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i /var/www/.ssh/id_rsa_ws -v -p 6633' --del /var/www root@xxx.xxx.xxx.xxx:/var/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM