มาเรียนรู้การคำนวณ IP Address version 4 ด้วยเทคนิคการใช้ตารางมหัศจรรย์ซึ่งทำให้ศิษย์นำไปใช้ในการทำงานและการสอบ Cert.IT ได้อย่างดีเยี่ยม
Basic Linux Command ตอนที่ 1 (ls,cat,vi)by Jodoi
มาเรียนรู้การใช้ Linux Command เบื้องต้นกันครับ เริ่มต้นด้วย command ls , cat และ vi ซึ่งปัจจุบันมีความจำเป็นต้องเรียนรู่อย่างยิ่งเพราะหลายๆองค์กรมีการใช้ Linux Server กันมากขึ้น
[root@jodoi-gateway ~]# service mysqld start
Starting mysqld: [ OK ]
หรือ
[root@jodoi-gateway ~]# /etc/init.d/mysqld restart
Stopping mysqld: [ OK ]
Starting mysqld: [ OK ]
ถ้าไม่ติดปัญหาอะไรต้องสามารถ Start mysql ได้นะครับ ถ้าผ่านก็ไปขั้นตอนต่อไป
ต่อไปเป็นการสร้าง DATABASE ที่ชื่อ radius ให้ทำการเข้าสู่ mode ของ mysql โดยการพิมพ์ mysql หรือถ้าตั้ง password ของ mysql ไว้ ให้พิมพ์ mysql - p ดังนี้
[root@jodoi-gateway ~]# mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.73 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
ขั้นต่อไปทำการทดสอบเพิ่ม user jodoi password 123456 ลงใน database radius เพื่อทดสอบ
[root@jodoi-gateway ~]# mysql -p
mysql > use radius;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A