11.Nas_1


새창 작성 수정 목록 링크 Edit G카랜다 HDD HDD HDD 게시물 주소 복사


작업)U5PVR / MINI 리눅스 펌웨어 데비안9 Stretch 업데이트 (베타)_phpmyadmin 재설치 error발생

♨ 카랜더 일정 :
  • 링크

  • 첨부

  • 컨텐츠 정보

    본문

    U5PVR / MINI 리눅스 펌웨어 데비안9 Stretch 업데이트 (베타) |

    https://cafe.naver.com/mk802/30960

    을 참조 하여 작업 진행 합니다

    1차) 정상 linux 설치상태이며 web 폴더및 기타 개인 설정 상태입니다

    제작님의 초기 linux 설치후 진행에 대한 권고사항이 있는데

    저는 혹시 모르는 문제로 복원하기 위하여 지금 백업을 완료후 진행 합니다 

    3232235521_1553682303.1157.png

    유튜브는 https://youtu.be/emOYK9ALO7I  참조 명령어순으로 진행  합니다

    putty 접속

    3232235521_1553680734.2891.png

    스크립트 복사 실행

    wget https://github.com/djjproject/android_over_linux/raw/master/stretch-upgrade.sh

    chmod a+x stretch-upgrade.sh 

    ./stretch-upgrade.sh 

    10분이상 설치후 잠시 화면이 정지 됩니다

    Keep the local version currently installed 를 선택

    3232235521_1553682236.3939.png


    3232235521_1553682382.8826.png
    3232235521_1553682403.7464.png

    phpmyadmin 설정은 다음과 같이 ignore 로 진행 하면  설치 완료 됩니다(이하 참조)

    3232235521_1553682476.9476.png

    3232235521_1553682515.0908.png

    3232235521_1553682530.9131.png

    3232235521_1553682547.981.png'

    이번에는 retry 로 진행

    3232235521_1553682584.2844.png

    3232235521_1553682617.1761.png

    3232235521_1553682633.0389.png

    이번에는 ignore 로 진행

    3232235521_1553682672.068.png

     아래와같이 완료  19시 시작  19시30분 완료

    3232235521_1553682768.1065.png

    reboot

    3232235521_1553682839.0392.png

    putty 접속 화면 확인

    3232235521_1553682960.9603.png

    http://192.168.0.108/

    기존 web 폴더 변경 경로 정상

    3232235521_1553683005.2481.png

    tvheadend 정상 설정값 불러옴

    http://192.168.0.108:9981/extjs.html

    3232235521_1553683072.3785.png

    3232235521_1553683473.4438.png

    crontab -e 

    정상

    3232235521_1553683153.3279.png


    klive 상기 crontab -e 에 설정값 정상 부팅 설정으로 

    klive/output 마운트 된것  m3u 파일 다음팟에서 정상 시청 됩니다

    3232235521_1553683263.3362.png

    http://192.168.0.108:9801/m3u

    정상

    3232235521_1553683343.1987.png

    http://192.168.0.108:9801/m3uall

    3232235521_1553683404.1076.png

    //192.168.0.108:9801/epg

    3232235521_1553683366.9916.png

    php v

    3232235521_1553685240.3867.png

    .xml.sh

    정상 실행 됩니다

    -------------

    cd /mnt/media_rw/mmcblk1p1/www/html/epg

    php epg2xml.php -o xml.xml

    chmod 777 *.xml

    cp xml.xml xmltv.xml

    ---------- 

    문제점 

    http://192.168.0.108/phpmyadmin/

    는 에러 발생 합니다 

    3232235521_1553683928.2613.png

    phpmyadmin  을 설정 합니다

    https://cafe.naver.com/mk802/20363

    apt-get purge phpmyadmin

    3232235521_1553685832.9401.png
    apt-get install phpmyadmin
    apt install libapache2-mod-php
    service apache2 restart

    설치후 해도  아래 상태 메세지가 나오네요

    3232235521_1553686429.6003.png
    ==========================================
    초기부터 펌웨어/linux  재설치후 phpmyadmin 접속불가능 해결및 설치 변경 정보
    펨웨어 재설치 // linux초기 설치 > apm 설치후 phpmyadmin 접속 불가능
    -------------------------------------

    Home » Troubleshooting » Solved: phpmyadmin #1698 - Access denied for user 'root'@'localhost'
    Solved: phpmyadmin #1698 - Access denied for user 'root'@'localhost'


    Solved: phpmyadmin #1698 - Access denied for user 'root'@'localhost'
    Mysql tries to authenticate root using plugin, not password. You need to disable plugin usage for root.

    shell$ sudo mysql -u root

    [mysql] use mysql;
    [mysql] update user set plugin='' where User='root';
    [mysql] flush privileges;
    [mysql] \q

    -------------
    root@AOL-Debian:~# netstat -tupan | grep mysql
    tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      8090/mysqld
    root@AOL-Debian:~#  mysql -u root
    Welcome to the MariaDB monitor.  Commands end with ; or \g.
    Your MariaDB connection id is 36
    Server version: 10.1.26-MariaDB-0+deb9u1 Debian 9.1

    Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

    MariaDB [(none)]> use mysql;
    Reading table information for completion of table and column names
    You can turn off this feature to get a quicker startup with -A

    Database changed
    MariaDB [mysql]> update user set plugin='' where User='root';
    Query OK, 1 row affected (0.01 sec)
    Rows matched: 1  Changed: 1  Warnings: 0

    MariaDB [mysql]> flush privileges;
    Query OK, 0 rows affected (0.00 sec)

    MariaDB [mysql]>  \q
    Bye
    root@AOL-Debian:~#
    ==============
    이후 접속 가능 합니다....
    3232235521_1553881849.3572.png

    3232235521_1553882183.5179.png

    =========
    의 설치 정보 에서 

    3232235521_1553882411.1795.png

    root@u5pvr-debian:~# nano /etc/apache2/apache2.conf


    ServerName localhost

    Include /etc/phpmyadmin/apache.conf


    root@u5pvr-debian:~# service apache2 restart

    [ ok ] Restarting web server: apache


    ◎ ■ ▶ ☞ ♠ 정보찾아 공유 드리며 출처는 링크 참조 바랍니다. https://11q.kr ♠

    [이 게시물은 shimss@11q.kr님에 의해 2019-03-27 20:46:06 12.Nas_S_BBS_s12에서 이동 됨]
    [ 추가 정보 ... 더보기) ]
    뷰PDF 1,2



    office view

    관련자료

    댓글목록

    profile_image

    shimss@11q.kr님의 댓글

    shimss@11q.kr 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 아이피 (192.♡.0.1) 작성일
    profile_image

    shimss@11q.kr님의 댓글

    shimss@11q.kr 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 아이피 (192.♡.0.1) 작성일

    Solved: phpmyadmin #1698 - Access denied for user 'root'@'localhost'
    Mysql tries to authenticate root using plugin, not password. You need to disable plugin usage for root.

    shell$ sudo mysql -u root

    [mysql] use mysql;
    [mysql] update user set plugin='' where User='root';
    [mysql] flush privileges;
    [mysql] \q

    목록

    새창 작성 수정 목록 링크 Edit G카랜다 HDD HDD HDD 게시물 주소 복사




    Total 1,677 / 1 Page
    [ iptime n604s 공유기 설정 ddns_dmz_무선설정_원격 ]

    ♥◎ 네이버에서 [https://11q.kr 홈피] 검색 찾아오세요 ◎\n[이 게시물은 관리자님에 의해 2013-11-18 21:29:50 11…

    [ webvista/webfilebrowser/ckfinder ] 댓글 3

    ◎ 네이버에서 [https://11q.kr 홈피] 검색 찾아오세요 ◎http://www.gleamtech.com/http://webfilebro…

    [ Ext2 Installable File System For Windows ]

    ♥◎ 네이버에서 [https://11q.kr 홈피] 검색 찾아오세요 ◎\r\nWhat's unique about this software?\r\…

    [ new.php 호출시 head.php속에 그림불러오기 error 에 대한 m_path 추가 ]

    new.php 호출시 head.php속에 그림불러오기 error 에 대한 m_path 추가\r\nnew.php에 다음을 추가\r\n\n[이 게시…

    [ 불당썸, 에디터 사용시 썸네일 생성 에러 근본적인 해결방법 ]

    불당썸, 에디터 사용시 썸네일 생성 에러 근본적인 해결방법 \r\n\r\n 리리치요 \r\n작성일시 2013.01.25 18:41:15 \r\n…

    [ 전체게시물 (new.php) 불러오기에서 이미지를 불러오고 싶은데요.. ]

    .전체게시물 불러오기에서 이미지 추출방법 좀 알려주세요??채택됨뱅마까치작성일시2013.03.23 23:02:41조회167댓글8전체게시물 (new…

    [ 글제목을 크릭시 링크1으로 이동하기 ]

    이미지+제목 롤링 최신글입니다.이미지와 제목이 함께 돌아갑니다.skin -> latest 폴더에 업로드 후<?=latest("hn_r…

    [ amina 스킨 홈 페이지 수정 상단 자동메뉴 automenu 아미나스킨 테마에 적용 ] 댓글 1

    .amina 스킨 홈 페이지 수정 상단 자동메뉴 automenu 아미나스킨 테마에 적용\r\n\r\n<!-- gnb 시작--><…

    [ 림스 모바일 빌더 - jquery mobile Update - 업데이트 까지 m.zip ] 댓글 2

    림스 모바일 빌더 - jquery mobile Update - 업데이트파일명/업데이트제목작성일수정버젼조회m/skin/write.skin.basi…

    [ [게시판] 상단 메뉴 그룹>게시판 자동 메뉴[추천] ]

    [게시판] 상단 메뉴 그룹>게시판 자동 메뉴글쓴이 :이빌더스조회 : 2,680 추천 : 21 스킨화.zip (18.6K)[94]DATE :…

    [ 블로그나 홈페이지에 BGM 넣기(시계와 날씨창(600종) 큐브) ]

    블로그나 홈페이지에 BGM 넣기(시계와 날씨창(600종) 큐브)전체공개무료BGM 설치하기 팁|2008/01/30 17:30http://blog.…

    [ amina thema 설정변경 파일 위치 ]

    ###■ https://11q.kr는 정보를 찾아 공유 합니다..■ https://11q.kr\r\n\r\n\r\n\r\n\n[이 게시물은 관리…

    [ 배추 라이트와 아미나 스킨 테마 적용 ]

    배추 라이트와 아미나 스킨테마 적용\n[이 게시물은 관리자님에 의해 2013-11-17 19:08:52 11.H_BBS에서 이동 됨]\n[이 게…

    [ 시놀로지 서버 자료 공유하기 sw공유 방법 ]

    시놀로지 diskstation의 filestation의 파일 공유 방법은 패스워드를 입력해야 공유됨\r\n\r\n\n[이 게시물은 관리자님에 의…

    [ disk station에 로그인할 권한이 없습니다라는 메세지가 뜹니다 외부ip ddns또는 특정 pc 접속… ] 댓글 2

    disk station에 로그인할 권한이 없습니다라는 메세지가 뜹니다 외부ip ddns로 집에서 접속하니 dsm이 접속이되지 않음- 저는 내부 …

    [ filestation에서 디랙토리가 삭제되지 안음 해결 ]

    11q.kr 는 네이버/구글에서 검색 찾아오세요\r\n----------------------------------------------file…


    ♥간단_메모글♥


    최근글


    새댓글



    PHP 안에 HTML ☞ 홈페이지 화면갱신 시간은 ♨
    ▶ 2024-06-28 11:21:11

    오늘의 홈 현황


    • 현재 접속자♨ 547 명
    • 오늘 가입자※ 0 명
    • 어제 가입자※ 4 명
    • 주간 가입자※ 7 명
    • 오늘 방문자 1,360 명
    • 어제 방문자 2,126 명
    • 최대 방문자 13,042 명
    • 전체 방문자 4,400,515 명
    • 전체 게시물※ 8,661 개
    • 전체 댓글수※ 24,781 개
    • 전체 회원수 11,072 명

    QR코드


    ☞ QR코드 스캔은 kakao앱 자체 QR코드

    알림 0








    최신글↑