SSH
安装OpenSSH
sudo apt-get update
sudo apt-get install openssh-server
添加用户
sudo useradd -m -s /bin/bash 9b
sudo passwd 9b //为新用户设置密码
重启SSH
/etc/init.d/ssh restart
/ifconfig -a //查看ip
使用Putty登录
配置网络
简易方法
点击系统右上角齿轮,打开系统设置>网络,设置静态IP
命令行方法
编辑 /etc/network/interfaces
注释dhcp一行
#iface eth0 inet dhcp
添加静态ip设置
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
在安装过程中会设置root密码
mysql -u root -p
输入root密码登录MySQL
配置数据库
createdatabase dogheaddaddy;
createdatabase sons;
配置用户及权限
CREATEUSER'9b'@'localhost'IDENTIFIEDBY'123456';
GRANT ALLONsons.* TO'9b'@'localhost';
REVOKE ALLONdogheaddaddy.*FROM'9b'@'localhost';
FLUSH PRLVILEGES;