如何使用SSH安装位nami栈(.run文件)

时间:2022-10-05 17:02:09

I am trying to install .run files which I downloaded from https://bitnami.com/redirect/to/39461/bitnami-wordpress-3.9.2-0-linux-installer.run

我正在安装。run文件,我从https://bitnami.com/redirect/to/39461/bitnami-wordpress-3.9.2- linux-installer.run下载

But when I try to run it nothing happens (I have used text mode too)

但是当我试着运行它时什么也没有发生(我也使用了文本模式)

How to install .run files in Linux by using SSH?

如何使用SSH在Linux中安装.run文件?

1 个解决方案

#1


3  

  1. Check you are using the correct binary (32bit or 64bit). You can use "uname -a" to see your current Linux architecture.

    检查您是否使用了正确的二进制(32位或64位)。您可以使用“uname -a”来查看当前的Linux体系结构。

  2. Change the file permissions:

    改变文件权限:

    chmod 755 bitnami-*.run
    
  3. Run the file:

    运行该文件:

    ./bitnami*.run --mode text
    

I hope it helps

我希望这有助于

#1


3  

  1. Check you are using the correct binary (32bit or 64bit). You can use "uname -a" to see your current Linux architecture.

    检查您是否使用了正确的二进制(32位或64位)。您可以使用“uname -a”来查看当前的Linux体系结构。

  2. Change the file permissions:

    改变文件权限:

    chmod 755 bitnami-*.run
    
  3. Run the file:

    运行该文件:

    ./bitnami*.run --mode text
    

I hope it helps

我希望这有助于