我需要run
/opt
文件夹中的/home
文件。我目前在sudo /opt/ejabberd-18.01/bin/ejabberdctl start
目录(/ opt的根同名),似乎无法做任何事情,大概是因为EC2用户帐户不是真正的root帐户。
如何在/ home目录中运行/ opt目录中的文件。
我已尝试sudo /opt/ejabberd-18.01/bin/ejabberdctl: No such file or directory
并获得:
var contentful = require('contentful')
var client = contentful.createClient({
// This is the space ID. A space is like a project folder in Contentful terms
space: <space-id>,
// This is the access token for this space. Normally you get both ID and the
token in the Contentful web app
accessToken: <delivery-token>,
timeout: 999999
})
答案 0 :(得分:0)
/opt
归root所有。您需要让文件可执行。这不是很麻烦。这是一个命令:
sudo chmod +x filename
希望有所帮助