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,675 / 52 Page
    [ phpMyAdmin 한글화 방법 자료 ]

    이전에 번역되어 사용되고 있던 데이터를 참고로 하여 부분적으로 수정 하였습니다.phpmyadmin.mo위 파일을 받아서 /locale/ko/LC…

    [ 못쓰는 스마트폰 활용 성공..ipcamera..ㅎ ]

    못쓰는 스마트폰 활용 성공..ipcamera.http://www.todaysppc.com/mbzine/bbs/view.php?id=free&am…

    [ ds106,ds107,ds109로 펌웨어 변신 성공 ] 댓글 1

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

    [ [림스업] 배추 게시판 림스모바일 사용시 삭제 않되는 문제 추가 m/bbs/delete.php에 스킨 경로… ]

    // 배추 게시판 림스모바일 사용시 삭제 않되는 문제 추가 m/bbs/delete.php에 스킨 경로 #3추가시작// 스킨경로 추가 내용$boa…

    [ 메인샘플 - v3_amina ] 댓글 1

    \r\n모바일 아미나 테마스킨 V3을 pc모드에 올리고 싶습니다\r\n\r\n\r\n\r\n LV 4 심봉사\r\n 신고\r\n 글주소\r\n …

    [ usb2 3.5외장하드와 타임백업후 먹통 ]

    ###\r\n타임백업 usb2에 연결시 먹통\r\n■ https://11q.kr는 정보를 찾아 공유 합니다.. https://11q.kr

    [ 홈페이지 수정시 editplus 대용으로 간편한 notepad2_4.2.25_x86 입니다 ] 댓글 3

    ###홈페이지 수정시 editplus 대용으로 간편한 notepad2_4.2.25_x86 입니다totalcmd를 사용하는 분는notepad2_4…

    [ 시놀로지 NAS DS712+ 제품 리뷰사진 ]

    >\r\n>\r\n■ shimss home 는 내일을 위하여 정보를 찾\r\n아 공유 합니다. https://11q.kr.com\r\…

    [ azuploader 대용량 업로드 스킨 댓글 가능 변경 ] 댓글 3

    azuploader 대용량 업로드 스킨 댓글 가능 변경\r\n\r\n♠\r\n♠ shimss home 는 https://11q.kr.com 시놀…

    [ 일반 윈도우와 윈도우 서버와의 차이점은 무엇인가요? ]

    일반 윈도우 제품군 보다, 서버 제품군이 다음의 면에서 더 중요하게 다루고 있습니다.메모리의 최대 지원 크기많은 프로세서(CPU)의 수네트워크 …

    [ piwigo 설정) 모든언어가 활성화 되어 있으면 기본 LOGOUT 상태에 디랙토리 정보에 कोंकणी [I… ]

    piwigo 설정)모든언어가 활성화 되어 있으면 기본 LOGOUT 상태에 디랙토리 정보에कोंकणी [IN] 언어가 보이는것 디폴트( 한글언어)…

    [ 외부연결 또는스마트폰 lte 연결로 dsm/homepage avast 인터넷시큐리티 hanaro Telec… ]

    외부연결 또는 스마트폰 lte 연결로 dsm/homepage avast 인터넷시큐리티 hanaro Telecom inc 비공개 설정으로 연결 문…

    [ 공유기 포트개방 dmz와 포트포워딩 차이 ]

    서버사용자가 공유기 초기화 후 포트포워딩 입럭관리기 소일거리라면 dmz로 내부 ip 하나로 해결하세요>\r\n>\r\n>\r\n…


    ♥간단_메모글♥


    최근글


    새댓글



    PHP 안에 HTML ☞ 홈페이지 화면갱신 시간은 ♨
    ▶ 2024-06-26 18:45:56

    오늘의 홈 현황


    • 현재 접속자♨ 731 명
    • 오늘 가입자※ 1 명
    • 어제 가입자※ 2 명
    • 주간 가입자※ 8 명
    • 오늘 방문자 2,139 명
    • 어제 방문자 2,051 명
    • 최대 방문자 13,042 명
    • 전체 방문자 4,396,746 명
    • 전체 게시물※ 8,656 개
    • 전체 댓글수※ 24,773 개
    • 전체 회원수 11,069 명

    QR코드


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

    알림 0








    최신글↑