SSH
安裝OpenSSH
sudo apt-get update
sudo apt-get install openssh-server
添加用戶
sudo useradd -m -s /bin/bash 9b
sudo passwd 9b //為新用戶設(shè)置密碼
重啟SSH
/etc/init.d/ssh restart
/ifconfig -a //查看ip
使用Putty登錄
配置網(wǎng)絡(luò)
簡易方法
點擊系統(tǒng)右上角齒輪,打開系統(tǒng)設(shè)置>網(wǎng)絡(luò),設(shè)置靜態(tài)IP
命令行方法
編輯 /etc/network/interfaces
注釋dhcp一行
#iface eth0 inet dhcp
添加靜態(tài)ip設(shè)置
iface eth0 inet static
address 192.168.110.119
netmask 255.255.255.0
gateway 192.168.110.1
MySQL
安裝
sudo apt-get install mysql-server
在安裝過程中會設(shè)置root密碼
mysql -u root -p
輸入root密碼登錄MySQL
配置數(shù)據(jù)庫
createdatabase dogheaddaddy;
createdatabase sons;
配置用戶及權(quán)限
CREATEUSER'9b'@'localhost'IDENTIFIEDBY'123456';
GRANT ALLONsons.* TO'9b'@'localhost';
REVOKE ALLONdogheaddaddy.*FROM'9b'@'localhost';
FLUSH PRLVILEGES;