mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 01:28:19 +01:00
19 lines
1020 B
Plaintext
19 lines
1020 B
Plaintext
@echo off
|
|
REM -----------------------------------------------------
|
|
REM Run this script only if you have problem to run
|
|
REM Apache and Mysql as service. This can occurs when
|
|
REM Microsoft add bugs in service packs that prevents
|
|
REM servers ran as a service to launch.
|
|
REM -----------------------------------------------------
|
|
|
|
echo Running Apache as user process (this process does not return so we use "start")
|
|
start WAMPROOT\bin\apache\apacheWAMPAPACHEVERSION\bin\httpd.exe -f conf\httpd.conf
|
|
|
|
echo
|
|
|
|
echo Running Mysql as user process (this process does not return so we use "start")
|
|
REM start WAMPROOT\bin\mysql\mysqlWAMPMYSQLVERSION\bin\mysqld-nt.exe --defaults-file=WAMPROOT\bin\mysql\mysqlWAMPMYSQLVERSION\my.ini --console
|
|
REM start WAMPROOT\bin\mysql\mysqlWAMPMYSQLVERSION\bin\mysqld.exe --defaults-file=WAMPROOT\bin\mysql\mysqlWAMPMYSQLVERSION\my.ini --console
|
|
start WAMPROOT\bin\mariadb\mariadbWAMPMYSQLVERSION\bin\mysqld.exe --defaults-file=WAMPROOT\bin\mariadb\mariadbWAMPMYSQLVERSION\my.ini --console
|
|
|
|
pause |