If you want to add a service that can be enabled/disabled to start at boot time via VASM:
cp /usr/share/mysql/mysql.server /etc/rc.d/init.d/mysql
you will now find mysql in the services section in VASM
This works fine, and I can get mysql to work by using VASMCC.
However, now that I'm learning how to use mysql, I see that I have to have '--local-infile=1' (ie activated) if I am conveniently to load pre-written data files into a database.
Which command do I append this to?
If you want to have mysql daemon started at boot automatically (not interactive via VASM):
chmod -x /etc/rc.d/rc.mysqld
Could it be added to rc.mysqld, for example?