草庐IT

Execution_Start

全部标签

c# - Mono Process.Start 返回 ExitCode 255?

我有一个简单的C#Mono2.10应用程序运行在CentOS5.5上调用Process.Start("/path/to/myapp/myapp.exe","-someArgs");我可以通过恢复并运行进程IDmono--trace=N:System.Diagnostics向我显示一个似乎表明Process.Start返回true的堆栈:LEAVE:System.Diagnostics.Process:Start_noshell(System.Diagnostics.ProcessStartInfo,System.Diagnostics.Process)TRUE:1LEAVE:Syste

linux - HBase 在 ./start-hbase.sh 之后不运行 - 权限被拒绝?

我想运行HBase。我已经完全安装了hadoop,当我运行start-all.sh时,它工作正常并给我这个输出:hduser@CSLAP106:/usr/local/hadoop/bin$jps11956SecondaryNameNode12046JobTracker12193TaskTracker11800DataNode11656NameNode12254Jps但是当我想运行start-hbase.sh时,它给了我一些permissiondenied的错误,我不明白为什么:hduser@CSLAP106:/usr/local/hbase/hbase-0.94.6.1/bin$./s

java - spring boot init.d 脚本 start-stop-daemon : unrecognized option --no-close

在将我的应用符号链接(symboliclink)到/etc/init.d/myappname之后。/etc/init.d/myappnamestartgives"Failedtostart"/var/log/appname.log告诉"start-stop-daemon:unrecognizedoption'--no-close'"当我删除--no-close时,jar已损坏且无法再运行。我很震惊。bdw我的jar是完全可执行的jar。即,当我单独运行jar时,它会正常启动springboot。这里出了什么问题?编辑:do_start(){working_dir=$(dirname"$

linux - Robo3t crashing in ubuntu 16.04 and above version (This application failed start because it could not find or load the Qt platform plugin "xcb")

当我在ubuntu16.04版本中启动robo3t时它没有打开,错误如下所示错误:sony@sony:~/Documents/installed/robo3t-1.1.1-linux-x86_64-c93c6b0/bin$./robo3tThisapplicationfailedtostartbecauseitcouldnotfindorloadtheQtplatformplugin"xcb"in"".Availableplatformpluginsare:xcb.Reinstallingtheapplicationmayfixthisproblem.Aborted(coredumpe

linux - Logstash 未启动。错误 : "Could not start TCP server: Address in use"

Logstash未启动。它说如下::message=>"CouldnotstartTCPserver:Addressinuse",:host=>"0.0.0.0",:port=>1514,:level=>:error}Theerrorreportedis:\nAddressalreadyinuse-bind-Addressalreadyinuse"}在logstash配置文件中,没有指定1514端口。当logstash停止时,没有服务正在监听此端口。当我启动logstash时,虽然我没有在配置文件中指定这个端口,但它开始监听这个端口。如果我把这个端口放在logstash配置文件中并启动

linux - 内核模块 : hrtimer_start "Unknown Symbol in Module"

我正在构建一个使用hrtimer接口(interface)的内核模块。我的模块编译成功,它有MODULE_LICENSE("GPL")设置:make-C/lib/modules/3.0.0-23-server/buildSUBDIRS=/home/projects/net-modelermodulesmake[1]:Enteringdirectory`/usr/src/linux-headers-3.0.0-23-server'CC[M]/home/projects/net-modeler/nm_injector.oCC[M]/home/projects/net-modeler/nm_

linux - Linux 上的 Node 中的 "Permission Denied",在运行 start-script/w local nodemon/mocha/babel-node 时

我的新Linux设置有问题-我已将nodemon安装为本地依赖项(不是全局),我正尝试从我的package.json“启动”脚本执行它。我收到此权限错误。node本身效果很好,但是一旦我尝试使用babel-node或nodemon甚至mocha,我遇到权限问题。我的设置分为2个硬盘驱动器-Node安装在我的SSD上(与我的操作系统一起),我的项目(它是node_modules,我试图从中执行nodemon我的存储硬盘。sh:1:nodemon:PermissiondeniednpmERR!Linux3.19.0-56-genericnpmERR!argv"/usr/bin/nodejs

linux - Bash 脚本 : always show menu after loop execution

我正在使用这样的bash脚本菜单:#!/bin/bashPS3='Pleaseenteryourchoice:'options=("Option1""Option2""Option3""Quit")selectoptin"${options[@]}"docase$optin"Option1")echo"youchosechoice1";;"Option2")echo"youchosechoice2";;"Option3")echo"youchosechoice3";;"Quit")break;;*)echoinvalidoption;;esacdone每次选择菜单后我都会得到提示Ple

linux - Hadoop:输入 "start-all.sh"后需要 root 密码

我已经在笔记本电脑上安装了Hadoop和SSH。“sshlocalhost”工作正常。格式化HDFS后,尝试启动hadoop。munichong@GrindPad:~$sudo/usr/sbin/start-all.shstartingnamenode,loggingto/var/log/hadoop/root/hadoop-root-namenode-GrindPad.outroot@localhost'spassword:root@localhost'spassword:localhost:Permissiondenied,pleasetryagain.localhost:Perm

windows - Linux 相当于 DOS "start"命令?

我正在编写一个ksh脚本,我必须在一个单独的命令提示符窗口中运行一个可执行文件。 最佳答案 xdg-open是linux中类似的命令行应用程序。参见https://superuser.com/questions/38984/linux-equivalent-command-for-open-command-on-mac-windows有关其使用的详细信息。 关于windows-Linux相当于DOS"start"命令?,我们在StackOverflow上找到一个类似的问题: