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 126 / 1 Page
    [ 작업)20180729 iptv 채널 작업 인터넷 라디오 채널 추가 했습니다 ] 댓글 317

    작업)20180729 iptv 채널 작업 인터넷 라디오 채널 추가 했습니다 여기에 /20180729_SKBTV_Radio_11q.kr_skbtv…

    [ 18년추석최종선물2) epg2xnl_v126_최종자료 공유및 iptv채널 수정정보 입니다 ] 댓글 182

    추석최종선물2) epg2xnl_v126_최종자료 공유및 iptv채널 정보 입니다https://11q.kr/g5s/bbs/board.php?bo_…

    [ 사용기 성공 _ 추천_펌)iptv 채널 간단 서치 OMVS 대치 프로그램_MctvPlaylistCreator… ] 댓글 204

    결론)너무나 간편하게 채널 서치 합니다.해당 iptv의 ip를 알아 봅니다., skb-tv의 Port는 49220 입니다mabc는 239.192…

    [ 설치방법)시놀로지 docker 로 tvheadend 기존 안정 버전으로 초간단히 명령어로 설치하기 ] 댓글 3

    설치방법)시놀로지 docker 로 tvheadend 기존 안정 버전으로 초간단히 명령어로 설치하기간단 명령어로 putty로 tvh 실행 설치하기…

    [ 성공)시놀로지 작업스케줄러로 xmltv.xml만들어 도커 epg2xml를 epg그래버모듈 tv_grab_정보… ] 댓글 34

    성공)시놀로지 작업스케줄러로 xmltv.xml만들어 도커 epg2xml를 epg그래버모듈 tv_grab_정보 갱신 3초 스피트하게 업데이트 하기…

    [ 성공)MctvPlaylistCreator_to_tvhelper로png파일만들어_EPG채널이름지정하기및 201… ] 댓글 51

    MctvPlaylistCreator_to_tvhelper로png파일만들어_EPG채널이름지정하기아래 관련 파일 모두 저장 보관 합니다.MctvPl…

    [ 추천)구글 TV 플레이어 마켓에서 iptv 시청 플레이 녹화가능하며 타임쉬프트 가능한 progtv.apk … ] 댓글 10

    구글 TV 플레이어 마켓에서 iptv 시청 플레이 녹화가능하며 타임쉬프트 가능한 progtv.apk 추천한글화 버전 파일https://11q.k…

    [ 펌업)EPG XML 윈도우용 프로그램 및 사용기_작업실패 ] 댓글 5

    펌업)EPG XML 윈도우용 프로그램 및 사용기너무나 간편한 epg파일을 만드는 유용한 프로그램입니다저는 실패 했습니다-----------실패 …

    [ 펌자료)tvheadend 설치법 링크모음 ] 댓글 3

    xpenology 5.0 에 tvheadend 설치법 링크모음을http://www.ppomppu.co.kr/zboard/view.php?id=n…

    [ 우분투)18.04 에 tvheadend 설치 windows 10 vmware workstation 15 파… ] 댓글 30

    우분투 18.04 에 tvheadend 설치windows 10 vmware workstation 15 입니다헤놀로지는 트랜스코딩을 못해 사용불가…

    [ u5pvr의 자체epg생성하여 시놀서버에 다운로드및 시놀도커 epg 를 웹서버에 복사하기 ]

    u5pvr의 자체epg생성하여 내부ip의 iptv에서 xmltv.xml를 사용못해 시놀로지로 서버로 다운로드 하여iptv에서 epg정보 불러오기…

    [ 정보)♥♥♥iptv.m3u 파일 그룹제거 perfect player 나 progtv 에서 리모컨우측 방향… ] 댓글 3

    정보)♥♥♥iptv.m3u 파일 그룹제거 perfect player 나 progtv 에서 리모컨우측 방향키로 한페이지 채널정보 넘기기https:…


    ♥간단_메모글♥


    최근글


    새댓글



    PHP 안에 HTML ☞ 홈페이지 화면갱신 시간은 ♨
    ▶ 2024-06-25 14:24:57

    오늘의 홈 현황


    • 현재 접속자♨ 661(1) 명
    • 오늘 가입자※ 2 명
    • 어제 가입자※ 0 명
    • 주간 가입자※ 11 명
    • 오늘 방문자 1,440 명
    • 어제 방문자 1,287 명
    • 최대 방문자 13,042 명
    • 전체 방문자 4,393,996 명
    • 전체 게시물※ 8,653 개
    • 전체 댓글수※ 24,770 개
    • 전체 회원수 11,068 명

    QR코드


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

    알림 0








    최신글↑