jdk [root@localhost] tar zxvf jdk 8u144 linux x64.tar.gz [root@localhost] vi /etc/profile 在profile文件中添加下述內容 [root@localhost] source /etc/profile [root ...
jdk
[root@localhost]# tar -zxvf jdk-8u144-linux-x64.tar.gz
[root@localhost]# vi /etc/profile
在profile文件中添加下述內容
#set java environment
JAVA_HOME=/usr/java/jdk1.8.0_144
JRE_HOME=/usr/java/jdk1.8.0_144/jre
CLASS_PATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar:$JRE_HOME/lib
PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin
export JAVA_HOME JRE_HOME CLASS_PATH PATH
[root@localhost]# source /etc/profile
[root@localhost]# java -version
tomcat
[root@localhost]# tar -zxvf apache-tomcat-9.0.0.M22.tar.gz
[root@localhost]# /tomcat path/bin/startup.sh ---之後訪問http://host:8080/,顯示Tom貓
[root@localhost]# vi /tomcat path/conf/server.xml
查找8080,找到如下兩處地方
<<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
將port="8080"改成port="80"
<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
這樣做的目的是通過瀏覽器url訪問時不用輸入埠號,因為瀏覽器自動填充80
---重啟之後訪問http://host 顯示Tom先生
[root@localhost]# vi /tomcat path/conf/tomcat-users.xml
拷貝下麵代碼
<role rolename="manager"/>
<role rolename="admin"/>
<role rolename="admin-gui"/>
<role rolename="manager-gui"/>
<user username="xxx" password="***" roles="admin-gui,manager-gui"/>
---重啟訪問http://host/manager,彈出視窗,輸入用戶名密碼,在本地部署伺服器項目
下麵是修改Tomcat預設載入的root項目和index.html的方法,假設我要改成home項目下的first.html
[root@localhost]# vi /tomcat path/conf/server.xml
找到下麵這段
<Engine name="Catalina" defaultHost="localhost">
<host name="localhost" appBase="webapps"
unpackWARs="true"
xmlValidation="false" xmlNamespaceAware="false">
.......
<host>
在host標簽裡面添加
<Context path="" docBase="home" debug="0" reloadable="true" />
[root@localhost]# vi /tomcat path/conf/web.xml
找到下述標簽
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
改為
<welcome-file-list>
<welcome-file>first.html</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
---重啟訪問http://host Tom女士不見了,顯示webapps/home/first.html
mysql
--使用 yum install mysql安裝msyql後mysql啟動不了
--是因為上述命令預設安裝的是mariadb
--下載yum庫
[root@localhost]# wget http://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
--安裝yum庫
[root@localhost]# yum localinstall mysql57-community-release-el7-11.noarch.rpm
--安裝mysql server
[root@localhost]#yum install mysql-community-server
--啟動mysql server
[root@localhost]# service mysqld start
--查看mysql當前狀態
[root@localhost]# service mysqld status
--獲得臨時密碼
[root@localhost]# grep 'temporary password' /var/log/mysqld.log
--重置臨時密碼
[root@localhost]# mysql_secure_installation
--連接資料庫
[root@localhost]# mysql -u root -p
--修改字元集
[root@localhost]# show varibles like '%char%';
[root@localhost]# exit
[root@localhost]# whereis my.cnf
[root@localhost]# vi /etc/my.cnf
[client]
default-character-set=utf8
在[mysqld]下添加
character-set-server=utf8
redis
[root@localhost]tar -zvxf redis-4.0.2.tar.gz
[root@localhost]mv redis-4.0.2 /usr/local/redis
[root@localhost]make MALLOC=libc
[root@localhost]make install
[root@localhost]vim redis.conf
修改bind 127.0.0.1(允許訪問的ip) 和 daemonize yes(是否允許後臺運行) requirepass 040209(訪問密碼)
[root@localhost]redis-server ./redis.conf
[root@localhost]ps -ef | grep redis-server
[root@localhost]./utils/install_server.sh
[root@localhost]systemctl start redis_6379
rabbitmq
openssl
[root@localhost]tar -zvxf openssl-1.0.1s.tar.gz
[root@localhost]cd openssl-1.0.1s
[root@localhost]./config --prefix=/usr/local/openssl
[root@localhost]vi Makefile
[root@localhost]make && make install將原來的:CFLAG= -DOPENSSL_THREADS 修改為: CFLAG= -fPIC -DOPENSSL_THREADS
- erlang:
[root@localhost]yum install ncurses-devel
[root@localhost]tar xf otp_src_20.1.tar.gz
[root@localhost]cd otp_src_20.1
[root@localhost]./configure --prefix=/usr/local/erlang20 --without-javac
[root@localhost]make
[root@localhost]make install
[root@localhost]/usr/local/erlang20/bin/erl - RabbitMQ
[root@localhost]xz -d rabbitmq-server-generic-unix-3.7.2.tar.xz
[root@localhost]tar xf rabbitmq-server-generic-unix-3.7.2.tar
[root@localhost]yum install python -y
[root@localhost]yum install xmlto -y
[root@localhost]yum install python-simplejson -y
[root@localhost]mv rabbitmq_server-3.7.2/ /usr/local/rabbitmq 導入環境變數
[root@localhost]vim /etc/profile添加如下命令: PATH=$PATH:/usr/local/erlang20/bin:/usr/local/rabbitmq/sbin
[root@localhost]export PATH
[root@localhost]source /etc/profile
[root@localhost]rabbitmqctl start_app
nginx
[root@localhost]tar -zvxf nginx
[root@localhost]./configure --prefix=/usr/local/nginx --conf-path=/usr/local/nginx/nginx.conf
[root@localhost]yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
[root@localhost]make && make install
[root@localhost]./sbin/nginx
[root@localhost]./sbin/nginx -s reload
常用命令
df
df -lh 查看磁碟的使用情況以及文件系統被掛載的位置mount
mount /dev/vda1 /mnt/d 將分區vda1掛載到mnt下的d目錄上vi編輯器
複製 : yy(當前行) , nyy(複製n行)
粘貼 : p
刪除 : dd(當前行)
查找 : /+查找的內容,之後再按n匹配下一個find
刪除滿足條件的文件 find / -name mysql -exec rm -rf {} ;
find dir/dir1 -ctime -num 查找在dir/dir1目錄下num*24小時內被修改的文件
find dir/dir1 -perm 777 查找在dir/dir1目錄下訪問許可權為777的文件
find dir/dir1 -name x1 查找在dir/dir1目錄下名為x1的文件或者是目錄
find dir/dir1 -size x 查找在dir/dir1目錄下大小為x的目錄whereis
whereis my.cnf- ls
ls -l xx.xx:
顯示該目錄下的所有文件的詳細信息,文件許可權:
-rw-rw-r--
一共有10位數
其中: 最前面那個 - 代表的是類型
中間那三個 rw- 代表的是所有者(user)
然後那三個 rw- 代表的是組群(group)
最後那三個 r-- 代表的是其他人(oth老師er)
改變文件許可權:
r= 4 表示可讀
w=2表示可寫
x=1表示可執行 cat
cat xx 查看xx內容
cat -n xx對xx內容進行編號
cat x1 x2 >x3 合併x1和x2的內容並且輸出到x3中,如果x3有數據則覆蓋
cat x1 x2 >>x3 合併x1和x2的內容後加在x3後面chmod
chmod 775 xx 將xx文件的許可權改為-rwxrwxr-xchown
chown manager xx 將xx文件的擁有者變為manager
chown manager:other 將xx文件擁有者變為manager,用戶組變為other
chown manager: xx 將xx文件的擁有者變為manager,用戶組變為manager的
chown :other 將xx文件的用戶組變為othercmp
cmp x1 x2 比較x1文件和x2文件
可能輸出 : x1 x2 differ: byte 1, line 1 ,表示x1文件與x2文件在第一行第一個位元組就不同cp
cp x1 dir/dir1 複製x1文件到dir/dir1的目錄下,重名會報錯
cp x1 dir/dir1 x2 複製x1文件到dir/dir1的目錄下,並且重命名為x2
cp -fr dir/dir1 dir2/dir3 複製dir下的dir1文件夾到dir2/dir3目錄下diff
diff x1 x2 比較x1與x2文件的不同,顯示不同的內容
diff -c x1 x2 分別顯示x1與x2文件內容,把不同的標識了出來file
file x1 顯示x1文件類型
file * 顯示當前文件夾下所有文件類型gzip
gzip x1 將文件x1壓縮,形成x1.gz並代替原來的文件
gzip * 將當前目錄下的文件都壓縮
gzip -d x1.gz 對文件進行解壓縮 註:gunzip x1.gz也可以進行解壓縮less長文本閱讀
less x1顯示x1文本內容並顯示一頁ln
ln x1 x2 建立x1的硬鏈接x2
ln -s x1 x3 建立x1的軟鏈接x3
軟硬區別:x1和x2具有相同的inode號,指向同一個內容而x3通過指向x1指向具體內容locate
locate x1 查找符合x1文件名樣式的文件和目錄more
more x1顯示x1內容
more x1 x2首先顯示x1內容,空格鍵後顯示x2內容mv
mv x1 x2將文件x1重命名為x2
mv x1 dir/dir1將文件x1移動到dir/dir1目錄下tac
tac x1 反序輸出x1tar
tar -c x1 x2 >x3.tar 將文件x1和x2壓縮後建立x3文件
tar -cf x3.tar x1 x2 同上
tar -xzvf x1.tar.gz 解壓縮x1.tar.gz文件tee
tee x1 通過標準輸入到文件x1(覆蓋x1內容),ctrl+D退出
tee -a x1 同上 append到x1後,不是覆蓋
cat x1|tee x2 將x1內容輸入到x2中