Linux 471

iptables install for rocky 8.x

rocky 8.x 환경에서는 firewalld 방화벽이 기본적으로 적용 되어 있다.상황에 맞게 firewalld 이 아닌 iptables 를 설치해서 사용해야 한다면 별도로 iptables 를 설치해줘야 한다. 우선 firewalld 비활성화 해주자# systemctl stop firewalld # systemctl disable firewalld iptables 설치 # dnf install iptables-services iptables-utilsiptables 설치가 완료 되었다.서비스 시작 & 활성화 # systemctl start iptables # systemctl enable iptables iptables 세부 설정은 # vi /etc/sysconfig/iptables수정하면 된다.

Linux 2024.09.15

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by '12345qwert' with grant option' at line 1

mysql 계정 생성 할때mysq 8.x 이하 버전에서는grant all privileges on confluence.* to confluence@localhost identified by '12345qwert@' with grant option;이렇게 명령어를 적었지만 이렇게 적으면ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by '12345qwert' with grant option' at line 1에러가 뜬다.mysql 8.x 버전 이상일때는crea..

Linux 2024.09.14

bitnami redmine 4.2.1-3 테마 변경

bitnami redmine 4.2.1-3  테마 변경https://ko.easyredmine.com/news/most-popular-redmine-themes 가장 인기 있는 Redmine 테마 - Easy RedmineRedmine의 기능과 유용성을 향상시켜 귀하의 요구에 맞는 강력한 도구로 만드는 인기 있는(및 무료) Redmine 테마를 탐색해 보세요.ko.easyredmine.com테마는 여러가지가 있다. 그중 유명한 PurpleMine2 를 적용해보자.https://github.com/mrliptontea/PurpleMine2위 사이트 가서 최신 버전을 다운 받자.다운 받은 파일을/opt/redmine-4.2.1-3/apps/redmine/htdocs/public/themes경로에 압축을 풀고..

Linux 2024.08.25

bitnami redmine 4.2.1-3 사용자 계정 암호 변경 방법

bitnami redmine 4.2.1-3 사용자 계정 암호 변경 방법뭐.. 제일 간단한 방법은 웹상에서 들어가서 변경하면 되는데 관리자 계정을 암호를 까먹었다면...?!! mysql로 작업해줘야 한다.bitnami redmine 으로 설치를 했다면 mysql 경로가 다르다./opt/redmine-4.2.1-3/mysql/bin/mysql 로 구동을 해야 bitnami redmine  DB 으로 들어갈수 있다.# mysql -u root -p (초기설정할때 암호)> show databases; bitnami_redmine 있는거 확인후> use bitnami_redmine;db 선택후> select * from users;관리자 계정은 admin 이다. 이걸 암호 변경해주려면 살짝 복잡하다.hashed ..

Linux 2024.08.18

centos 7 repo , epel url 2024 version

centos 7 repo , epel  url 2024 versioncentos 7 더이상 지원을 하지 않기 때문에 repo 주소가 다 안먹는다. centos 7 repo 주소는[base] name=CentOS-$releasever - Base #mirrorlist=http://yum/?release=$releasever&arch=$basearch&repo=os baseurl=https://vault.centos.org/7.9.2009/os/$basearch/gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 skip_if_unavailable = 1 keepcache = 0 #released updates [updates] name=CentO..

Linux 2024.08.06

redmine plugin 설치시 에러 관련 Redmine::PluginRequirementError

redmine plugin 설치시 에러 관련 Redmine::PluginRequirementError# bundle exec rake db:migrate RAILS_ENV=production (in /opt/redmine) rake aborted! Redmine::PluginRequirementError: easy_wbs plugin requires the easy_mindmup plugin /opt/redmine/lib/redmine/plugin.rb:280:in `rescue in requires_redmine_plugin' /opt/redmine/lib/redmine/plugin.rb:277:in `requires_redmine_plugin' /opt/redmine/plugins/wbs/init.r..

Linux 2024.08.05

bitnami redmine 4.2.1-3 default url 주소 변경하기

bitnami redmine 4.2.1-3 default url 주소 변경하기설치를 하면 https://localhost/redmine 으로 접속을 해야 한다.뭐 문제가 될건 없지만 좀 귀찮다. https://localhost/로 접속 하는 방법이 있다.# cd /opt/redmine-4.2.1-3/apps/redmine# ./bnconfig --appurl /이렇게 해주면 된다.# /opt/redmine-4.2.1-3/ctlscript.sh restart그리고 서비스 재시작해주면https://localhost/로 접속이 된다. 혹시나 원복을 해보려고 했으나..https://docs.bitnami.com/general/faq/configuration/understand-bnconfig/ Learn abo..

Linux 2024.07.31

redmine upgrade 방법

redmine upgrade 방법bitnami 로 upgrade 방법을 여러가지 찾아보고 해봤는데 잘 안된다. 기본적으로 bitnami 패키지로 되어 있기 한번에 설치가 손쉽지만 업그레이드 할때 힘들다. 지금처럼 bitnami 가 더이상 업그레이드 지원이 없는 경우는 더 그렇다.우선 백업(혹시 모르니)mysql 이 제일 중요하다. # mysqldump -u root -p redmine 이렇게 데이터 백업을 해주고# /opt/redmine 디렉토리 전체 백업이렇게 해주기만 하면 백업은 끝이다.최신 버전을 다운 받자.# cd /opt/# wget https://www.redmine.org/releases/redmine-5.1.3.tar.gz# tar -xvf redmine-5.1.3.tar.gz# mv re..

Linux 2024.07.25

mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces

mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespacesmysqldump 를 실행하는데 위와 같이 에러가 발생을 한다면 권한이 없어서 발생 하는 에러 이다.GRANT PROCESS ON *.* TO '에러라는 계정이름'@'localhost'; FLUSH PRIVILEGES;이렇게 명령어를 쳐주면 된다.

Linux 2024.07.22
728x90
320x100