阿里云通用代金卷活動(土豪購買可忽略)
購買前領(lǐng)取幸運券昼榛,可能會有折上折優(yōu)惠哦:領(lǐng)取幸運抵扣卷
購買地址
win10直接連接阿里云服務(wù)器(Linux):
【如果使用XShell可以跳過】
- 首先你得安裝下telnet客戶端,系統(tǒng)自帶的。
控制面板——程序與功能——啟動或關(guān)閉windows功能
2.將Telnet客戶端勾上,點確定(等待安裝完成即可)亮航。
3.win鍵+R鍵 然后輸入CMD 回車打開CMD窗口
輸入 ssh 賬號名@服務(wù)器ip地址:端口號
例如:ssh root@111.222.1.2
第一次可能需要輸入yes聊倔,如果輸了no就無法連接了
然后再讓你輸入密碼(輸入密碼時睡毒,你是看不出有任何變化的【因為Linux覺得“沒有消息就是最好的消息??”】)
XShell、XFtp的安裝與使用
XShell使用(連接XFtp和連接XShell一樣):
新建一個會話
點擊你新建的回話暇赤,彈出讓你輸入用戶名(一般默認用戶名為root)
點擊確認后就會讓你輸入密碼(可以在阿里云官網(wǎng)重置修改)
這樣你就連接上服務(wù)器了心例。
Linux添加用戶(可以根據(jù)不用用戶給不同權(quán)限)
登錄root賬號后
輸入:useradd -d /usr/zxy -m zxy2019
-d 是給新用戶創(chuàng)建主目錄
-m 是用戶名-
修改新用戶的密碼(修改前我們先進到新用戶的主目錄)
輸入:cd /usr/zxy/
輸入:passwd zxy2019
輸入:你的新密碼
輸入:確認新密碼
-
給予權(quán)限
輸入:sudo vim /etc/sudoers
輸入:/root
(可以快速定位root 位子,然后再添加自己新用戶的權(quán)限鞋囊,相匹配的會出現(xiàn)高亮)
輸入::noh
(取消高亮)
輸入:i
(即可寫了)
輸入::wq!
(強制保存)
JDK的安裝與配置
這里需要注意下:
我們平常linux 下載jdk都會 wget http://xxxxxx 這種方式,現(xiàn)在由于oracle限制了止后,每次下載的安裝包都是沒用的,解壓失敗問題(既然下載不了溜腐,那我們就本地下載上傳上去)
所以我們使用XShell和XFT來進行云服務(wù)器的控制和文件的傳輸(非商業(yè)用途的免費使用)
-
檢查是否安裝
輸入:rpm -qa| grep jdk
(什么信息都沒返回就說明沒安裝)
下載:java下載地址
下載對應(yīng)版本的包(后綴為:.tar.gz)
sudo mkdir java
(一般會再根目錄下新建一個文件夾)-
上傳到服務(wù)器(直接拖進去就行)
-
解壓
tar -zxvf jdk-8u181-linux-x64.tar.gz
(沒任何提示就說明成功了译株,或者你也可以打開XFT查看)
配置環(huán)境變量(配置之前瓜喇,建議先給系統(tǒng)來個快照。不然你profile文件修改錯誤后你會頭大??各種指令失效)
輸入:vim /etc/profile
(打開profile文件夾)
輸入:i
(插入命令)
輸入:
export JAVA_HOME=/java/jdk1.8.0_231
export JRE_HOME=/java/jdk1.8.0_231/jre
export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin/$JAVA_HOME:$PATH
(輸入完成后古戴,按下esc鍵退出輸入)
輸入:
:wq!
(強制保存)輸入:
source /etc/profile
(使環(huán)境變量生效 )輸入:
java –version
命令和javac
(檢測是否配置成功)使用javac命令欠橘,不會出現(xiàn)command not found錯誤
使用java -version,出現(xiàn)版本為java version "1.8.0_231"
安裝tomcat及配置環(huán)境
1.下載:Tomcat下載地址(這里我們還是和java一樣去官網(wǎng)下載)
- 上傳到服務(wù)器(直接拖進去就行)
- 解壓
tar -zxvf apache-tomcat-9.0.29.tar.gz
- 重命名:
mv apache-tomcat-9.0.29 tomcat9
(為方便記憶以及日后的使用现恼,也可以不從命名) - 配置字符集
vim conf/server.xml
(把端口改成80肃续,或者其他你想要的端口)
6.在tomcat/bin 目錄下輸入:./startup.sh
(啟動tomcat)
6-1 在本地測試下是否開啟成功
輸入:curl localhost:80
出現(xiàn)html網(wǎng)頁源碼就說明啟動成功。
-
在瀏覽器輸入公網(wǎng)ip:端口號 就可以看到tomcat的網(wǎng)址叉袍,證明配置成功(然而你可能還是訪問不到??看上去都很簡單始锚,但是自己一操作就各種問題??。跑題了喳逛,咱們繼續(xù)...)
- 確認你安全組里面允許了該端口(這里你允許了可能還是沒用??)
- 再次去設(shè)置tomcat
vim conf/server.xml
1.找到Engine標簽defaultHost屬性把值:localhost改成你自己的公網(wǎng)ip瞧捌。(有兩處)
2.再找到Host標簽的name屬性也是一樣。改成自己的公網(wǎng)ip
3.然后wq!
保存
不出意外的話润文,你現(xiàn)在就可以愉快的訪問到了姐呐! - 如果你還是訪問不了,那你可以看看防火墻了典蝌。
1.首先我們看看防火墻是否開啟曙砂。輸入firewall-cmd --state
返回running說明開啟了(如果沒開啟輸入systemctl start firewalld
去開啟)
2.查看防火墻是否開啟80端口(這里的80改成你tomcat設(shè)置的端口)
輸入firewall-cmd --permanent --zone=public --list-ports
(如果返回里面看不到你tomcat的端口,說明沒有開啟骏掀。那么需要輸入firewall-cmd --zone=public --add-port=80/tcp --permanent
去開啟鸠澈,里面的80端口改成你tomcat的端口)
3.重啟防火墻并查看8080端口是否開成功輸入:
firewall-cmd --reload
,重啟后通過方法2查看全部開啟的端口截驮,也可以輸入firewall-cmd --zone=public --query-port=80/tcp
單獨的這個端口這次不出意外笑陈,你真的可以訪問了。
MySQL安裝部署
上面已經(jīng)用過官網(wǎng)下載軟件上傳解壓安裝的方式了葵袭,這次咱們換一種安裝方式涵妥;使用的是yum來安裝??。
- 檢查下是否安裝過
rpm -qa | grep mysql
(還是像往常一樣眶熬,沒有任何提示就是沒有安裝妹笆;centos7中默認安裝了數(shù)據(jù)庫MariaDB,如果直接安裝MySQL的話娜氏,會直接覆蓋掉這個數(shù)據(jù)庫拳缠,所以咱們就不管這個了。)
PS:如果安裝了贸弥, 普通刪除模式 rpm -e mysql - 安裝MySQL官方的Yum Repository
wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
- 下載rpm包
yum -y install mysql57-community-release-el7-10.noarch.rpm
- 安裝MySQL服務(wù)
yum -y install mysql-community-server
- 啟動MySQL服務(wù)
systemctl start mysqld.service
(以Starting MySqL server.. started MysqlServer..結(jié)尾的就成功啟動了【注意:是mysqld】) - 如果啟動后沒有任何信息窟坐,咱們就在查詢下看看是否啟動成功。
systemctl status mysqld.service
(當然一般不提示就是成功了,Linux系統(tǒng)就是這樣。你懂的??)
- 設(shè)置 mysql 開機自啟
systemctl enable mysqld
(每次重啟服務(wù)器MySQL都會關(guān)閉的,所以設(shè)置這個還是可以省去很多事的) - 刷新配置
systemctl daemon-reload
(讓它生效) - 設(shè)置mysql密碼
①第一次啟動MySQL后谒所,就會有臨時密碼,這個默認的初始密碼在/var/log/mysqld.log文件中讯沈,所以我們先把初始密碼找出來:grep 'temporary password' /var/log/mysqld.log
②登錄:mysql -uroot -pysAE6D%C-HM4
(u后面是用戶名(一般為root),p后面緊接著密碼)
③修改密碼:alter user root@localhost identified by '你要修改成的密碼';
(不出意外婿奔,會提示你一個錯誤)
他會告訴你:您的密碼不符合當前的策略要求缺狠。
啥要求呢?
PS:mysql5.7以上默認安裝了密碼安全檢查插件(validate_password)萍摊,默認密碼檢查策略要求密碼必須包含:大小寫字母挤茄、數(shù)字和特殊符號,并且長度不能少于8位冰木。否則會提示ERROR 1819 (HY000): Your password does not satisfy the current policy requirements錯誤穷劈。
想看密碼策略的可以輸入:
show variables like '%password%';
自行去查看想修改策略的自行百度(有三種策略)。
你也可以省事的直接去除他這種策略
validate_password = off
然后使其生效systemctl restart mysqld
下圖是修改成功后的圖:
- 刪除(因為安裝了Yum Repository踊沸,采用Yum管理各種rpm包的依賴歇终,以后每次操作yum都會自動更新,所以需要卸載它)
①查看安裝的mysql版本rpm -aq | grep -i mysql
(記得先退出MySQL 退出命令:\q
)
②刪除yum -y remove mysql57-community-release-el7-10.noarch
- 配置遠程登錄:(MySQL默認root用戶只能本地登錄逼龟,如果要遠程連接练湿,要簡單設(shè)置下)
①首先登錄數(shù)據(jù)庫(上面有登錄的命令)
②GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '當前用戶的密碼' WITH GRANT OPTION;
(.的意思是所有庫的所有表;To后面跟的是用戶名审轮;@后面跟的是ip地址,%代表所有ip地址辽俗,identified by后面的是密碼疾渣。)
③沖刷權(quán)限flush privileges;
補充點:(我這里沒用到就沒設(shè)置,了解下就行)
需要注意MySQL的配置文件中的bindaddress 的參數(shù)和skip-networking 配置
bindaddress : 設(shè)定哪些ip地址被配置崖飘,使得mysql服務(wù)器只回應(yīng)哪些ip地址的請求),最好注釋掉該參數(shù)或設(shè)置成為127.0.0.1以外的值榴捡。
skip-networking : 如果設(shè)置了該參數(shù)項,將導(dǎo)致所有TCP/IP端口沒有被監(jiān)聽,也就是說除了本機朱浴,其他客戶端都無法用網(wǎng)絡(luò)連接到本mysql服務(wù)器吊圾,所以應(yīng)該注釋掉該參數(shù)。 - 添加3306端口
firewall-cmd --zone=public --add-port=3306/tcp --permanent;
(可能這個時候你防火墻還沒開啟翰蠢。命令含義: --zone #作用域 --add-port=80/tcp #添加端口项乒,格式為:端口/通訊協(xié)議 --permanent #永久生效,沒有此參數(shù)重啟后失效 ) - 開啟防火墻
systemctl start firewalld
- 再重新添加3306端口(使用上面添加2206端口命令命令)
- 重啟防火墻
firewall-cmd --reload
- MySQL設(shè)置utf8(進入ect目錄下)
vim my.cnf
添加:character_set_server=utf8
和init_connect='SET NAMES utf8'
PS:采用navicat新建數(shù)據(jù)庫時梁沧,需要將編碼方式設(shè)置為檀何,字符集:utf8 -- UTF-8 Unicode ,排序規(guī)則:utf8_general_ci - 再去檢查下阿里云安全組端口是否允許了3306端口。沒有的話開啟就OK了(和上面tomcat允許安全組一樣)
本地開發(fā)工具下載環(huán)境配置及遠程部署項目
Maven 下載安裝與配置
- Maven官網(wǎng)下載地址(Maven3.2.版本需要JDK1.6的支持频鉴,Maven3.3.以上需要JDK1.7以上的支持)
-
下載最新版本
-
解壓
-
配置Maven環(huán)境變量(和配java環(huán)境一樣)
1.新建環(huán)境變量MAVEN_HOME和M2_HOME栓辜,分別填上你解壓后的路徑(我這里的路徑:C:\zxy\maven\apache-maven-3.6.3)
2.編輯環(huán)境變量Path,追加%MAVEN_HOME%\bin;
- 檢查是否安裝及配置成功
cmd進入DOS命令輸入:mvn -v
- 修改maven配置文件(settings.xml文件【在conf目錄下】)
主要修改:
1垛孔、本地倉庫位置
<localRepository>C:\Users\59908\.m2\repository</localRepository>
(C:\Users\59908.m2\repository:可以自行修改位子藕甩,隨便創(chuàng)建一個文件夾做本地倉庫)
2、修改maven默認的JDK版本(修改成你本機的版本)
<profile>
<id>JDK-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
3周荐、添加國內(nèi)鏡像源
<!-- 阿里云倉庫 -->
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
</mirrors>
4狭莱、完整的Settings.xml文件(如果上面不會加的話就復(fù)制完整的文件去里面修改好了)
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!--
| This is the configuration file for Maven. It can be specified at two levels:
|
| 1. User Level. This settings.xml file provides configuration for a single user,
| and is normally provided in ${user.home}/.m2/settings.xml.
|
| NOTE: This location can be overridden with the CLI option:
|
| -s /path/to/user/settings.xml
|
| 2. Global Level. This settings.xml file provides configuration for all Maven
| users on a machine (assuming they're all using the same Maven
| installation). It's normally provided in
| ${maven.conf}/settings.xml.
|
| NOTE: This location can be overridden with the CLI option:
|
| -gs /path/to/global/settings.xml
|
| The sections in this sample file are intended to give you a running start at
| getting the most out of your Maven installation. Where appropriate, the default
| values (values used when the setting is not specified) are provided.
|
|-->
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!-- localRepository
| The path to the local repository maven will use to store artifacts.
|
| Default: ${user.home}/.m2/repository
<localRepository>/path/to/local/repo</localRepository>
-->
<localRepository>C:\Users\59908\.m2\repository</localRepository>
<!-- interactiveMode
| This will determine whether maven prompts you when it needs input. If set to false,
| maven will use a sensible default value, perhaps based on some other setting, for
| the parameter in question.
|
| Default: true
<interactiveMode>true</interactiveMode>
-->
<!-- offline
| Determines whether maven should attempt to connect to the network when executing a build.
| This will have an effect on artifact downloads, artifact deployment, and others.
|
| Default: false
<offline>false</offline>
-->
<!-- pluginGroups
| This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.
| when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers
| "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list.
|-->
<pluginGroups>
<!-- pluginGroup
| Specifies a further group identifier to use for plugin lookup.
<pluginGroup>com.your.plugins</pluginGroup>
-->
</pluginGroups>
<!-- proxies
| This is a list of proxies which can be used on this machine to connect to the network.
| Unless otherwise specified (by system property or command-line switch), the first proxy
| specification in this list marked as active will be used.
|-->
<proxies>
<!-- proxy
| Specification for one proxy, to be used in connecting to the network.
|
<proxy>
<id>optional</id>
<active>true</active>
<protocol>http</protocol>
<username>proxyuser</username>
<password>proxypass</password>
<host>proxy.host.net</host>
<port>80</port>
<nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>
-->
</proxies>
<!-- servers
| This is a list of authentication profiles, keyed by the server-id used within the system.
| Authentication profiles can be used whenever maven must make a connection to a remote server.
|-->
<servers>
<!-- server
| Specifies the authentication information to use when connecting to a particular server, identified by
| a unique name within the system (referred to by the 'id' attribute below).
|
| NOTE: You should either specify username/password OR privateKey/passphrase, since these pairings are
| used together.
|
<server>
<id>deploymentRepo</id>
<username>repouser</username>
<password>repopwd</password>
</server>
-->
<!-- Another sample, using keys to authenticate.
<server>
<id>siteServer</id>
<privateKey>/path/to/private/key</privateKey>
<passphrase>optional; leave empty if not used.</passphrase>
</server>
-->
</servers>
<!-- mirrors
| This is a list of mirrors to be used in downloading artifacts from remote repositories.
|
| It works like this: a POM may declare a repository to use in resolving certain artifacts.
| However, this repository may have problems with heavy traffic at times, so people have mirrored
| it to several places.
|
| That repository definition will have a unique id, so we can create a mirror reference for that
| repository, to be used as an alternate download site. The mirror site will be the preferred
| server for that repository.
|-->
<mirrors>
<!-- mirror
| Specifies a repository mirror site to use instead of a given repository. The repository that
| this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
| for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
|
<mirror>
<id>mirrorId</id>
<mirrorOf>repositoryId</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://my.repository.com/repo/path</url>
</mirror>
-->
<!-- 阿里云倉庫 -->
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
</mirrors>
<!-- profiles
| This is a list of profiles which can be activated in a variety of ways, and which can modify
| the build process. Profiles provided in the settings.xml are intended to provide local machine-
| specific paths and repository locations which allow the build to work in the local environment.
|
| For example, if you have an integration testing plugin - like cactus - that needs to know where
| your Tomcat instance is installed, you can provide a variable here such that the variable is
| dereferenced during the build process to configure the cactus plugin.
|
| As noted above, profiles can be activated in a variety of ways. One way - the activeProfiles
| section of this document (settings.xml) - will be discussed later. Another way essentially
| relies on the detection of a system property, either matching a particular value for the property,
| or merely testing its existence. Profiles can also be activated by JDK version prefix, where a
| value of '1.4' might activate a profile when the build is executed on a JDK version of '1.4.2_07'.
| Finally, the list of active profiles can be specified directly from the command line.
|
| NOTE: For profiles defined in the settings.xml, you are restricted to specifying only artifact
| repositories, plugin repositories, and free-form properties to be used as configuration
| variables for plugins in the POM.
|
|-->
<profiles>
<!-- profile
| Specifies a set of introductions to the build process, to be activated using one or more of the
| mechanisms described above. For inheritance purposes, and to activate profiles via <activatedProfiles/>
| or the command line, profiles have to have an ID that is unique.
|
| An encouraged best practice for profile identification is to use a consistent naming convention
| for profiles, such as 'env-dev', 'env-test', 'env-production', 'user-jdcasey', 'user-brett', etc.
| This will make it more intuitive to understand what the set of introduced profiles is attempting
| to accomplish, particularly when you only have a list of profile id's for debug.
|
| This profile example uses the JDK version to trigger activation, and provides a JDK-specific repo.
<profile>
<id>jdk-1.4</id>
<activation>
<jdk>1.4</jdk>
</activation>
<repositories>
<repository>
<id>jdk14</id>
<name>Repository for JDK 1.4 builds</name>
<url>http://www.myhost.com/maven/jdk14</url>
<layout>default</layout>
<snapshotPolicy>always</snapshotPolicy>
</repository>
</repositories>
</profile>
-->
<!--
| Here is another profile, activated by the system property 'target-env' with a value of 'dev',
| which provides a specific path to the Tomcat instance. To use this, your plugin configuration
| might hypothetically look like:
|
| ...
| <plugin>
| <groupId>org.myco.myplugins</groupId>
| <artifactId>myplugin</artifactId>
|
| <configuration>
| <tomcatLocation>${tomcatPath}</tomcatLocation>
| </configuration>
| </plugin>
| ...
|
| NOTE: If you just wanted to inject this configuration whenever someone set 'target-env' to
| anything, you could just leave off the <value/> inside the activation-property.
|
<profile>
<id>env-dev</id>
<activation>
<property>
<name>target-env</name>
<value>dev</value>
</property>
</activation>
<properties>
<tomcatPath>/path/to/tomcat/instance</tomcatPath>
</properties>
</profile>
-->
<profile>
<id>JDK-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
<!-- activeProfiles
| List of profiles that are active for all builds.
|
<activeProfiles>
<activeProfile>alwaysActiveProfile</activeProfile>
<activeProfile>anotherAlwaysActiveProfile</activeProfile>
</activeProfiles>
-->
</settings>
-
IDEA配置maven
目前常用的開發(fā)工具如idea,eclipse都自身集成了一個版本的Maven羡藐。但是通常我們使用自己已經(jīng)配置好的Maven
最后記得勾選此處贩毕,當修改pom文件時,Maven就能幫我們自動導(dǎo)包了仆嗦。
IntelliJ IDEA遠程部署項目至阿里云服務(wù)器
Cloud Toolkit插件
阿里云提供了基于 Intellij IDEA 的插件辉阶,以方便開發(fā)人員能夠高效的將本地 IDE 中編寫的應(yīng)用程序,極速部署到服務(wù)器中去瘩扼。
Cloud Toolkit官方地址
-
我們這邊直接在idea中下載File>>Setting>>Plugins
下載完后谆甜,重啟Idea編輯器即可。
- 配置Cloud Toolkit插件中的Accout信息(這一步很重要)
這個Accout信息在阿里云的控制臺中配置(如果是新用戶集绰,需要手動創(chuàng)建一個AccessKey)將鼠標放在右上角頭像上规辱,既可以看到AccessKey管理。
官方配置文檔
我這里省事就不用子用戶了栽燕。
創(chuàng)建完后你就可以獲取到一個AccessKey ID與Access Key Secret
-
賬號準備好了罕袋,那我們就去配置吧(Tools>>Alibaba Cloud>>Preferences...)
- 配置服務(wù)器與本地關(guān)聯(lián)(右擊項目>>AlibabaCloud>>Deploy to ESC)
Command官方文檔
1.創(chuàng)建restart-tomcat.sh文件,想創(chuàng)建在哪個目錄就在哪個下執(zhí)行vi restart-tomcat.sh
(后面在Command地方記得改到這個文件目錄下就行)
2.然后按i 進入輸入模式碍岔。復(fù)制下面的指令(LuckyJW這個換成你項目名稱就行浴讯。/tomcat/tomcat9這個就是你tomcat的路徑)
source /etc/profile
# (務(wù)必根據(jù)實際情況自行添加指令執(zhí)行,如:jps -ml. |grep 你要殺死的包名 |xargs. kill)
killall java
rm -rf /tomcat/tomcat9/webapps/LuckyJW
sh /tomcat/tomcat9/bin/startup.sh
3.按esc鍵 輸入 :wq蔼啦!
回車
4.給restart-tomcat.sh文件賦予權(quán)限 執(zhí)行命令:chmod +x restart-tomcat.sh
回車
5.在/etc/profile這個文件上添加
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# 這里換成自己jdk的目錄(我之前已經(jīng)設(shè)置過了榆纽,這個一般都已經(jīng)設(shè)置過的了。)
#java 1.8
export JAVA_HOME=/java/jdk1.8.0_231
export JRE_HOME=/java/jdk1.8.0_231/jre
export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin/$JAVA_HOME:$PATH
6.最后Apply>>Run
7.最后運行程序等待部署
運行成功后會出現(xiàn)下圖
你也可以用瀏覽器測試下
補充下:linux下使用shutdown.sh 關(guān)閉時可能會出現(xiàn)SEVERE: Could not contact [localhost:8005] (base port [8005] and offset [0])錯誤捏肢。(這個問題是因為在tomcat沒完全啟動前就關(guān)閉tomcat)
解決:進入你jdk目錄(/java/jdk1.8.0_231/jre/lib/security)找到j(luò)ava.security文件奈籽。
使用命令
vim java.security
進行編輯按
/securerandom
進行搜索并高亮最后將
securerandom.source=file:/dev/random
改為:
securerandom.source=file:/dev/urandom
這樣就可解決這個問題。這樣修改是提升為啟動tomcat的運行速度鸵赫。
現(xiàn)在你的項目是不是已經(jīng)快樂的運行起來了衣屏?
- 下面是扯犢子的屁話》盍觯可以忽略(我也是第一次自學(xué)后臺勾拉,所以才會有這么多問題煮甥,這么多感慨??)
不不不,你可能還會像我一樣遇到一些頭疼的問題(對于新手藕赞,第一次玩后臺一定會遇到各種奇怪的問題)成肘。
比如:本地運行完美,可已部署到服務(wù)器斧蜕,mysql就連接不上了双霍。
再比如:本地運行完美,可已部署到服務(wù)器批销,就給你報靜態(tài)類加載失敗洒闸。
等等,等等...
這些問題你能發(fā)現(xiàn)那還算好的均芽。畢竟發(fā)現(xiàn)問題就可以解決問題丘逸。
但是對于很多新手來說,本地問題可以看idea上的log日志掀宋∩罡伲可是云服務(wù)器上的日志在哪呢?怎么看呢劲妙?(網(wǎng)上很多東西湃鹊,對于用過的人來說,人家一看就懂镣奋,但是對于萌新來說币呵,真的不一定懂。)
我當時按他們步驟操作侨颈,就是不行余赢。最后冷靜下來分析,問題出在哪里哈垢。對没佑,遇到問題一定要自己理解,自己分析温赔。很多東西別人覺得很簡單,隨便幾個命令就可以了鬼癣。但是這命令里面什么意思你懂嗎陶贼?這命令里面那些地方需要換成自己本地的路徑你懂嗎?你都不知道待秃。所以你就會出現(xiàn)拜秧,照著大神的命令敲,還是解決不了問題章郁。
好了枉氮,自我吐槽就到這里了志衍。 - 吐槽結(jié)束.............
如何查看云服務(wù)上的日志
方法1:(推薦用方法2??)
使用Xftp工具,或者命令進入到你tomcat目錄下的logs目錄聊替。里面就有記錄你服務(wù)器的錯誤日志楼肪,然后根據(jù)你當時訪問服務(wù)器的時間,找到對應(yīng)時間的日志惹悄,然后導(dǎo)出來查看春叫,分析。
看上去很簡單吧泣港。但是你第一次接觸后端暂殖。你可能和我一樣還真不知道在哪里看。
方法1有些麻煩当纱,對于開發(fā)來說呛每,懶那都是通病。因為懶坡氯,才能創(chuàng)新出更多幫助你偷懶的工具??晨横。
方法2:實時查看服務(wù)器日志。
這也得感謝偉大的阿里大神們廉沮。讓我們節(jié)省更多的時間去打游戲颓遏,不不不,說錯了滞时,是去學(xué)習(xí)??
方法2也很簡單叁幢。因為我們之前已經(jīng)配置了Alibaba Cloud遠程部署項目了。所以我們只需要在添加一部就可以了坪稽。(如果還不會用Alibaba Cloud遠程部署的可以看看上面我寫的《IntelliJ IDEA遠程部署項目至阿里云服務(wù)器》)
①和上面一樣:右擊項目>>AlibabaCloud>>Deploy to ESC
②選擇Advanced
③在Command中輸入命令(命令中的/tomcat/tomcat9曼玩,換成你自己服務(wù)器tomcat的路徑)
tail -f /tomcat/tomcat9/logs/catalina.out -n200
④勾選Automatic open after deploy
⑤運行 run
這樣就大功告成了
這樣就可以看到實時錯誤日志啦。
上一篇:Lint常見的問題及解決方案
下一篇:APK反編譯工具使用教程