Unix: /usr/etc/venture/bin/syncvoltodb -delnorm path_to_dir
Windows: \Program Files\Xinet\Venture\Bin\syncvoltodb.exe -delnorm
path_to_dir
If this fails, syncvoltodb(8) will write errors into the Xinet
venture.log file. These can be valuable as they may indicate why a particular path cannot be brought into
sync with the file system.
Important note: If the path on which you are running a
syncvoltodb(8) process is
not the path to the top level of the volume, then the
-dir flag should be added to the command above, just after
syncvoltodb.
Unix: /usr/etc/venture/bin/dbmgr -shutdown
Windows: \Program Files\Xinet\Venture\Bin\dbmgr.exe -shutdown
Unix: /usr/etc/venture/bin/mysqladmin -u root
-proot_password processlist
Windows: \Program Files\Xinet\Venture\Bin\mysqladmin.exe
-u root -pPASSWORD processlist
Unix: /usr/etc/venture/bin/mysql -u root -p
At the
Enter password: prompt, type the root password
After login in, type:
use webnative;
show processlist;
For added detail, type:
show full processlist;
Windows: \Program Files\Xinet\Venture\Bin\mysql -u root -p
At the
Enter password: prompt, type the password
After login in, type:
use webnative;
show processlist;
For added detail, type:
show full processlist;
Using the mysqladmin command, you can request a report on the status of the database which will provide the information listed below. This can be useful for day-to-day monitoring of the database, but more likely, can be referred to in the event that the speed at which the database responds to queries is slow.
Unix: /usr/etc/venture/bin/mysqladmin -u root
-proot_password status
Windows: \Program Files\Xinet\Venture\Bin\mysqladmin.exe
-u root -pPASSWORD status
Uptime = database uptime (in seconds)
Threads = current number of clients connected to the database
Questions = number of clients connected since the database was
started
Slow queries = the total number of queries that have taken more
than 10 seconds to be answered
Opens = number of open tables since the database was
started
Flush tables = the number of flushed tables
Open tables = the number of currently open tables
Please refer to the MySQL Web site at
www.mysql.com for more information on these variables and how they relate to database performance.