हम आपको यहां दिखाएंगे कि आप एक CentOS सर्वर पर MySQL/MariaDB सर्वर की आरंभ तिथि कैसे प्राप्त कर सकते हैं। यह सर्वर आँकड़ों आदि के लिए उपयोगी हो सकता है।
1. का उपयोग करें अभी चुनें() - अंतराल चर_मान दूसरा info_schema.global_status से जहां वेरिएबल_नाम='अपटाइम'; mysql प्रॉम्प्ट पर कमांड करें।
root@web [~]# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 54690
Server version: 10.1.25-MariaDB MariaDB Server
Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> select now() - interval variable_value second as 'MySQL started on' from information_schema.global_status where variable_name='Uptime';
+----------------------------+
| MySQL started on |
+----------------------------+
| 2017-08-12 02:14:21.000000 |
+----------------------------+
1 row in set (0.00 sec)
MariaDB [(none)]> quit
Bye
root@web [~]#
2. mysqladmin . का प्रयोग करें कमांड के साथ उपयोगिता mysqladmin ver|grep Uptime
root@web [~]# mysqladmin ver|grep Uptime
Uptime: 6 days 9 hours 54 min 5 sec
root@web [~]#
3. ऑपरेटिंग सिस्टम का उपयोग करें सेवा कमांड सेवा mysqld स्थिति | grep चल रहा है
root@web [~]# service mysqld status | grep running
Redirecting to /bin/systemctl status mysqld.service
Active: active (running) since Sat 2017-08-12 02:14:22 EDT; 6 days ago
root@web [~]#