Back-End/리눅스

CentOS에서 로그인 시 bash-4-2$ 가 나올때조치 방법 login as: root root@~~~'s password: Last login: Thu Dec 2 09:29:21 2021 from 172-10-200-123.lightspeed.rcsntx.sbcglobal.net bash-4.2$ 홈디렉토리에 설정파일이 잘못되어서 나오는 현상인데 홈디렉토리를 만들던지 있는 홈 디렉토리에 가서 /etc/skel/ 안에 있는 설정파일들을 가져와서 권한설정을 해주고 cp -rp /etc/skel/.b* /home/sample chown -R sample.sample /home/sample 다시 접속해 보면 bash-4.2$이 나오지 않는것을 확인 가능합니다.
확인 방법 $ which watch /usr/bin/watch 사용법 $ watch --help Usage: watch [options] command Options: -b --beep beep if command has a non-zero exit -c --color interpret ANSI color and style sequences -d --differences[=] highlight changes between updates -e --errexit exit if command has a non-zero exit -g --chgexit exit when output from command changes -n --interval seconds to wait between updates -p --p..
postgresql 버전 확인 명령어 psql -V login as: root root@ ~'s password: Last login: Wed Nov 18 16:04:22 2020 from ~ [root@ ~ ]# [root@ ~ ]# psql -V psql (PostgreSQL) 9.6.14 [root@ ~ ]# psql 접속 방법 psql -U postgres [root@ ~ ]# psql -U postgres Password for user postgres: psql (9.6.14) Type "help" for help. postgres=# \list List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges ---..
쉘 스크립트를 만드려는 위치로 이동하여 아래와 같이 vi test.sh을 입력해 주면 빈 화면이 나오는데 텍스트를 입력하기 위해서 a 키를 한번 눌러준 후에 #!/bin/bash echo "test!!" 위와 같이 입력해 줍니다. 그 후 ecs 키를 눌러주고 :wq 를 입력해 주면 저장후 밖으로 나와집니다. 방금 입력한 쉘 파일을 확인하려면 ./test.sh 을 입력해 주면 확인 할 수 있습니다.
rpm -qa | grep tomcat 명령어를 입력해 주면 버전 확인이 가능합니다.
httpd 위치 확인을 위해 ps -ef | grep httpd 명령어를 입력 해 준 후 해당위치/httpd -v 를 입력해주변 버전 확인이 가능합니다.
- 광속거북이 -
'Back-End/리눅스' 카테고리의 글 목록 (2 Page)