安装mesosphere mesos时我遇到了几个问题Ubuntu Linux 分配。我用过
Private Sub btnRun_Click()
'Add a button to your form called btnRun to test this code
MsgBox " >>> " & fMakeCommentFld
'Me.txtCOMMENTS = fMakeCommentFld
End Sub
Private Function fMakeCommentFld() As String
Dim Ctrl As Control
Dim strComment As String
Dim strCaption As String
For Each Ctrl In Me.Controls
If Ctrl.ControlType = acTextBox Then 'Only Check the TextBox's
If Mid(Ctrl.Tag, 1, 1) = "X" Then 'And then only if there is an X in the Tag property
If Ctrl.Value <> "Good" Then 'If NOT GOOD then append to the strComment Variable
'The following line takes the Caption from the TextBox Label
strCaption = "[" & Ctrl.Controls(0).Caption & " CONDITION] - "
strComment = strComment & ", " & strCaption & Ctrl.Value & vbLf
End If
End If
End If
Next
strComment = Mid(strComment, 2) 'Strip off the leading comma ","
fMakeCommentFld = strComment 'Pass the result back to the function
End Function 'fMakeCommentFld
用
安装mesospheresudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
DISTRO=$(lsb_release -is | tr '[:upper:]' '[:lower:]')
CODENAME=$(lsb_release -cs)
echo "deb http://repos.mesosphere.io/${DISTRO} ${CODENAME} main" | sudo tee /etc/apt/sources.list.d/mesosphere.list
现在正如预期的那样mesossphere应该下载所有依赖项,如mesos,marathon和zookeeper。在我成功安装它们之后,我希望使用
运行mesos作为服务sudo apt-get install mesosphere
但系统表示其无法识别的服务。作为一种解决方案,我必须单独下载mesos并在构建相同的源代码后手动启动它们。 我正在寻找的是,如果有任何其他简单的解决方案来安装apache mesos。