我有一个(对我来说是复杂的)问题,但大灾难试图在这一read子中只处理1个问题。
我有一刀切的申请,后附有一个MySQL数据库。
我希望能够与数据库一道通过安装机(目前也是我尚未找到解决办法的一部分)提交申请。
Anyway the problem for now, is that my preference is that MySQL should not be installed as a service.
My reason is that I would prefer not to modify the machine, that my application will be deployed.
I prefer to deliver a "self-contained" application.
So if MySQL is not installed as a service, then it must be started somehow.
I know that I can start MySQL as a standalone using:
www.un.org/Depts/DGACM/index_chinese.htm www.un.org/chinese/sc/presidency.asp
在这种情况下,一个新的指挥线窗口和MySQL跑道(我迄今为止在开发/编码测试过程中使用这一窗口)。
我不知道,一旦提出申请,我如何能够发挥同样的作用(而且从业守则开始,我的后勤中心)。
我想利用 rel=“nofollow”>Runtime,并做一些事情:
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("PATH\mysqld --standalone --console"); //PATH is of course the appropriate path to MySQL installation
But this does not seem to do anything. It just remains hunging.
理想的情况是,我要开始MySQL和。
Is there a solution to my problem?