Hi @chrisrdba ,
SQL server replication works well now? Expired subscription clean up job still failed now?
Please using below T-SQL to check the Data Access Setting.
SELECT
name,
is_data_access_enabled
FROM sys.servers;
If the value for repl_distributor is 0, please run below T-SQL;
EXEC sp_serveroption
@server = 'repl_distributor',
@optname = 'DATA ACCESS',
@optvalue = 'TRUE';
Then check the Data Access Setting again.
If the response is helpful, please click "Accept Answer" and upvote it, as this could help other community members looking for similar queries.