What's new
Panelica Community Forum

Welcome to the official Panelica Community Forum — the central hub for server administrators, developers, and hosting professionals. Register a free account today to access technical discussions, product announcements, feature requests, and direct support from the Panelica team. Be part of the growing community shaping the future of server management.

Solved Deployda build almıyor

tailadmin

New member
Beta Access
Hiç bir şey değişmedi son buildten sonra, aynı build'i korumalı dosya ile almak istedim, silinip silinmeyeceğini görmek için bu şekile hata verdi. sonra korumalı dosyayı ayarladan kaldırdım ama yine hata verdi. Site kapandı 500 e düştü terminalden manuel npm run build aldım oda dosya sahibini root yaptı, dosya yöneticisini panelden değiştirmek istediğimde tailadmin kullancısı görünmüyor, bir üst dizindeki dosyaların sahibini deği.ştirmek istediğimde görünüyor.

[3/5] Deploying files...
Preserved in target: dist/app-ads.txt
sending incremental file list
./
package-lock.json
rsync: [generator] chgrp "/home/tailadmin/tailadmin.dev/public_html/dist/assets" failed: Operation not permitted (1)
dist/
dist/favicon.ico
dist/index.html
dist/assets/
dist/assets/index-BMur3Gu8.js
rsync: [receiver] mkstemp "/home/tailadmin/tailadmin.dev/public_html/dist/assets/.index-BMur3Gu8.js.hlijAl" failed: Permission denied (13)
dist/assets/index-DKGYW3iW.cssrsync: [receiver] mkstemp "/home/tailadmin/tailadmin.dev/public_html/dist/assets/.index-DKGYW3iW.css.gJ1wkr" failed: Permission denied (13)dist/assets/laraQuality_banner-4lDDj__f.jpg
dist/assets/tailadmin_v1-BLv6BnfH.jpg
rsync: [receiver] mkstemp "/home/tailadmin/tailadmin.dev/public_html/dist/assets/.laraQuality_banner-4lDDj__f.jpg.99i9jC" failed: Permission denied (13)
rsync: [receiver] mkstemp "/home/tailadmin/tailadmin.dev/public_html/dist/assets/.tailadmin_v1-BLv6BnfH.jpg.6C652H" failed: Permission denied (13)
dist/assets/tailadmin_v2-P0O43sFL.jpg
rsync: [receiver] mkstemp "/home/tailadmin/tailadmin.dev/public_html/dist/assets/.tailadmin_v2-P0O43sFL.jpg.Bbrxxu" failed: Permission denied (13)
public/
src/
src/assets/
src/components/
src/router/
src/views/
src/views/mobile_app/

1786296149044.png

1786296456135.png
 
Last edited:
We will conduct the necessary tests on our side and provide you with an update in the coming days.

Thank you for your valuable feedback. These reports are important to us as we continue working toward making Panelica more stable, reliable, and robust.
 
The rsync "Operation not permitted / Permission denied" on dist/assets came from those files being owned by root, not your account: running `npm run build` from an SSH session as root created root-owned files in the deploy target, so the deploy (which runs as your account) could no longer overwrite them. Rebuilding as your own account, or resetting ownership of the target back to your user, resolves it. Alongside this we hardened the deploy so it preserves your .env and other app-owned files across --delete. If you still see permission errors after fixing ownership, reply here and we'll dig in.
 
Back
Top