본문 바로가기
반응형

Development Solutions/Linux15

How to change crt certificate format to pem format in linux ubuntu (리눅스 우분투에서 crt인증서 포맷을 pem 포맷으로 바꾸는 방법) How to change crt certificate format to pem format in linux ubuntu (리눅스 우분투에서 crt인증서 포맷을 pem 포맷으로 바꾸는 방법) 인증서 인증을 위해 crt파일을 pem형식의 인증서로 변환해야할 때가 있다. 이럴 땐 아래 명령어를 사용하면 간단히 포맷을 변환할 수 있다. (There are times when you need to convert a crt file into a pem-format certificate for certificate authentication. In this case, you can easily convert the format by using the command below.) $ sudo openssl x509 -.. 2022. 10. 5.
How to register root ca in ubuntu (우분투에서 root ca 인증서 등록하는 방법) How to register root ca in ubuntu (우분투에서 root ca 인증서 등록하는 방법) 우분투를 회사와 같은 조직에서 개발용으로 사용하다보면 인증서와 관련된 에러와 맞딱드리기 일수다. 이럴 때는 회사에서 인정하는 루트 인증서를 우분투 시스템에 등록해야한다. 물론 루트 인증서는 각 회사의 보안 및 인프라 관련 팀에 문의해서 얻어야겠다. (If you use Ubuntu for development in an organization such as a company, you may encounter errors related to certificates. In this case, you need to register a root certificate recognized by the co.. 2022. 10. 5.
[Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기) [Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기) 리눅스의 OpenSSH 설정 파일에서 포트 번호를 수정 또는 추가하면 된다. (You can edit or add the port number in the Linux OpenSSH configuration file.) sudo vim /etc/ssh/sshd_config #Port 22 -> Port 22 -> Port 2022 service sshd restart 또는 /etc/rc.d/init.d/sshd restart 2022. 9. 3.
[Linux] How to fix NFS mount Permission denied (NFS mount Permission denied 해결 방법) [Linux] How to fix NFS mount Permission denied (NFS mount Permission denied 해결 방법) 1. vi /etc/exports 마운트할 디렉토리 경로, 설정이 올바르게 되어있는지 확인 ex) /home/nfs *(rw, root_squash) (root_squash: 클라이언트도 서버의 마운트 디렉토리 내에서 root 권한 가짐) (Check if the directory path to mount and settings are correct ex) /home/nfs *(rw, root_squash) (root_squash: the client also has root privileges within the server's mount directory.. 2022. 8. 30.
반응형