此實驗的前提是防火牆需關閉。
1.關閉iptables
/etc/init.d/iptables stop
/etc/init.d/iptables status
2.關閉selinux
setenforce 0
getenforce
permissive ---出現這個單詞即代表selinux臨時關閉,如需永久關閉則需修改/etc/sysconfig/selinux配置檔案
nfs服務端:
1)檢查系統版本
cat /etc/redhat-release
uname -r
uname -m
2)檢查並安裝nfs-utils rpcbind
yum -y install nfs-utils
yum -u install rpcbind
rpm -qa nfs-utils rpcbind
3)啟動rpcbind/nfs服務並檢查
/etc/init.d/rpcbind/ start
lsof -i :111
ps -ef |grep rpcbind
rpcinfo -p localhost
/etc/init.d/nfs start
/etc/init.d/nfs status
rpcinfo -p localhost
4)設定為開機自啟動
chkconfig nfs on
chkconfig rpcbind on
chkconfig --list nfs
chkconfig --list rpcbind
5)配置nfs配置檔案,共享/data目錄
cat >>/etc/exports <>/etc/rc.local
AsyncTask原理精簡版
asynctask有三個主要的方法 onpreexecute doinbackground string.params onpostexecute 建立asynctask物件需要重寫乙個類繼承asynctask,因為asynctask本身是抽象類 new asynctask execute para...
Sql優化精簡版
1.select語句中避免使用 盡量應該根據業務需求按欄位進行查詢 2.刪除重覆記錄 delete from tble tb where tb.id select min id from tble ble where tb.name ble.name 3.用 替換 4.盡量多使用commit 如對大...
github 使用精簡版
使用git bash上傳時,必須進入需要上傳的檔案的目錄,例如我要上傳的檔案在c 1 1 1 upload 那麼我就要進入到c 1 1 1,然後用以下命令上傳檔案 刪除 git rm cached r useless git commit m remove directory from remote...