|
|
|
<< Back to index
Guideline to use Linux
1.) How to check the location of your perl in Linux?
locate perl
2.) How to check the version of perl you are running?
perl -v
or do this
perl -Version
3.) How to start MySQL in Linux ?
service mysqld start
or do this
mysqld_safe --user=mysql
4.) How to shutdown MySQL in Linux?
mysqladmin shutdown
|
|
|
|