第1種suse linux ip配置方法:
臨時配置ipf位址,重啟後配置會丟失.
ifconfig eth0 192.168.1.88 netmask 255.255.255.0 up
修改閘道器 :
route add default gw 192.168.1.254
第2種suse linux ip配置方法:
vi修改系統配置檔案,/etc/sysconfig/network/目錄下。一般是ifcfg-eth0,有部分機器可能不是這個名字,用root登 錄,編輯網絡卡:
bootproto=static
增加ip位址、閘道器等如下:
ipaddr=192.168.1.110
netmask=255.255.255.0
broadcast=192.168.1.255
配置後使其生效,/etc/init.d/network restart
配置閘道器
修改配置檔案
vi /etc/sysconfig/network/routes
加入下面語句:
default 192.168.1.254 - -
配置dns
vi /etc/resolv.conf #編輯檔案
加入下面資訊
nameserver=8.8.8.8
nameserver=8.8.4.4
設定ip完畢,最後重啟網路
rcnetwork restart
service network restart
/etc/init.d/network restart
如果不生效 重啟機器即可。
mysql的兩種引擎 mysql的兩種儲存引擎
背景 最近在使用spring data jpa操作mysql,在使用jpa的自動建表功能之後,處理多對多關係 manytomany的時候,spring data jpa會給中間表的兩個欄位都加上外來鍵引用。當前使用的版本預設的資料庫儲存引擎為myisam。這種儲存引擎是為資料庫查詢效能而生的,不支援...
Divide Two Integers 的兩種解法
divide two integers without using multiplication,division and mod operator.if it is overflow,return max int.解題思路 1.通過被除數減去除數來得到被除數中包含多少個除數,一直減到被除數小於等於...
MyBatis collection的兩種形式
與association一樣,collection元素也有兩種形式,現介紹如下 一 巢狀的resultmap 查詢教師及其指導的學生的資訊。由於教師 學生都有 id name gender等屬性,因此給教師的字段都起了別名 select t.id t id,t.name t name,t.gende...