1. 程式人生 > >在mac上的apache和tomcat的安裝

在mac上的apache和tomcat的安裝

apache和tomcat的區別:區別 tomcat伺服器安裝:

1. 下載java,配置JDK環境。見mac配置Java環境

2. 下載tomcat http://tomcat.apache.org/

3. 解壓至/Users/name/library/tomcat7088

4. 增加許可權 cd /Users/name/library/tomcat7088/bin     sudo chmod 755 /Users/name/library/tomcat7088/bin/*.sh

5. 啟動sudo sh startup.sh    關閉sudo sh shutdown.sh       http://localhost:8080

6. 配置環境變數:open -e .bash_profile

    開啟檔案輸入:

        export PATH=$PATH:/Users/qiyue/library/tomcat7088/bin

        export PATH=$PATH:/Users/qiyue/library/tomcat7088/logs

    啟用 source .bash_profile