在Google Compute Engine上安装了MEAN - 但是SSH目录是空的?

时间:2014-08-08 16:02:30

标签: google-compute-engine mean-stack

在Google Compute Engine上全新安装MEAN的文件系统在哪里?

我在端口3000中看到“这是主视图”但找不到实际文件。

1 个答案:

答案 0 :(得分:5)

首先,SSH到您的VM。根目录中有一个安装脚本mean_install.sh。打开它:

vi /mean_install.sh

您可以在此处找到MEAN部署期间使用的所有安装路径。在底部你会看到:

# Step 2 : Create the app in /opt and launch it
cd /opt
mean init ${APP_NAME}
cd ${APP_NAME} && npm install
bower install --allow-root --config.interactive=false
grunt > development.log 2>&1 &

因此,您的文件位于/opt/your-app-name/