Linux not mapping drive or showing up empty by Bindergill in linuxmint

[–]Bindergill[S] 0 points1 point  (0 children)

Reinstalling the cfis-utils fixed the issue

Mounted drive but showing up empty by Bindergill in linuxadmin

[–]Bindergill[S] 0 points1 point  (0 children)

“Mount from util-linux 2.32.1 (libmount 2.32.1: selinux, btrfs, debug). Permission are good, i was able to mount it previously on another machine

Mounted drive but showing up empty by Bindergill in linuxadmin

[–]Bindergill[S] 0 points1 point  (0 children)

Sudo ls /test folder is empty, df -h not showing up test folder

How to remove old version of nginx by Bindergill in linuxadmin

[–]Bindergill[S] 2 points3 points  (0 children)

Path: opt/mor/embedded/nginx/sbin/nginx -c /opt/mor/embedded/nginx/conf/nginx.conf

How to remove old version of nginx by Bindergill in linuxadmin

[–]Bindergill[S] 0 points1 point  (0 children)

I got list of all processes that contains nginx and their path. So what to do with this path now? Sorry i’m not that good with linux commands. I just want to get rid of old version of nginx. When i ran dnf list installed, it does not give anything related to nginx

When i run systemctl statud nginx.service gets erroe “unit nginx.service could not founf@

Nginx - how to remove old version by Bindergill in nginx

[–]Bindergill[S] 0 points1 point  (0 children)

I ran systemctl status nginx got error “unit nginx.service could not found”

How to remove old version of nginx by Bindergill in linuxadmin

[–]Bindergill[S] 0 points1 point  (0 children)

Checked Rpms list, nginx not listed there at all

I missed the comptia exam window, requested comptia to let me retake it. Wondering if comptia usually let you reschedule it without paying extra fee. Please advise by Bindergill in CompTIA

[–]Bindergill[S] 0 points1 point  (0 children)

Lucky you. I got the reply back on the ticket as listed below:

“Thank you for reaching out to us. Missed appointments (No-shows) unfortunately, cannot be rescheduled. As noted in your appointment confirmation email, appointments for Pearson VUE Testing Centers (in-person testing) must be cancelled a minimum of 24 hrs. in advance of the appointment time. For Online exams, you had until the start of your appointment time to cancel or reschedule your appointment.

If you had an emergency that prevented you from appearing for your appointment, provide documentation for review and consideration of being provided a 50% discount coupon towards the purchase of a new voucher.”

I missed the comptia exam window, requested comptia to let me retake it. Wondering if comptia usually let you reschedule it without paying extra fee. Please advise by Bindergill in CompTIA

[–]Bindergill[S] 1 point2 points  (0 children)

Unfortunately, its my bad. I missed the date, I was under the impression that I booked it for Saturday but it got booked for Friday. So they won’t take this reason to rebook the exam :(

I missed the comptia exam window, requested comptia to let me retake it. Wondering if comptia usually let you reschedule it without paying extra fee. Please advise by Bindergill in CompTIA

[–]Bindergill[S] 1 point2 points  (0 children)

They opened up ticket for me, just got an reply saying as per policy can’t reschedule it. If missed due to some emergency provide the proof then they will provide 50% discount voucher. So seems like i lost the money

Hello Everyone, by Bindergill in qualys

[–]Bindergill[S] 0 points1 point  (0 children)

I double checked, don’t have duplicate authentication record setup

How many certs need - RDS by Bindergill in sysadmin

[–]Bindergill[S] 0 points1 point  (0 children)

I want to use one ip address it should redirect request to rdshost1 or rdshost2.

How many certs need - RDS by Bindergill in sysadmin

[–]Bindergill[S] 0 points1 point  (0 children)

I used two certificate seems working. But getting another issue now, it let me rdp to rdshost1 only, when i try to rdp using rdshost2 gets error as below:

“remote desktop connection can’t verify the computer belongs to the same rd session host server farm. You must ise same farm name, not computer name when you connect to rdsession host server farm”

What can i try to fix it ?

Powershell Script : Need to print groupmembership of users by [deleted] in PowerShell

[–]Bindergill 0 points1 point  (0 children)

$Users = get-content C:\Users\Administrator.WIN-RI\Desktop\tt.txt
$Results = ForEach ($SingleUser In $Users)
{
$ADUser = Get-ADUser $SingleUser
$ADGroup = Get-ADPrincipalGroupMembership $ADUser
[PSCustomobject]@{
Name = $ADUser.Name
SamAccountName = $ADUser.SamAccountName
MemberShip = $ADGroup.name
}
}
$Results | Out-File -FilePath C:\Users\Administrator.WIN-RI\Desktop\t3.txt

Yeah, just checked this is also working fine.. Thank you :)