CentOS에서 Mysql,MariaDB,JDK 설치방법들
2021. 9. 14. 15:13ㆍ리눅스
반응형
맨 아래에 JDK를 설치하는것중 openJDK와 openJDK-devel 이 있다.
개발적으로 조금 더 추가된 JDK인듯하다
stackoverflow에서 찾아본결과 아래와 같이 설명했다.
- java-1.7.0-openjdk.x86_64 is the package containing the JRE
- java-1.7.0-openjdk-devel contains the development stuff (basically things you should not need, if you only want to run Java applications).
Q6. centOS7 에서 MySQL 설치법은?
- yum -y install http://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
- yum -y install mysql-community-server
- systemctl start mysqld
- vi /var/log/mysqld.log
- mysql -u root -p
- ALTER USER 'root'@'localhost' IDENTIFIED BY 'ktlitgood12!@'
- FLUSH PRIVILEGES;
- vi /etc/my.cnf my.cnf update (UTF-8)
- systemctl restart mysqld
- mysql -u root p ktlitgood12!@
- status
Q7. centOS7 에서 MariaDB 설치법은?
- vi /etc/yum.repos.d/MariaDB.repo
- yum install MariaDB
- rpm -qa | grep MariaDB
- mariadb --version
- systemctl start mariadb
- /usr/bin/mysqladmin -u root password 'ktlitgood12!@'
- netstat -anp | grep 3306
- vi /etc/my.cnf my.cnf update (utf8)
- systemctl restart mariadb
- mysql -u root p ktlitgood12!@
- show variables like 'c%'
- systemctl enable mariadb
- systemctl is-enabled mariadb
[참조 사이트] https://bamdule.tistory.com/59
Q8. centOS7 에서 Tomcat 설치법은?
- http://tomcat.apache.org/ tar.gz file download
- tar -zxvf apache-tomcat-7.0.xx.tar.gz
- mv apache-tomcat-7.0.xx (이전 서버 경로)
- (이전 서버 경로)/bin ./startup.sh ./shutdown.sh
- ps -ef | grep tomcat
- netstat -anp | grep java
[참조 사이트] https://jeongyd.tistory.com/51
Q9. centOS7 에서 JDK 설치법은?
- yum list all | grep java-1.7
- yum install java-1.7.0-openjdk.x86_64 << jre용!
yum install java-1.8.0-openjdk-devel.x86_64 << 진짜 jdk(개발자용 devel)
- alternatives --config java
- java -version
반응형
'리눅스' 카테고리의 다른 글
리눅스 sudo권한 부여 및 비밀번호 없이 sudo 사용하게 하기(wheel그룹) (0) | 2023.12.28 |
---|---|
SSH key사용하여 접근(신규계정 추가시) (1) | 2023.12.28 |
CentOS에서 netstat 사용하는방법 (0) | 2021.09.14 |
CentOS 설치 후 yum 명령어 안될때 해결방법 (0) | 2021.09.14 |
VM으로 설치한 Ubuntu 용량증가 방법 (0) | 2021.09.14 |