mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-26 01:04:06 +08:00
7 lines
587 B
Bash
7 lines
587 B
Bash
# /etc/rc.local
|
|
# source /home/shy/2022-ContextOS/etc/local/2022.sh
|
|
source /home/shy/2022-ContextOS/etc/local.sh
|
|
[ -d /tmp/nginx ] || mkdir /tmp/nginx; cd /opt/daemon/10000 && $PWD/sbin/nginx -p $PWD
|
|
# su - mysql -c 'cd /opt/daemon/10001/ && $PWD/bin/mysqld --basedir=./ --datadir=./data --plugin-dir=./lib/plugin --socket=mysqld.socket --log-error=mysqld.log --pid-file=mysqld.pid --port 10001 &'
|
|
su - mysql -c 'cd /opt/10001/ && $PWD/bin/mysqld --basedir=./ --datadir=./data --plugin-dir=./lib/plugin --socket=mysqld.socket --log-error=mysqld.log --pid-file=mysqld.pid --port 10001 &'
|